-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
56 lines (44 loc) · 1.29 KB
/
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
51
52
53
54
55
source :gemcutter
gem 'rails'#, :git => 'git://github.com/rails/rails.git', :ref => '9e081caee74e6d08035a8835899dcc566536a871'
gem 'rack'
#gem 'rack-test'
#gem 'rack-openid'
gem 'thor'
# Database
gem 'mongo'
gem 'bson_ext'
#gem 'builder'
gem 'mongoid', :git => 'git://github.com/mongoid/mongoid.git'
# For monitoring and background processes
gem 'god'
gem 'daemons'
gem 'navvy'#, :git => 'git://github.com/TomK32/navvy.git'
# Deployment
gem 'capistrano'
# Views and controller related
gem 'haml'
gem 'RedCloth'
gem 'compass'
gem 'compass-960-plugin', :require => 'ninesixty'
gem 'dynamic_form', :git => 'git://github.com/rails/dynamic_form.git'
gem 'inherited_resources'
gem 'will_paginate', :branch => 'rails3'
gem 'exception_notification', :git => 'git://github.com/rails/exception_notification.git', :require => 'exception_notifier'
# Testing
group :development do
gem "autotest"
gem "cucumber"
gem "cucumber-rails"
gem "rspec"
gem "rspec-core"
gem "rspec-rails"
gem "rspec-mocks"
gem "rspec-expectations"
gem "factory_girl_rails"
gem "shoulda"
gem "mongoid-rspec", :git => "http://github.com/evansagge/mongoid-rspec.git"
gem "webrat"
end
# Other
gem 'tomk32-flickr_fu', :require => 'flickr_fu', :git => 'git://github.com/TomK32/flickr_fu.git'
gem 'ruby-openid', :require => 'openid'