-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGemfile
More file actions
30 lines (27 loc) · 670 Bytes
/
Copy pathGemfile
File metadata and controls
30 lines (27 loc) · 670 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
source 'http://rubygems.org'
gem 'rails', "3.0.6"
gem 'sqlite3-ruby', :require => 'sqlite3'
gem 'jquery-rails'
gem 'thin'
gem 'haml'
gem 'haml-rails'
gem 'devise'
#gem 'paperclip'
gem 'paperclip', :git => 'git://github.com/thoughtbot/paperclip.git'
gem 'kaminari'
gem 'hpricot'
gem 'ruby_parser'
gem 'bitly'
gem "escape_utils"
gem 'rack-recaptcha', :require => 'rack/recaptcha'
gem 'omniauth'
group :test, :development do
gem "rspec-rails", "~> 2.0.1"
gem 'capybara', "0.3.9"
gem 'database_cleaner'
gem 'cucumber-rails'
gem 'cucumber', "~> 0.9.4"
gem 'factory_girl_rails'
gem 'spork'
gem 'launchy' # So you can do Then show me the page
end