Skip to content

Instantly share code, notes, and snippets.

Created January 10, 2011 11:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/772642 to your computer and use it in GitHub Desktop.
Save anonymous/772642 to your computer and use it in GitHub Desktop.
Gemfile
# Dependencies for ruote-kit
source :gemcutter
# ruote-kit itself
gem 'bundler'
gem 'sinatra', '1.0'
gem 'sinatra-respond_to', '0.5.0'
gem 'haml'
gem 'jruby-openssl'
gem 'activeresource', '2.3.5'
# more servers
#gem 'thin'
# for rackup -s thin
# json support
#
# you should choose one of the following three or add another backend supported
# by Rufus::Json (http://github.com/jmettraux/rufus-json/)
#
# gem 'json_pure' # safest all-around choice
# gem 'yajl-ruby' # the fastest, but using c code
# gem 'json' # not bad, but using c code and sometimes broken
gem 'json-jruby' # for jruby
#
# needed, uses one of the above as backend
#gem 'yajl-ruby', :require => 'yajl'
gem 'rufus-json', '>= 0.2.5'
# ruote
gem 'ruote', '~> 2.1.11', :path => 'ruote/'
#gem 'ruote', :git => 'git://github.com/jmettraux/ruote.git', :branch => 'ruote2.1'
#gem 'ruote', :path => 'ruote/'
# Testing environment requirements
group :test do
gem 'rspec', '= 1.1.12', :require => "spec"
gem 'rack-test'
gem 'webrat'
gem 'test-unit', '~> 1.2.3'
end
group :build do
gem 'jeweler'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment