|
1 | | -source 'https://rubygems.org' |
2 | | - |
3 | | - |
4 | | -# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' |
5 | | -gem 'rails', '4.2.4' |
6 | | -# Use postgresql as the database for Active Record |
7 | | -gem 'pg' |
8 | | -# Use SCSS for stylesheets |
9 | | -gem 'sass-rails', '~> 5.0' |
10 | | -# Use Uglifier as compressor for JavaScript assets |
11 | | -gem 'uglifier', '>= 1.3.0' |
12 | | -# Use CoffeeScript for .coffee assets and views |
13 | | -gem 'coffee-rails', '~> 4.1.0' |
14 | | -# See https://github.com/rails/execjs#readme for more supported runtimes |
15 | | -# gem 'therubyracer', platforms: :ruby |
16 | | - |
17 | | -# Use jquery as the JavaScript library |
18 | | -gem 'jquery-rails' |
19 | | -# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks |
20 | | -gem 'turbolinks' |
21 | | -# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder |
22 | | -gem 'jbuilder', '~> 2.0' |
23 | | -# bundle exec rake doc:rails generates the API under doc/api. |
24 | | -gem 'sdoc', '~> 0.4.0', group: :doc |
25 | | - |
26 | | -# Use ActiveModel has_secure_password |
27 | | -# gem 'bcrypt', '~> 3.1.7' |
28 | | - |
29 | | -# Use Unicorn as the app server |
30 | | -# gem 'unicorn' |
31 | | - |
32 | | -# Use Capistrano for deployment |
33 | | -# gem 'capistrano-rails', group: :development |
34 | | - |
35 | | -gem 'bootstrap-sass', '~> 3.3.5' |
36 | | - |
37 | | -gem 'bootswatch-rails' |
38 | | - |
39 | | -gem 'nokogiri' |
40 | | - |
41 | | -gem 'whenever', require: false |
| 1 | +source "https://rubygems.org" |
| 2 | + |
| 3 | + |
| 4 | +gem "rails", "4.2.4" |
| 5 | +gem "pg" |
| 6 | +gem "sass-rails", "~> 5.0" |
| 7 | +gem "uglifier", ">= 1.3.0" |
| 8 | +gem "coffee-rails", "~> 4.1.0" |
| 9 | +gem "jquery-rails" |
| 10 | +gem "jbuilder", "~> 2.0" |
| 11 | +gem "sdoc", "~> 0.4.0", group: :doc |
| 12 | +gem "bootstrap-sass", "~> 3.3.5" |
| 13 | +gem "bootswatch-rails" |
| 14 | +gem "nokogiri" |
| 15 | +gem "whenever", require: false |
42 | 16 |
|
43 | 17 | group :development, :test do |
44 | | - # Call 'byebug' anywhere in the code to stop execution and get a debugger console |
45 | | - gem 'byebug' |
46 | | - gem 'rspec-rails' |
47 | | - gem 'database_cleaner' |
48 | | - gem 'capybara' |
49 | | - gem 'launchy' |
50 | | - gem 'pry', :require => 'pry' |
51 | | - gem 'shoulda-matchers' |
| 18 | + gem "byebug" |
| 19 | + gem "rspec-rails" |
| 20 | + gem "database_cleaner" |
| 21 | + gem "capybara" |
| 22 | + gem "launchy" |
| 23 | + gem "pry", :require => "pry" |
| 24 | + gem "shoulda-matchers" |
52 | 25 | end |
53 | 26 |
|
54 | 27 | group :development do |
55 | | - # Access an IRB console on exception pages or by using <%= console %> in views |
56 | | - gem 'web-console', '~> 2.0' |
57 | | - |
58 | | - # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring |
59 | | - gem 'spring' |
| 28 | + gem "web-console", "~> 2.0" |
| 29 | + gem "spring" |
60 | 30 | end |
61 | 31 |
|
0 commit comments