Last active
October 10, 2015 03:27
-
-
Save kreas/3625443 to your computer and use it in GitHub Desktop.
Starter Gemfile - Mongoid
This file contains hidden or 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
source 'https://rubygems.org' | |
gem 'rails', '3.2.9' | |
gem 'sass-rails-bootstrap' | |
gem 'haml-rails' | |
gem 'jquery-rails' | |
gem 'RedCloth' | |
gem 'kaminari' | |
gem 'devise' | |
gem 'resque' | |
gem 'unicorn' | |
# Mongoid Base | |
gem 'bson_ext' | |
gem 'mongoid' | |
gem "remarkable_mongoid", :group => :test | |
# Mongoid backup on heroku | |
# gem 's3' | |
# gem 'heroku-mongo-backup' | |
# gem 'sqlite3' | |
group :test, :development do | |
gem "rspec" | |
gem "rspec-rails" | |
end | |
group :test do | |
gem 'guard-rspec' | |
gem 'spork' | |
gem "guard-spork" | |
gem 'growl' | |
gem 'capybara' | |
gem 'timecop' | |
gem 'factory_girl_rails' | |
end | |
# 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' | |
# See https://github.com/sstephenson/execjs#readme for more supported runtimes | |
gem 'therubyracer' | |
gem 'uglifier', '>= 1.0.3' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment