aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
blob: 85a1ee0fef791e9f1df06b8681df4311a44cc6d1 (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
clear_sources
source 'http://gemcutter.org'

gem "rails", "3.0.pre", :path => "railties"
%w(
  activesupport
  activemodel
  actionpack
  actionmailer
  activerecord
  activeresource
).each do |lib|
  gem lib, '3.0.pre', :path => lib
end
gem "i18n",          "0.2.0"
gem "rack",          "1.0.1"
gem "rack-mount",    :git => "git://github.com/rails/rack-mount.git"
gem "rack-test",     "~> 0.5.0"
gem "erubis",        "~> 2.6.0"
gem "arel", "0.1.3", :git => "git://github.com/rails/arel.git"
gem "mocha"
gem "sqlite3-ruby"
gem "RedCloth"