-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
43 changed files
with
444 additions
and
828 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,73 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'rails', '3.2.13' | ||
|
||
# Bundle edge Rails instead: | ||
# gem 'rails', :git => 'git://github.com/rails/rails.git' | ||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
gem 'rails', '4.0.0.rc2' | ||
|
||
# Use sqlite3 as the database for Active Record | ||
gem 'sqlite3' | ||
|
||
# Use SCSS for stylesheets | ||
gem 'sass-rails', '~> 4.0.0.rc2' | ||
|
||
# Gems used only for assets and not required | ||
# in production environments by default. | ||
group :assets do | ||
gem 'sass-rails', '~> 3.2.3' | ||
gem 'coffee-rails', '~> 3.2.1' | ||
# Use Uglifier as compressor for JavaScript assets | ||
gem 'uglifier', '>= 1.3.0' | ||
|
||
# See https://github.com/sstephenson/execjs#readme for more supported runtimes | ||
gem 'therubyracer', :platforms => :ruby | ||
# Use CoffeeScript for .js.coffee assets and views | ||
gem 'coffee-rails', '~> 4.0.0' | ||
|
||
gem 'uglifier', '>= 1.0.3' | ||
end | ||
# See https://github.com/sstephenson/execjs#readme for more supported runtimes | ||
gem 'therubyracer', :platforms => :ruby | ||
|
||
# Use Uglifier as compressor for JavaScript assets | ||
gem 'uglifier', '>= 1.3.0' | ||
|
||
# Use Modernizr for better browser compability | ||
gem 'modernizr-rails' | ||
|
||
# Use jquery as the JavaScript library | ||
gem 'jquery-rails' | ||
|
||
# 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', '~> 1.2' | ||
|
||
group :doc do | ||
# bundle exec rake doc:rails generates the API under doc/api. | ||
gem 'sdoc', require: false | ||
end | ||
|
||
group :test do | ||
# Easier test writing | ||
gem "shoulda-matchers" | ||
|
||
# Test coverage | ||
gem 'simplecov', :require => false | ||
end | ||
|
||
group :development, :test do | ||
# Test framework | ||
gem 'rspec-rails' | ||
|
||
# Fixtures made easy | ||
gem 'factory_girl_rails' | ||
end | ||
|
||
group :cucumber do | ||
gem 'cucumber-rails' | ||
# Acceptance tests | ||
group :cucumber do | ||
gem 'cucumber-rails' | ||
gem 'database_cleaner' | ||
end | ||
|
||
# To use ActiveModel has_secure_password | ||
# Use ActiveModel has_secure_password | ||
# gem 'bcrypt-ruby', '~> 3.0.0' | ||
|
||
# To use Jbuilder templates for JSON | ||
# gem 'jbuilder' | ||
|
||
# Use unicorn as the app server | ||
# gem 'unicorn' | ||
|
||
# Deploy with Capistrano | ||
# gem 'capistrano' | ||
# Use Capistrano for deployment | ||
# gem 'capistrano', group: :development | ||
|
||
# To use debugger | ||
# gem 'debugger' | ||
# Use debugger | ||
# gem 'debugger', group: [:development, :test] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.