Created
March 26, 2012 21:58
-
-
Save netinlet/2210082 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 :rubygems | |
| gem 'activerecord', '3.1.0', :require => "active_record" | |
| gem 'haml' | |
| gem 'padrino', '0.10.5' | |
| gem 'pg' | |
| gem 'rake' | |
| gem 'redis' | |
| gem 'ruote', "~> 2.3.0", :require => "ruote" | |
| gem 'ruote-kit', "~> 2.3.0" | |
| gem 'ruote-amqp', "~> 2.2.0.1" | |
| gem 'ruote-sequel' | |
| gem 'daemon-kit' | |
| gem 'safely' | |
| gem 'amqp' # Only needed if running the AMQP participant/listener pair | |
| gem 'json' # Can be replaced with json_pure | |
| gem 'sass' | |
| gem 'sinatra' | |
| #gem 'sinatra-flash', :require => 'sinatra/flash' | |
| gem 'yajl-ruby', :require => 'yajl' | |
| # Deployment... | |
| gem 'capistrano', '~> 2.8.0' | |
| gem "capistrano-ext" | |
| group :test do | |
| gem 'rspec' | |
| gem 'evented-spec' | |
| gem 'rack-test', require: "rack/test" | |
| gem "database_cleaner" | |
| gem 'simplecov-rcov', require: false | |
| end | |
| group :development do | |
| gem 'pry' | |
| gem 'guard' | |
| gem 'rb-inotify', :require => false | |
| gem 'rb-fsevent', :require => false | |
| gem 'rb-fchange', :require => false | |
| gem 'ruby_gntp' | |
| gem 'guard-bundler' | |
| gem 'guard-rspec' | |
| end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment