-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
36 lines (31 loc) · 738 Bytes
/
Gemfile
File metadata and controls
36 lines (31 loc) · 738 Bytes
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
source :gemcutter
gem 'rails', '2.3.8'
gem 'rake', '0.8.7'
gem 'haml'
gem 'sqlite3-ruby'
gem 'simple_form', '1.0.2'
gem 'RedCloth'
gem 'paperclip'
gem 'prawn'
gem 'fastercsv'
# Yes, this is weird, but is necessary for the correct deployment under Passenger 2.2.13+
# See http://github.com/carlhuda/bundler/issues/issue/349
gem 'bundler', '0.9.26'
group :development do
gem 'mongrel'
gem 'capistrano'
gem 'capistrano-ext'
gem 'radix'
end
group :development, :test do
gem 'sqlite3-ruby'
gem 'faker'
end
group :test do
gem 'rspec', '1.3.0'
gem 'rspec-rails', '1.3.2'
gem 'timecop'
gem 'factory_girl'
gem 'shoulda'
gem 'mocha', :require => nil # This is important. Otherwise you won't be able to mock finders
end