forked from jpartogi/projexion
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
50 lines (40 loc) · 1.32 KB
/
Gemfile
File metadata and controls
50 lines (40 loc) · 1.32 KB
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
# 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.3"
#gem "rails", :git => 'git://github.com/rails/rails.git' # Rails 3.0.0.beta3
# Database drivers
gem 'bson_ext'
gem 'mongoid', "2.0.0.beta.20"
# For security
gem 'devise', '1.2.rc'
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 vendor/ruby/1.9.1/bin/unicorn -E production --port 4000 --daemonize
gem 'unicorn'
# To run thin in production:
# $ bundle exec vendor/bin/thin start
# gem 'thin'
# For testing
group :test do
gem "webrat", "0.7.2.pre", :git => 'git://github.com/scrum8/webrat.git'
gem "shoulda"
gem "factory_girl"
gem "cucumber"
gem "rack-test"
end
group :test, :development do
gem "rack-test"
gem "rspec-rails", ">= 2.0.0.beta.22"
end