-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
67 lines (53 loc) · 1.57 KB
/
Gemfile
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
source 'http://rubygems.org'
source "http://gems.github.com"
gem 'rails', '3.0.3'
gem 'jquery-rails'
gem "compass", ">= 0.10.5"
gem 'haml', ">= 3.0.13"
gem 'fancy-buttons'
gem 'acts_as_tree', :git => 'git://github.com/parasew/acts_as_tree.git'
gem 'authlogic', "2.1.5"
gem 'cancan'#, '1.3.2'
gem 'coderay'#, :git => 'git://github.com/Flameeyes/redcloth.git'#, :branch => 'ruby1.9.2'
gem 'RedCloth'#, :git => 'git://github.com/jgarber/redcloth.git'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'mysql2'
#gem 'sqlite3-ruby', :require => 'sqlite3'
gem 'bluecloth'
gem 'rakismet'
gem 'will_paginate', '~> 3.0.pre2'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
# group :development, :test do
# gem 'webrat'
# end
group :development do
gem 'awesome_print'
gem "autotest-rails-pure"
gem "nifty-generators", :git => 'git://github.com/drhenner/nifty-generators.git'
gem "rails-erd"
#gem "ruby-debug19"
#gem "ruby-debug"
end
group :test do
gem 'rails3-generators'
gem 'factory_girl_rails'
gem 'mocha', :require => false
gem 'rspec-rails-mocha'
gem 'email_spec'
gem "shoulda"
gem "rspec-rails", "~> 2.4.0"
gem "rspec", "~> 2.4.0"
gem "rspec-core", "~> 2.4.0"
gem "rspec-expectations", "~> 2.4.0"
gem "rspec-mocks", "~> 2.4.0"
gem "faker"
gem "autotest"
gem "autotest-rails-pure"
if RUBY_PLATFORM =~ /darwin/
gem "autotest-fsevent"
end
gem "autotest-growl"
end