forked from fatfreecrm/fat_free_crm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
75 lines (63 loc) · 2.43 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
68
69
70
71
72
73
74
75
source 'http://rubygems.org'
# Gem watch list:
#---------------------------------------------------------------------
# gem 'authlogic', :git => 'git://github.com/crossroads/authlogic.git', :branch => 'rails3'
# gem 'gravatar-ultimate', :git => 'git://github.com/crossroads/gravatar.git'
# gem 'paperclip', :git => 'http://github.com/thoughtbot/paperclip.git'
# Rails3 plugins that we use and their source repositories:
#---------------------------------------------------------------------
# gravatar_image_tag, git://github.com/mdeering/gravatar_image_tag.git
# calendar_date_select, git://github.com/timcharper/calendar_date_select.git
# country_select, git://github.com/rails/country_select.git
# dynamic_form, git://github.com/rails/dynamic_form.git
# is_paranoid, git://github.com/theshortcut/is_paranoid.git
# prototype_legacy_helper, git://github.com/rails/prototype_legacy_helper.git
# responds_to_parent, git://github.com/markcatley/responds_to_parent.git
gem 'rails', '3.0.3'
gem 'acts_as_commentable', '>= 3.0.1'
gem 'acts-as-taggable-on', '>= 2.0.6'
gem 'authlogic', :git => 'git://github.com/crossroads/authlogic.git', :branch => 'rails3'
gem 'haml', '>= 3.0.18'
gem 'is_paranoid', :git => 'git://github.com/crossroads/is_paranoid.git', :branch => 'rails3'
gem 'pg', '>= 0.9.0'
gem 'paperclip', :git => 'git://github.com/crossroads/paperclip.git'
gem 'will_paginate', '>= 3.0.pre2'
gem 'whenever'
gem 'meta_search', '>= 0.9.9.1'
gem 'hoptoad_notifier', '>= 2.4.2'
gem 'ffaker'
group :cucumber, :test, :development do
gem 'test-unit', '1.2.3' if RUBY_VERSION.to_f >= 1.9
gem 'rvm', '>= 1.0.15'
gem 'capistrano-ext'
gem 'rspec-rails', '2.0.1'
gem 'rcov'
gem 'factory_girl'
gem 'thin'
if RUBY_VERSION.to_f >= 1.9
# -- --with-ruby-include=$HOME/.rvm/src/ruby-1.9.2p0/
gem 'ruby-debug19'
else
gem 'ruby-debug'
end
end
group :cucumber do
gem 'capybara'
gem 'cucumber-rails'
gem 'database_cleaner'
gem 'spork'
gem 'headless'
end
group :test do
gem 'shoulda'
gem 'autotest-rails'
gem 'webrat'
gem 'database_cleaner'
gem 'ci_reporter', :git => 'http://github.com/crossroads/ci_reporter.git'
end
group :production do
gem 'newrelic_rpm'
end
gem 'soap4r', :git => 'git://github.com/tribalvibes/soap4r-spox.git'
gem 'crowd-crossroads', :git => 'git://github.com/crossroads/crowd.git'
gem 'crowd_rails', :git => 'git://github.com/crossroads/crowd_rails.git'