forked from activeadmin/activeadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
58 lines (47 loc) · 1.69 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
source 'https://rubygems.org'
# Trick to use https without warnings and without having to specify full URLs
# TODO: Can be removed when Bundler 2.x is released.
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
# Optional dependencies
gem 'cancan'
gem 'pundit'
# Utility gems used in both development & test environments
gem 'rake'
gem 'parallel_tests'
# Debugging
gem 'pry' # Easily debug from your console with `binding.pry`
# Code style
gem 'rubocop', '0.49.1'
# Translations
gem 'i18n-tasks'
group :development do
# Debugging
gem 'better_errors' # Web UI to debug exceptions. Go to /__better_errors to access the latest one
gem 'binding_of_caller', platforms: :mri # Retrieve the binding of a method's caller
# Performance
gem 'rack-mini-profiler' # Inline app profiler. See ?pp=help for options.
# 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 'codecov', require: false # Test coverage website. Go to https://codecov.io
gem 'cucumber-rails', github: 'cucumber/cucumber-rails', require: false
gem 'cucumber'
gem 'database_cleaner'
gem 'jasmine'
gem 'jslint_on_rails'
gem 'launchy'
gem 'rails-i18n' # Provides default i18n for many languages
gem 'rspec-rails'
gem 'i18n-spec'
gem 'shoulda-matchers', '<= 2.8.0'
gem 'sqlite3', platforms: :mri
gem 'poltergeist'
end