aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
blob: 592fd30b2edcbc537c8f2b7e09b550336898bddf (plain) (blame)
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
clear_sources
source 'http://gemcutter.org'

gem "rake", ">= 0.8.7"
gem "mocha", ">= 0.9.8"

gem "rails", "3.0.pre", :vendored_at => "railties"
%w(activesupport activemodel actionpack actionmailer activerecord activeresource).each do |lib|
  gem lib, '3.0.pre', :vendored_at => lib
end

# AR
gem "arel", "0.2.pre", :git => "git://github.com/rails/arel.git"
gem "sqlite3-ruby", ">= 1.2.5"

# AP
gem "rack", "1.0.1", :git => "git://github.com/rails/rack.git"
gem "rack-mount", :git => "git://github.com/rails/rack-mount.git"
gem "rack-test", ">= 0.5.0"
gem "erubis", ">= 2.6.5"
gem "RedCloth", ">= 4.2.2"

only :ci do
  gem "fcgi", ">= 0.8.7"
  gem "nokogiri", ">= 1.4.0"
  gem "memcache-client", ">= 1.7.6"
  gem "pg", ">= 0.8.0"
end