forked from kennethkalmer/ruote-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
51 lines (37 loc) · 1013 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Dependencies for ruote-kit
source :gemcutter
# ruote-kit itself
gem 'bundler'
gem 'sinatra', '1.0'
gem 'sinatra-respond_to', '0.5.0'
gem 'haml'
# 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'
#gem 'ruote', :git => 'git://github.com/jmettraux/ruote.git', :branch => 'ruote2.1'
#gem 'ruote', :path => '~/w/ruote/'
# Testing environment requirements
group :test do
gem 'rspec', :require => "spec"
gem 'rack-test'
gem 'webrat'
gem 'test-unit', '~> 1.2.3'
end
group :build do
gem 'jeweler'
end