forked from engineyard/rails_dev_directory
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
36 lines (32 loc) · 713 Bytes
/
Gemfile
File metadata and controls
36 lines (32 loc) · 713 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 "http://rubygems.org"
gem 'rails', '2.3.10'
gem 'mysql'
gem 'eyeballs'
gem 'eyeballs_rails', '0.1.4', :require => 'eyeballs_rails_helper'
gem "highline"
gem 'hpricot'
gem "RedCloth", :require => 'redcloth'
gem "authlogic", '2.1.6'
gem "fastercsv"
gem "friendly_id"
gem "nokogiri", '>= 1.3.3'
gem 'behavior', '0.1.1'
gem 'rest-client'
group :development do
gem 'mongrel'
end
group :cucumber do
gem 'capybara', '0.3.9'
gem 'cucumber', '0.9.4'
gem 'cucumber-rails', '0.3.2'
gem 'database_cleaner'
gem 'email_spec', '0.6.4'
gem 'factory_girl'
gem 'faker'
gem 'fakeweb'
gem 'launchy'
gem 'machinist', '1.0.6'
gem 'ruby-debug'
gem 'rspec', '1.3.1'
gem 'rspec-rails', '1.3.3'
end