-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
41 lines (33 loc) · 766 Bytes
/
Gemfile
File metadata and controls
41 lines (33 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Specify your gem's dependencies in atomic_tenant.gemspec.
gemspec
gem 'sqlite3'
gem 'sprockets-rails'
# Start debugger with binding.b [https://github.com/ruby/debug]
# gem "debug", ">= 1.0.0"
group :development, :test, :linter do
gem "byebug"
gem "factory_bot_rails"
gem "ims-lti"
gem "rubocop"
gem "rubocop-performance"
gem "rubocop-rails"
gem "rubocop-rspec"
gem "webmock"
end
group :test do
gem "launchy"
gem "rspec"
gem "rspec-rails", "~>8.0"
gem "jwt", "~>2.7.0"
gem "json-jwt"
gem "httparty"
gem "database_cleaner"
gem "atomic_lti"
end
group :ci do
gem "brakeman"
gem "pronto"
gem "pronto-rubocop", require: false
end