-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
76 lines (69 loc) · 1.7 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 "https://rubygems.org"
ruby "1.9.3"
gem "rails", "~>3.2.14"
gem "rdoc", "~>3.4"
gem "rake"
gem "mysql2"
gem "mail"#, "2.5.3" # latest version won't send emails
gem "rails_autolink"
gem "solr-ruby"
gem "json"
gem "addressable"
gem "daemons"
gem "dnsruby"
gem 'libxml-ruby',"2.6.0",:require => "libxml"
#Mongrel broken for 1.9.3. Using thin as suggested here
# http://stackoverflow.com/questions/13851741/install-mongrel-in-ruby-1-9-3
#gem "mongrel"
gem 'thin'
gem 'rubyzip'
gem "tzinfo"
gem "crack"
gem "factory_girl", "<=2.6.5"
gem "factory_girl_rails", "<4.0"
gem "geokit"
gem "rpx_now"
gem "httparty"
gem "mash"
gem "twitter"
gem "memcache-client", :require => "memcache"
gem "ruby-hmac"
gem "seer"
gem 'mumboe-soap4r'
gem "google_analytics"
gem "oauth-plugin"
gem "validates_existence"
gem 'delayed_job_active_record'
gem 'markaby'
gem "acts_as_trashable"
gem "my_annotations", :git => 'git://github.com/myGrid/annotations.git'
gem "will_paginate"
gem "better_logging"
gem "exception_notification", "<4.0.0", :require => 'exception_notifier'
gem 'prototype-rails'
gem 'country-select'
gem 'validates_email_format_of' # Replaces validates_email_veracity_of
gem "dalli"
gem 'redcarpet'
gem "paperclip", "~> 4.1"
gem 'rjb', '~> 1.4.9'
#Linked to SysMO Git repositories
gem 'redbox', :git=>"git://github.com/SysMO-DB/redbox"
gem "white_list", :git=>"https://github.com/neubloc/white_list.git"
gem "tabs_on_rails"
gem "haml"
gem "hashie"
gem "version_info", "~> 1.8.0"
gem 'nokogiri', '~> 1.5.10'
gem 'sunspot_rails'
gem 'sunspot_solr'
gem 'progress_bar'
gem 'sass-rails', '~> 3.2.3'
group :assets do
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
group :test do
# gem "webmock"
gem 'shoulda', '<3.2.0'
end