forked from shakacode/react-webpack-rails-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
99 lines (75 loc) · 2.43 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
source "https://rubygems.org"
ruby "2.2.2"
#
# Bundle edge Rails instead: gem "rails", github: "rails/rails"
gem "rails", "~>4.2"
# Use sqlite3 as the database for Active Record
gem "sqlite3", group: :development
gem "pg", group: :production
# Use SCSS for stylesheets
gem "sass-rails"
gem "bootstrap-sass", "~> 3.3.1"
# Use Uglifier as compressor for JavaScript assets
gem "uglifier", "~> 2.7.2"
# Use CoffeeScript for .js.coffee assets and views
gem "coffee-rails"
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem "therubyracer", platforms: :ruby
# jquery as the JavaScript library has been moved under /client and managed by npm.
# It is critical to not include any of the jquery gems when following this pattern or
# else you might have multiple jQuery versions.
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem "turbolinks"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder"
# bundle exec rake doc:rails generates the API under doc/api.
gem "sdoc", group: :doc
gem "es5-shim-rails"
# Use ActiveModel has_secure_password
# gem "bcrypt", "~> 3.1.7"
# Use Rails Html Sanitizer for HTML sanitization
gem "rails-html-sanitizer"
# Use Unicorn as the app server
gem "unicorn"
gem "react_on_rails", "~> 1.0.0.pre"
gem "therubyracer"
gem "autoprefixer-rails"
gem "awesome_print"
# Use Capistrano for deployment
# gem "capistrano-rails", group: :development
group :production do
gem "rails_12factor"
end
group :development, :test do
# Access an IRB console on exceptions page and /console in development
gem "web-console"
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem "spring"
gem "spring-commands-rspec"
# Manage application processes
gem "foreman"
gem "factory_girl_rails"
gem "rubocop", require: false
gem "ruby-lint", require: false
gem "scss_lint", require: false
gem "brakeman", require: false
gem "bundler-audit", require: false
gem "rainbow"
# Favorite debugging gems
gem "pry"
gem "pry-doc"
gem "pry-rails"
gem "pry-stack_explorer"
gem "pry-rescue"
gem "pry-byebug"
end
group :test do
gem "coveralls", require: false
gem "rspec-rails"
gem "capybara"
gem "capybara-screenshot"
gem "selenium-webdriver"
gem "chromedriver-helper"
gem "database_cleaner"
gem "launchy"
end