-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
69 lines (60 loc) · 1.97 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
source 'https://rubygems.org'
gem "rails", "2.3.18"
#rails version depends on active support of same version
#gem "activesupport", "2.3.14"
gem "rmagick"
gem "RedCloth", "4.2.3"
gem "will_paginate", "2.3.12"
gem "fastercsv", "1.5.3"
gem "libxml-ruby"
gem "ruby-debug", "0.10.3"
gem "rubyzip", "0.9.1"
gem "uuidtools", "2.1.1"
gem "mime-types", "1.16"
gem "rchardet", "1.3"
gem "tzinfo", "0.3.24"
gem "rdf", "0.3.3"
gem "linkeddata", "0.3.1"
gem "ipaddress", "0.7.0"
gem "POpen4", "0.1.4", :require => "popen4"
gem "nesstar-api"
#use this instead of metric_fu to get the 1.8.7 dependencies correct
gem "progressbar", "0.21.0"
gem "metrical", :require => false
#gem "metric_fu", "2.1.1"
gem 'sunspot_rails', '~> 1.2.1'
gem 'addressable', '2.2.4'
gem 'simple-spreadsheet-extractor', '0.5.0'
#popen 4 and windows need the win32-open3 gem
gem 'win32-open3', :platforms=>[:mingw]
gem 'ddi-parser'
gem "recaptcha", :require => "recaptcha/rails"
#later versions cause issues with time to words since {{variable}} is now %{variable} in later versions
gem "i18n", "0.4.1"
gem 'delayed_job', '~>2.0.4'
gem 'faker'
#database adaptors
#need the odbc gem for sqlserver
gem "ruby-odbc"
gem "activerecord-sqlserver-adapter", "~> 2.3.24"
gem "mysql", "2.8.1"
gem "sqlite3"
#delayed job, any later version can cause issues with pids and script/delayed_job start ie. no workers get started
gem "daemons", "1.0.10"
# linecache is not a gem we pull in directly but it is used by ruby-debug and
# version 0.45 requires ruby 1.9. 0.43 works with 1.8 so specify it here.
gem 'linecache', '0.43'
#stop the 'You have already activated rake 0.9.0, but your Gemfile requires rake 0.8.7. Consider using bundle exec' issue
gem 'rake', '0.8.7'
# bundler requires these gems in all environments
gem "nokogiri", "1.4.4"
# gem "geokit"
group :development do
# bundler requires these gems in development
# gem "rails-footnotes"
end
group :test do
# bundler requires these gems while running tests
# gem "rspec"
# gem "faker"
end