aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
blob: 0775e8eb9870bc81b8bde08931aab6f55a63b8e6 (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
29
30
31
32
33
34
35
36
path File.expand_path('..', __FILE__)
source 'http://gemcutter.org'

gem "rails", "3.0.0.beta1"

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

if RUBY_VERSION < '1.9'
  gem "ruby-debug", ">= 0.10.3"
end

# AR
gem "sqlite3-ruby", ">= 1.2.5", :require => 'sqlite3'

group :test do
  gem "pg", ">= 0.8.0"
  gem "mysql", ">= 2.8.1"
end

# AP
gem "rack-test", "0.5.3", :require => 'rack/test'
gem "RedCloth", ">= 4.2.2"

if ENV['CI']
  gem "nokogiri", ">= 1.4.0"
  gem "memcache-client", ">= 1.7.6", :require => 'memcache'

  # fcgi gem doesn't compile on 1.9
  # avoid minitest strangeness on 1.9
  if RUBY_VERSION < '1.9.0'
    gem "fcgi", ">= 0.8.7"
  else
    gem "test-unit", ">= 2.0.5", :require => 'test/unit'
  end
end