forked from shakacode/react_on_rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
43 lines (40 loc) · 1.23 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
source "https://rubygems.org"
# Specify your gem"s dependencies in react_on_rails.gemspec
gemspec
# The following gems are dependencies of the gem's dummy/example apps, not the gem itself.
# They must be defined here because of the way Travis CI works, in that it will only
# bundle install from a single Gemfile. Therefore, all gems that we will need for any dummy/example
# app have to be manually added to this file.
gem "bootstrap-sass"
gem "coffee-rails", "~> 4.1.0"
gem "jbuilder", "~> 2.0"
gem "jquery-rails"
gem "puma"
gem "rails", "4.2.8"
gem "rails_12factor"
gem "rubocop", "0.47.1", require: false
gem "ruby-lint", require: false
gem "sass-rails", "~> 5.0"
gem "scss_lint", require: false
gem "sdoc", "~> 0.4.0", group: :doc
gem "spring"
gem "sqlite3"
gem "mini_racer"
if ENV["ENABLE_TURBOLINKS_2"].nil? || ENV["ENABLE_TURBOLINKS_2"].strip.empty?
gem "turbolinks", "~> 5.0"
else
gem "turbolinks", "2.5.3"
end
gem "uglifier", ">= 2.7.2"
gem "web-console", "~> 2.0", group: :development
# below are copied from spec/dummy/Gemfile
gem "rspec-rails"
gem "rspec-retry"
gem "capybara"
gem "capybara-screenshot"
# Trouble installing on Sierra
# gem "capybara-webkit"
gem "chromedriver-helper"
gem "launchy"
gem "poltergeist"
gem "selenium-webdriver"