-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
40 lines (35 loc) · 750 Bytes
/
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
source 'http://rubygems.org'
gem 'rails', '3.0.4'
gem 'pg'
gem 'haml-rails'
gem 'compass'
gem 'jquery-rails'
gem 'inherited_resources'
gem 'redis'
gem 'httparty'
group :test do
gem 'miniskirt', :git => 'git://github.com/hoverlover/miniskirt.git', :branch => 'gem'
gem 'ffaker'
gem 'capybara', '0.4.0'
gem 'ruby-debug19'
gem 'rr'
end
group :production do
gem 'hassle', :git => 'git://github.com/koppen/hassle.git'
end
group :development do
gem 'heroku'
gem 'watchr'
gem 'spork', '>=0.9.0.rc2'
gem 'guard'
gem 'guard-spork'
gem 'guard-bundler'
gem 'rb-fsevent'
gem 'growl'
end
group :test, :development do
gem 'awesome_print', :require => 'ap'
gem "rspec-rails", "~> 2.5"
gem 'steak'
gem 'shoulda-matchers'
end