-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile.tmp
More file actions
165 lines (128 loc) · 4.16 KB
/
Gemfile.tmp
File metadata and controls
165 lines (128 loc) · 4.16 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# A sample Gemfile
source "http://rubygems.org"
source "http://gems.rubyforge.org"
source "http://gemcutter.org"
# I don't believe that this source is active any longer.
source "http://gems.github.com"
# rubygems > 1.6.2 is EVIL! If you update, you deal with it.
# generates all kinds of new errors and deprecation warnings
# somehow loads older versions of gems, then bitches when you try to load the newest.
# (may be fixable with "gem pristine --all --no-extensions", but haven't tried)
# rake 0.9.0 caused some errors. can't remember
# arel > 2.0.2 caused some errors.
# some gem versions require rails 3, so have to use older versions
# authlogic, will_paginate
# buffler and clic now have their own Gemfiles
# so the special mods for jruby are no longer needed.
#
# NO SPACES BETWEEN OPERATOR AND VERSION NUMBER!
#
gem "rake", '=0.8.7'
gem "rails", "~>2"
gem "mongrel"
# 20120213 - Removing this feature
#gem "active_shipping"
# Why? Can't remember.
gem "RedCloth", '<4.2.8'
gem "arel", "=2.0.2"
# Trying to remove Chronic usage
# still in calnet_authenticated
# 0.6.7 doesn't install in jruby?
gem "chronic" #, '<=0.6.6'
gem "haml"
gem "hpricot"
gem "i18n"
gem "jeweler"
gem "jrails"
# causes rails 2.3.2 and associated to be installed???
#gem "rack"
# (1.3.0, 1.2.2, 1.1.2, 1.1.0, 1.0.1)
gem "ryanb-acts-as-list"
gem "ssl_requirement"
gem "will_paginate", "~>2"
gem "ccls-calnet_authenticated"
gem "ccls-ccls_engine"
gem "ccls-common_lib"
gem "ccls-simply_authorized"
gem "ccls-use_db"
#if RUBY_PLATFORM =~ /java/
# gem "warbler"
# gem "jruby-jars"
# gem "jruby-openssl"
# gem "jruby-rack"
# gem "jdbc-mysql"
# gem "jdbc-sqlite3"
# gem "activerecord-jdbcsqlite3-adapter"
# gem "activerecord-jdbcmysql-adapter"
#
##Java::JavaLang::ArrayIndexOutOfBoundsException: An error occured while installing rubyzip (0.9.5), and Bundler cannot continue.
# gem 'rubyzip', '=0.9.4' # 0.9.5 fails
#else
# problems in jruby
gem "mysql"
gem "sqlite3", '!=1.3.4'
#end
gem "packet" # don't remember why (think from backgroundrb)
# Used for cvs parsing on data import
# Also used to csv output.
gem "fastercsv"
# 2.4.3, 2.4.5 causes a lot of ...
# NameError: `@[]' is not allowed as an instance variable name
# paperclip (2.4.5) lib/paperclip/options.rb:60:in `instance_variable_get'
# paperclip (2.4.5) lib/paperclip/options.rb:60:in `method_missing'
gem "paperclip", '=2.4.2' # only used by buffler and clic
# actually, now will be used for live_birth_data, so all apps need it
# Rails 2 requires us to not use the latest version of delayed_job.
# delayed_job depends upon version 1.0.10 of the daemons gem.
# delayed_job is incompatible with the newest (1.1.0) daemons gem.
#Installing daemons (1.0.10)
#Installing delayed_job (2.0.7)
#gem 'delayed_job', '~>2.0.4'
# These gems are not needed in production
# They will be skipped because of config file
# /my/ruby/.bundle/config
#---
#BUNDLE_WITHOUT: development:test
#
group :development do
# unless RUBY_PLATFORM =~ /java/
# # doesn't install with native extensions
gem "rmagick" # only used with paperclip on buffler and clic
# end
# rarely used
gem "rdoc"
# only used by clic
gem "authlogic", "~>2"
# only used by buffler and clic
gem "aws-s3"
# Never used anymore
#gem "aws-sdb"
# sunspot is only used by clic, and that has even stopped
# It seems that 1.3.0 will require some modifications.
# I am going to possibly try to use this with ccls
# gem "sunspot_rails", '=1.2.1'
# gem "sunspot", '=1.2.1'
# gem "rsolr", '=0.12.1'
end
group :test do
# used only by simply_authorized in testing (so I'd actually like to remove)
# now dead.
# gem "ccls-simply_sessions"
# really only needed in test environment
# but some of my gems still require it
gem "thoughtbot-factory_girl"
# My many testing gems
gem "ccls-html_test"
gem "autotest-rails"
gem "rcov" unless RUBY_PLATFORM =~ /java/
gem 'ZenTest', '~>4.5.0'
#Fetching: ZenTest-4.6.2.gem (100%)
#ERROR: Error installing ZenTest:
# ZenTest requires RubyGems version ~> 1.8. (which is evil I tell you)
# I don't know why, but each of these will trigger
# the installation of rails 2.3.2 and I don't quite
# understand why.
# gem "webrat"
# gem "capybara"
# gem "capybara-webkit"
end