-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGemfile
More file actions
executable file
·43 lines (34 loc) · 892 Bytes
/
Gemfile
File metadata and controls
executable file
·43 lines (34 loc) · 892 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
37
38
39
40
41
42
source 'http://rubygems.org'
gem 'rails', '~> 3.0.3'
gem 'sqlite3-ruby', :require => 'sqlite3'
gem 'ruby-mysql'
gem 'authlogic', :git => 'http://github.com/odorcicd/authlogic.git', :branch => 'rails3'
gem 'declarative_authorization'
gem 'paperclip'
gem 'configatron'
gem 'will_paginate', '~> 3.0.pre2'
gem 'test-unit'
gem 'hoe'
gem 'rubyforge'
gem 'gravtastic'
gem 'breadcrumbs_on_rails'
gem 'delayed_job', :git => 'git://github.com/collectiveidea/delayed_job.git'
gem 'nokogiri'
gem 'memcache-client'
group :development, :test do
gem 'mocha'
gem 'rspec-rails', '>= 2.0.0.beta.19'
gem 'factory_girl_rails'
gem 'email_spec'
gem 'autotest-rails'
gem 'ZenTest'
gem 'ruby_parser'
gem 'steak', '>= 1.0.0.rc.1'
gem 'capybara'
gem 'delorean'
gem 'database_cleaner'
gem 'spork'
gem 'rcov'
gem 'cover_me', '>= 1.0.0.pre2', :require => false
gem "rails-erd"
end