|
| 1 | +source 'https://rubygems.org' |
| 2 | + |
| 3 | + |
| 4 | +# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' |
| 5 | +gem 'rails', '4.1.1' |
| 6 | +# Use sqlite3 as the database for Active Record |
| 7 | +gem 'sqlite3' |
| 8 | +# Use SCSS for stylesheets |
| 9 | +gem 'sass-rails', '~> 4.0.3' |
| 10 | +# Use Uglifier as compressor for JavaScript assets |
| 11 | +gem 'uglifier', '>= 1.3.0' |
| 12 | +# Use CoffeeScript for .js.coffee assets and views |
| 13 | +gem 'coffee-rails', '~> 4.0.0' |
| 14 | +# See https://github.com/sstephenson/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 | +# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring |
| 27 | +gem 'spring', group: :development |
| 28 | + |
| 29 | +# Use ActiveModel has_secure_password |
| 30 | +# gem 'bcrypt', '~> 3.1.7' |
| 31 | + |
| 32 | +# Use unicorn as the app server |
| 33 | +# gem 'unicorn' |
| 34 | + |
| 35 | +# Use Capistrano for deployment |
| 36 | +# gem 'capistrano-rails', group: :development |
| 37 | + |
| 38 | +# Use debugger |
| 39 | +# gem 'debugger', group: [:development, :test] |
| 40 | + |
| 41 | +group :development do |
| 42 | + if(ENV['AUTOMATED_TEST'] && ENV['AUTOMATED_TEST'] != '') |
| 43 | + gem 'annotate', :path => ENV['AUTOMATED_TEST'] |
| 44 | + else |
| 45 | + gem 'annotate', :path => '../../..' |
| 46 | + end |
| 47 | +end |
| 48 | + |
0 commit comments