forked from activeadmin/activeadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
87 lines (69 loc) · 3.18 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
source 'https://rubygems.org'
gemspec
require File.expand_path 'spec/support/detect_rails_version', File.dirname(__FILE__)
rails_version = detect_rails_version
rails_major = rails_version[0]
gem 'rails', rails_version
gem 'jquery-ui-rails', rails_major == '3' ? '~> 4.0' : '~> 5.0'
gem 'test-unit', '~> 3.0' if rails_major == '3'
if rails_major == '5'
# Note: when updating this list, be sure to also update the README
gem 'sass-rails', github: 'rails/sass-rails'
gem 'inherited_resources', github: 'activeadmin/inherited_resources'
gem 'ransack', github: 'activerecord-hackery/ransack'
end
platform :ruby_19 do # Remove this block when we drop support for Ruby 1.9
gem 'kaminari', '~> 0.15'
gem 'mime-types', '< 3'
gem 'nokogiri', '< 1.7'
gem 'public_suffix', '< 1.5'
end
# Optional dependencies
gem 'cancan'
gem 'devise', rails_major == '5' ? '> 4.x' : '~> 3.5'
gem 'draper', rails_major == '5' ? '> 3.x' : '~> 2.1'
gem 'pundit'
# Utility gems used in both development & test environments
gem 'rake', require: false
gem 'parallel_tests', '< 2.10' #2.10 requires ruby '>= 2.0.0'
# Debugging
gem 'pry' # Easily debug from your console with `binding.pry`
group :development do
# Debugging
gem 'better_errors', # Web UI to debug exceptions. Go to /__better_errors to access the latest one
platforms: [:ruby_20, :ruby_21, :ruby_22, :ruby_23]
gem 'binding_of_caller', platforms: :mri # Retrieve the binding of a method's caller in MRI Ruby >= 1.9.2
# Performance
gem 'rack-mini-profiler' # Inline app profiler. See ?pp=help for options.
gem 'flamegraph', platforms: :mri # Flamegraph visualiztion: ?pp=flamegraph
# Flamegraph dependency
gem 'stackprof', platforms: [:mri_21, :mri_22, :mri_23], require: false
gem 'fast_track', platforms: [:mri_19, :mri_20], require: false
# Documentation
gem 'yard' # Documentation generator
gem 'redcarpet', platforms: :mri # Markdown implementation (for yard)
gem 'kramdown', platforms: :jruby # Markdown implementation (for yard)
end
group :test do
gem 'capybara'
gem 'simplecov', require: false # Test coverage generator. Go to /coverage/ after running tests
gem 'json', '~> 1.8', require: false # Required by simplecov, > 2 removes support for Ruby 1.9
gem 'codecov', require: false # Test coverage website. Go to https://codecov.io
gem 'tins', '~> 1.6.0', require: false # Required by coveralls, > 1.6.0 removes support for Ruby 1.9
gem 'cucumber-rails', require: false
gem 'cucumber', '1.3.20'
gem 'database_cleaner'
gem 'guard-rspec', require: false
gem 'listen', '~> 2.7', platforms: [:ruby_19, :jruby]
gem 'jasmine'
gem 'phantomjs', '1.9.8.0' # Same version as Travis CI's pre-installed version
gem 'jslint_on_rails'
gem 'launchy'
gem 'rails-i18n' # Provides default i18n for many languages
gem 'rspec-rails', '>= 3.5.0.beta1'
gem 'i18n-spec'
gem 'shoulda-matchers', '<= 2.8.0'
gem 'sqlite3', platforms: :mri
gem 'activerecord-jdbcsqlite3-adapter', platforms: :jruby
gem 'poltergeist'
end