-
-
Save johnantoni/4370690 to your computer and use it in GitHub Desktop.
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 'sqlite3' | |
gem 'bcrypt-ruby', '~> 3.0.0' # To use ActiveModel has_secure_password | |
gem 'oj' # json - https://github.com/ohler55/oj | |
# ------------------------------------------------------------------------------------ | |
# frontend | |
gem 'coffee-rails', '~> 3.2.1' | |
gem 'jquery-rails' | |
gem "bootstrap_flash_messages" | |
gem "less-rails" #Sprockets (what Rails 3.1 uses for its asset pipeline) supports LESS | |
gem "haml" | |
gem 'eco' | |
# backbone | |
gem 'backbone-on-rails' | |
gem 'haml_coffee_assets' # compile less | |
group :assets do | |
gem 'sass-rails', '~> 3.2.3' | |
gem 'coffee-rails', '~> 3.2.1' | |
gem 'uglifier', '>= 1.0.3' | |
gem "twitter-bootstrap-rails" | |
gem "therubyracer" | |
end | |
# ------------------------------------------------------------------------------------ | |
group :development do | |
# tools | |
gem 'rails3-generators' | |
gem 'letter_opener' | |
gem "foreman" | |
gem 'debugger' | |
# livereload | |
gem 'guard-annotate' | |
gem 'guard-bundler' | |
gem 'rack-livereload' | |
gem 'guard-livereload' | |
gem 'guard-pow' | |
gem 'guard-spork' | |
gem 'rb-fsevent', '~> 0.9.1' | |
# mechanics | |
gem 'ruby_gntp' | |
gem 'yajl-ruby' | |
gem 'crack' | |
gem 'quiet_assets' | |
# development webserver | |
gem 'thin' | |
# trick out my console | |
gem 'hirb' | |
gem 'wirble' | |
gem 'awesome_print' | |
gem 'interactive_editor' | |
end | |
# ------------------------------------------------------------------------------------ | |
# testing | |
group :development, :test do | |
gem "jasminerice" | |
end | |
# ------------------------------------------------------------------------------------ | |
# production webserver | |
gem 'unicorn' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment