-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
72 lines (61 loc) · 1.68 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
source "http://rubygems.org"
#gem "rails", "~> 2.3.5"
gem "chronic"
gem "geoip"
gem "daemons", :require => false
gem "hoe", :require => false
gem "echoe", :require => false
gem "ruby-yadis", :require => "yadis"
gem "ruby-openid", :require => "openid"
gem "rdiscount", "1.3.1.1", :platforms => :ruby
gem "mime-types", :require => "mime/types"
gem "diff-lcs", :require => "diff/lcs"
gem "oauth"
gem "paperclip", "~> 2.2.8"
gem "state_machine"
gem "rack", "~> 1.0.1"
gem "riddle" # For the ultrasphinx plugin
gem "builder"
gem "mysql", :platforms => :ruby
gem "validates_url_format_of"
gem "acts-as-taggable-on"
gem "will_paginate"
gem "hodel_3000_compliant_logger"
gem "ruby-net-ldap", "~> 0.0.4"
gem "capillary", "~> 1.0.0"
# TODO: replace the lines below while upgrading to Rails 3
# gem "exception_notification", :require => 'exception_notifier'
gem "exception_notification", "~> 1.0.20090728", :require => 'exception_notifier'
# gem "bartt-ssl_requirement" # TODO: use this with Rails 3
gem "revo-ssl_requirement"
# Ruby 1.8 gems
gem "ruby-hmac", :platforms => :ruby_18
group :test do
gem "mocha", :require => false
gem "factory_girl", "~> 1.3.0"
gem "shoulda", "~> 2.9.1"
gem "tuxml"
gem "rots", :git => 'https://github.com/roman/rots.git'
gem "capybara"
gem "launchy" # used only for Capybara's save_and_open_page for launching the browser
end
group :git_proxy do
gem "proxymachine"
gem "rake"
end
group :messaging do
gem "json", "~> 1.5.1", :platforms => :ruby_18
end
group :resque do
gem "resque"
gem "SystemTimer"
end
group :stomp do
gem "stomp", "1.1"
end
group :active_messaging do
gem "activemessaging"
end
platform :jruby do
gem "activerecord-jdbcmysql-adapter"
end