2012-11-27 11:59:58 -05:00
|
|
|
source 'https://rubygems.org'
|
2012-01-19 12:42:05 -05:00
|
|
|
|
2011-09-12 10:30:45 -04:00
|
|
|
|
2014-01-13 17:10:22 -05:00
|
|
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
|
|
|
gem 'rails', '4.1.0'
|
2014-05-17 02:24:13 -04:00
|
|
|
# Use SQLite3 as the database for Active Record
|
2011-09-12 10:30:45 -04:00
|
|
|
gem 'sqlite3'
|
2013-03-28 18:07:18 -04:00
|
|
|
# Use SCSS for stylesheets
|
2014-01-13 17:10:22 -05:00
|
|
|
gem 'sass-rails', '~> 4.0.1'
|
|
|
|
# Use Uglifier as compressor for JavaScript assets
|
|
|
|
gem 'uglifier', '>= 1.3.0'
|
2013-03-28 18:07:18 -04:00
|
|
|
# Use CoffeeScript for .js.coffee assets and views
|
2014-01-13 17:10:22 -05:00
|
|
|
gem 'coffee-rails', '~> 4.0.0'
|
2013-03-28 18:07:18 -04:00
|
|
|
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
2014-01-13 17:10:22 -05:00
|
|
|
# gem 'therubyracer', platforms: :ruby
|
2011-09-12 10:30:45 -04:00
|
|
|
|
2014-05-17 02:24:13 -04:00
|
|
|
# Use jQuery as the JavaScript library
|
2011-09-12 10:30:45 -04:00
|
|
|
gem 'jquery-rails'
|
2013-01-22 00:12:29 -05:00
|
|
|
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
|
|
|
|
gem 'turbolinks'
|
2014-01-13 17:10:22 -05:00
|
|
|
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
|
|
|
gem 'jbuilder', '~> 2.0'
|
2014-01-11 19:12:12 -05:00
|
|
|
# bundle exec rake doc:rails generates the API under doc/api.
|
|
|
|
gem 'sdoc', '~> 0.4.0', group: :doc
|
2013-03-29 19:05:30 -04:00
|
|
|
|
2014-01-19 04:51:23 -05:00
|
|
|
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
2014-01-13 17:10:22 -05:00
|
|
|
gem 'spring', group: :development
|
2013-01-22 00:12:29 -05:00
|
|
|
|
2014-01-13 17:10:22 -05:00
|
|
|
# Use ActiveModel has_secure_password
|
2014-02-21 15:58:09 -05:00
|
|
|
# gem 'bcrypt', '~> 3.1.7'
|
2012-01-19 12:42:05 -05:00
|
|
|
|
2014-05-17 02:24:13 -04:00
|
|
|
# Use Unicorn as the app server
|
2011-09-12 10:30:45 -04:00
|
|
|
# gem 'unicorn'
|
|
|
|
|
2014-01-13 17:10:22 -05:00
|
|
|
# Use Capistrano for deployment
|
|
|
|
# gem 'capistrano-rails', group: :development
|
|
|
|
|
|
|
|
# Use debugger
|
|
|
|
# gem 'debugger', group: [:development, :test]
|
2011-09-12 10:30:45 -04:00
|
|
|
|