-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathGemfile
61 lines (55 loc) · 1.07 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
ruby '2.2.0'
source 'https://rubygems.org'
source 'https://rails-assets.org'
gem 'rails', '4.2.0'
gem 'puma'
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder'
gem 'haml-rails'
gem 'bootstrap-sass'
gem 'therubyracer'
gem 'omniauth'
gem 'omniauth-twitter'
gem 'newrelic_rpm'
gem 'paranoia'
gem 'pronto-rubocop'
gem 'pronto-brakeman'
gem 'pronto-rails_best_practices'
gem 'pronto-reek'
gem 'pronto-flay'
gem 'rails_autolink'
gem 'settingslogic'
group :development, :test do
gem 'sqlite3'
gem 'dotenv-rails'
gem 'pry-rails'
gem 'pry-remote'
gem 'pry-byebug'
gem "binding_of_caller"
gem 'meta_request'
gem 'rspec-rails'
gem 'rspec'
gem 'factory_girl_rails'
gem 'awesome_print'
end
group :development do
gem 'quiet_assets'
gem 'spring'
gem 'guard-rspec', '>= 4.2.9', require: false
end
group :test do
gem 'shoulda-matchers'
gem 'capybara'
gem 'poltergeist'
gem 'database_rewinder'
gem 'launchy'
gem 'codeclimate-test-reporter', require: nil
end
group :production do
gem 'pg'
gem 'rails_12factor'
end