-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
51 lines (41 loc) · 1.26 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
# Edit this Gemfile to bundle your application's dependencies.
# Specify a dependency on rails. When the bundler downloads gems,
# it will download rails as well as all of rails' dependencies (such as
# activerecord, actionpack, etc...)
#
# At least one dependency must be specified
source 'http://gemcutter.org'
## Bundle edge rails:
gem "rails", "3.0.6"
#gem "rails", :git => 'git://github.com/rails/rails.git' # Rails 3.0.0.beta3
# Database drivers
gem 'bson_ext'
gem 'mongoid', "2.0.1"
# For security
gem 'devise', '1.2.1'
gem "cancan"
#gem 'will_paginate', :git => 'git://github.com/mislav/will_paginate.git'
gem 'will_paginate','3.0.pre2'
# For cron jobs
# TODO: Activate whenever scheduler
#gem "whenever", "0.4.1", :git => "git://github.com/javan/whenever.git"
# If you are running passenger in production, make sure to remark the lines below.
# To run unicorn in production:
# $ bundle exec unicorn -E production --port 6000 --daemonize
# gem 'unicorn'
# To run thin in production:
# $ bundle exec thin start -e production -p 6000 --daemonize
gem 'thin'
# For testing
group :test do
gem "webrat", "0.7.3"
gem "shoulda"
gem "factory_girl"
gem "cucumber"
gem "rack-test"
gem "rr"
end
group :test, :development do
gem "rack-test"
gem "rspec-rails", ">= 2.5.0"
end