forked from railsadminteam/rails_admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
50 lines (42 loc) · 1.19 KB
/
Gemfile
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
42
43
44
45
46
47
48
49
50
source 'https://rubygems.org'
gem 'appraisal', '>= 2.0'
gem 'rails'
gem 'haml'
gem 'devise'
group :active_record do
gem 'paper_trail'
platforms :ruby, :mswin, :mingw, :x64_mingw do
gem 'mysql2', '>= 0.3.14'
gem 'sqlite3', '>= 1.3'
end
end
group :development, :test do
gem 'pry', '>= 0.9'
end
group :test do
gem 'cancancan', '~> 3.0'
gem 'carrierwave', ['>= 2.0.0.rc', '< 3']
gem 'database_cleaner', ['>= 1.2', '!= 1.4.0', '!= 1.5.0', '< 2.0']
gem 'dragonfly', '~> 1.0'
gem 'factory_bot', '>= 4.2'
gem 'generator_spec', '>= 0.8'
gem 'launchy', '>= 2.2'
gem 'mini_magick', '>= 3.4'
gem 'poltergeist', '~> 1.5'
gem 'pundit'
gem 'rack-cache', require: 'rack/cache'
gem 'rspec-rails', '>= 2.14'
gem 'rspec-expectations', '!= 3.8.3'
gem 'rspec-retry'
gem 'rubocop', '~> 0.68.1', require: false
gem 'rubocop-performance', require: false
gem 'simplecov', '>= 0.9', require: false
gem 'simplecov-lcov', require: false
gem 'timecop', '>= 0.5'
platforms :ruby_19 do
gem 'tins', '~> 1.6.0', require: false
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i(mingw mswin x64_mingw jruby)
end
gemspec