forked from refactorcop/refactorcop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
76 lines (66 loc) · 1.49 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
source 'https://rubygems.org'
gem 'rails', '~> 4.2.4'
gem 'pg'
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'rake'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'activeadmin', github: 'activeadmin'
gem 'annotate', '~> 2.6.2' # Auto comments with fields of models
gem 'coderay'
gem 'envied'
gem 'faraday'
gem 'github_api'
gem 'httpclient'
gem 'kaminari'
gem 'newrelic_rpm'
gem 'nokogiri'
gem 'nprogress-rails'
gem 'procto'
gem 'rack-attack'
gem 'rollbar', '~> 1.1.0'
gem 'rubocop'
gem 'rubyzip', '>= 1.0.0'
gem 'sidekiq'
gem 'sidetiq'
gem 'sinatra', '>= 1.3.3', require: nil # Required for sidekiq-webinterface
gem 'unicorn'
gem 'virtus'
gem 'foreman'
group :production do
# Needed for heroku
# https://github.com/heroku/rails_12factor
gem 'rails_12factor'
end
group :test, :development do
gem 'capybara'
gem 'database_cleaner'
gem 'factory_girl_rails', '>= 4.1'
gem 'ffaker'
gem 'poltergeist'
gem 'rspec-rails'
gem 'shoulda-matchers'
gem 'timecop'
gem 'vcr'
# Metrics
gem 'brakeman', '>= 2.6.0'
gem 'flog'
gem 'rails_best_practices'
end
group :test do
gem 'webmock'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'quiet_assets' # Suppress asset pipeline calls in logs
gem 'spring'
gem 'thin'
gem 'yard', github: 'lsegal/yard'
end