forked from ruby-bench/ruby-bench-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
53 lines (47 loc) · 1.13 KB
/
Copy pathGemfile
File metadata and controls
53 lines (47 loc) · 1.13 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
source 'https://rubygems.org'
source 'https://rails-assets.org' do
gem 'rails-assets-highcharts', '~> 4.0.4'
end
gem 'rails', '4.2.1'
gem 'pg'
gem 'sass-rails', '~> 5.0.1'
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails'
gem 'net-ssh', '~> 2.9.1'
gem 'platform-api', '~> 0.2.0'
gem 'haml', '~> 4.0.5'
gem 'bootstrap-sass', '~> 3.3.3'
gem 'autoprefixer-rails', '~> 5.1.11'
gem 'pygments.rb', '~> 0.6.0'
gem 'redis', '~> 3.2.1'
gem 'redis-rails', '~> 4.0.0'
gem 'sidekiq', '~> 3.3.3'
group :development do
gem 'spring'
gem 'better_errors'
gem 'binding_of_caller'
gem 'bullet', '~> 4.14.0'
end
group :development, :test do
gem 'byebug'
end
group :test do
gem 'mocha', '~> 1.1.0'
gem 'vcr', '~> 2.9.3'
gem 'webmock', '~> 1.20.4'
gem 'capybara', '~> 2.4.4'
gem 'capybara-webkit', '~> 1.3.1'
gem 'launchy', '~> 2.4.3'
gem 'selenium-webdriver', '~> 2.45.0'
gem 'minitest-stub-const', '~> 0.3'
end
group :production, :development do
gem 'unicorn', '~> 4.8.3'
gem 'rack-mini-profiler', '~> 0.9.3'
end
group :production do
gem 'rails_12factor'
gem 'newrelic_rpm'
gem 'bugsnag', '~> 2.8.4'
gem 'logster', '~> 0.8.0'
end