forked from activeadmin/activeadmin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
50 lines (41 loc) · 1.5 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'
gemspec
require File.expand_path 'spec/support/detect_rails_version', File.dirname(__FILE__)
rails_version = detect_rails_version
gem 'rails', rails_version
# Optional dependencies
gem 'cancan'
gem 'devise'
gem 'draper'
gem 'pundit'
# Utility gems used in both development & test environments
gem 'rake', require: false
gem 'parallel_tests'
group :development do
# Debugging
gem 'pry' # Easily debug from your console with `binding.pry`
gem 'better_errors' # Web UI to debug exceptions. Go to /__better_errors to access the latest one
gem 'binding_of_caller' # 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' # Flamegraph visualiztion: ?pp=flamegraph
# Documentation
gem 'yard', github: 'lsegal/yard' # Documentation generator (until lsegal/yard#765 is in a release)
gem 'redcarpet' # Markdown implementation (for yard)
end
group :test do
gem 'capybara'
gem 'simplecov', require: false # Test coverage generator. Go to /coverage/ after running tests
gem 'coveralls', require: false # Test coverage website. Go to https://coveralls.io
gem 'cucumber-rails', require: false
gem 'database_cleaner'
gem 'guard-rspec'
gem 'jasmine'
gem 'jslint_on_rails'
gem 'launchy'
gem 'rails-i18n' # Provides default i18n for many languages
gem 'rspec'
gem 'rspec-rails'
gem 'shoulda-matchers'
gem 'sqlite3'
end