forked from YACS-RCOS/yacs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
62 lines (46 loc) · 1.12 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
source 'https://rubygems.org'
ruby '2.2.3'
gem 'puma', '2.16.0'
gem 'rails', '4.2.5.1'
gem 'pg'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'handlebars_assets'
gem 'sprockets-rails', :require => 'sprockets/railtie'
gem 'actionpack-page_caching'
gem 'actionpack-action_caching'
gem 'rails-observers'
gem 'dalli'
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
gem 'responders', '~> 2.0'
gem 'crono'
gem 'newrelic_rpm'
gem 'coveralls'
gem 'redis'
group :development, :test do
gem 'pry'
gem 'pry-remote'
gem 'pry-stack_explorer'
gem 'pry-byebug', '~> 1.3.3'
gem 'railroady'
end
group :test do
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'pickle'
# gem 'webrat'
gem 'database_cleaner'
gem "capybara"
gem "cucumber-rails", require: false
gem "poltergeist"
gem "selenium-webdriver"
end
group :development do
gem 'web-console', '~> 2.0'
gem 'spring'
end