-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathGemfile
35 lines (31 loc) · 857 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
source :rubygems
# Project requirements
gem 'rake'
gem 'thin' # or mongrel
gem 'RedCloth'
gem 'popen4'
# Component requirements
gem 'haml'
gem 'yui-compressor', :require => 'yui/compressor'
gem 'diff-lcs', :require => 'diff/lcs'
gem 'bson_ext', '~>1.4.0', :require => nil
gem 'mongo_mapper', '~>0.9.2'
gem 'disqus'
gem 'rdoc'
gem 'pdfkit'
# Test requirements
group :test do
gem 'rspec'
gem 'SystemTimer', :require => "system_timer", :platform => :mri_18
gem 'rack-test', :require => "rack/test"
end
# Padrino
if path = ENV['PADRINO_PATH']
%w(core gen helpers mailer admin cache).each do |g|
gem 'padrino-' + g, :path => File.join(path, 'padrino-' + g)
end
gem 'padrino-contrib', :path => File.expand_path('../padrino-contrib', path)
else
gem 'padrino', '0.10.3'
gem 'padrino-contrib', '~>0.1.9'
end