-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
62 lines (56 loc) · 1.2 KB
/
Copy pathGemfile
File metadata and controls
62 lines (56 loc) · 1.2 KB
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
source 'https://rubygems.org'
ruby '2.2.1'
gem 'rails', '4.2.5'
gem 'devise'
gem 'devise-bootstrap-views'
gem 'draper', '~> 1.3'
gem 'nokogiri'
gem 'elasticsearch-model'
gem 'elasticsearch-rails'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.0'
gem 'bootstrap-sass'
gem 'high_voltage'
gem 'mysql2', '~> 0.3.18'
gem 'thin'
group :development do
gem 'web-console', '~> 2.0'
gem 'annotate'
gem 'capistrano-rails'
gem 'capistrano-bundler'
gem 'capistrano-resque', '~> 0.2.2', require: false
gem 'hirb'
gem 'pry-rails'
gem 'rails-erd'
gem 'rubycritic', require: false
gem 'slackistrano', '~> 0.1.5', require: false
gem 'spring'
gem 'bullet'
end
group :development do
gem 'better_errors'
gem 'hub', :require=>nil
gem 'quiet_assets'
gem 'rails_layout'
end
group :development, :test do
gem 'rspec-rails'
gem 'byebug'
gem 'pry'
gem 'spring-commands-rspec'
end
group :production do
gem 'rails_12factor'
end
group :test do
gem 'codeclimate-test-reporter'
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'faker'
gem 'resque_spec'
gem 'shoulda-matchers', '2.8.0'
gem 'simplecov', require: false
end