swivel 0.0.152 → 0.0.155

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Rakefile CHANGED
@@ -60,10 +60,10 @@ spec =
60
60
  s.require_path = "lib"
61
61
 
62
62
  s.bindir = "bin"
63
- s.executables = %w/swivel/
63
+ s.executables = %w/swivel mysql2swivel/
64
64
 
65
- s.add_dependency 'activerecord'
66
- s.add_dependency 'activesupport', '>=1.4.0'
65
+ s.add_dependency 'activerecord', '>=1.15.5'
66
+ s.add_dependency 'activesupport', '>=1.4.4'
67
67
  s.add_dependency 'cobravsmongoose'
68
68
  end
69
69
 
@@ -0,0 +1,333 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'rubygems'
4
+ require 'open-uri'
5
+ require 'active_record'
6
+ require 'optparse'
7
+ require File.dirname(__FILE__) + '/../lib/swivel2'
8
+
9
+ SWIVEL_URL = "http://inviteonly.swivel.com"
10
+
11
+ SWIVELRC = <<-EOS
12
+
13
+ Your API key is read from ~/.swivelrc:
14
+
15
+ You need a ~/.swivelrc file before you can use this program! The contents
16
+ of your swivelrc file should look like this:
17
+
18
+ --- !ruby/struct:Swivel2::Config
19
+ site: https://x:<YOUR_API_KEY>@api.swivel.com
20
+ timeout_read: 500
21
+ timeout_write: 1_000
22
+ extra_params: { noviews: true }
23
+ EOS
24
+
25
+ EXAMPLES = <<-EOS
26
+
27
+ Examples:
28
+
29
+ Upload a data set
30
+ $ cat data.csv | #{$0} upload 1234567
31
+
32
+ Append data to data set with id 1234567
33
+ $ cat more_data.csv | #{$0} append 1234567
34
+
35
+ Replace underlying data for data set with id 1234567
36
+ $ cat new_data.csv | #{$0} replace 1234567
37
+ EOS
38
+
39
+ # todo: allow users to input their api instead of editing a resource file but let them know api can be changed in the resource file
40
+ options = Hash.new
41
+ config =
42
+ begin
43
+ Swivel2::Config.load
44
+ rescue Errno::ENOENT
45
+ puts SWIVELRC
46
+ exit
47
+ end
48
+
49
+ class SwivelHelper
50
+ def initialize config
51
+ @swivel = Swivel2::Connection.new config
52
+ end
53
+
54
+ def upload name, data, options = Hash.new
55
+ opts = { 'data_set[name]' => name,
56
+ 'data_set[citation]' => $0,
57
+ 'data_set[public]' => 0,
58
+ 'file[data]' => data }
59
+ opts.merge! 'file[types]' => options[:types] if options[:types]
60
+ opts.merge! 'file[headings]' => options[:headings] if options[:headings]
61
+ opts.merge! 'file[sep]' => options[:sep] if options[:sep]
62
+ data_set = @swivel.post '/data_sets', opts
63
+ puts "uploaded #{data_set.id}"
64
+ data_set.id
65
+ end
66
+
67
+ def append id, options = Hash.new
68
+ opts = { 'file[mode]' => 'append',
69
+ 'file[data]' => read(options[:filename]) }
70
+ data_set = update id, opts
71
+ puts "appended #{data_set.id}"
72
+ end
73
+
74
+ def replace id, data, options = Hash.new
75
+ opts = { 'file[mode]' => 'replace',
76
+ 'file[data]' => data }
77
+ data_set = update id, opts
78
+ puts "replaced #{data_set.id}"
79
+ end
80
+
81
+ private
82
+ def update id, options
83
+ @swivel.put "/data_sets/#{id}", options
84
+ end
85
+
86
+ def read filename = nil
87
+ if filename
88
+ open filename do |f| f.readlines.join end
89
+ else
90
+ readlines.join
91
+ end
92
+ end
93
+ end
94
+
95
+ class SqlTable
96
+ attr_accessor :server, :port, :socket, :username, :password, :database, :table, :sql, :random_table, :data, :data_set_name, :data_set_id, :last_sync_time
97
+
98
+ INPUT_CONSTS = {
99
+ :server => ['Enter Mysql Server Host Address','192.168.0.1','localhost'],
100
+ :port => ['Enter Mysql Port','12345','3306'],
101
+ :socket => ['Enter Mysql Socket Path','/tmp/mysql.socket','/var/lib/mysql/mysql.sock'],
102
+ :username => ['Enter Mysql Username',"'bob'@'app01.xyz.com'","'root'@'localhost'"],
103
+ :password => ['Enter Mysql Password If Needed',"mypassword123",""],
104
+ :database => ['Enter Mysql Database Name',"db01","test"],
105
+ :table => ['The above are the tables in the database you specified\nEnter the name of the table to sync to Swivel',"users",""],
106
+ :sql => ['Customize your sql statement if needed (or press enter for default)','select name, address, date from users_table',''],
107
+ :data_set_name => ['Enter the data set name to use in Swivel for this data','weather forecast year 2008 data','']
108
+ }
109
+
110
+ MYSQL_TO_SWIVEL_TYPE = {}
111
+
112
+ def input var, default_val = nil
113
+ sym = var.to_sym
114
+ default_val ||= INPUT_CONSTS[sym][2]
115
+ puts ''
116
+ puts INPUT_CONSTS[sym][0]
117
+ puts " example: #{INPUT_CONSTS[sym][1]}"
118
+ puts " default: #{default_val}"
119
+ print '>'
120
+ val = gets.chomp
121
+ val = default_val if val.blank?
122
+ self.send("#{sym.to_s}=", val)
123
+ end
124
+
125
+ def connect
126
+ ActiveRecord::Base.establish_connection(
127
+ :adapter => "mysql",
128
+ :host => @server.chomp,
129
+ :username => @username.chomp,
130
+ :password => @password.chomp,
131
+ :port => @port.chomp.to_i,
132
+ :socket => @socket.chomp,
133
+ :database => @database.chomp
134
+ )
135
+ end
136
+
137
+ def list_tables
138
+ r = ActiveRecord::Base.connection.execute('show tables')
139
+ h = r.all_hashes
140
+ puts ''
141
+ puts 'Listing all Tables in the Database Specified'
142
+ h.each do |t|
143
+ puts " #{t.values.first}"
144
+ end
145
+ @random_table = h.last.values.first
146
+ end
147
+
148
+ def list_fields
149
+ r = ActiveRecord::Base.connection.execute("show create table #{@table}")
150
+ h = r.all_hashes
151
+ puts ''
152
+ puts "Listing structure of table #{@table}"
153
+ puts "#{h.first['Create Table']}"
154
+ end
155
+
156
+ def extract_data
157
+ r = ActiveRecord::Base.connection.execute(@sql)
158
+ fs = r.fetch_fields
159
+ # do field mapping here so no autoestimation
160
+ buffer = StringIO.new
161
+
162
+ #titles
163
+ buffer << fs.map(&:name).join("\t")
164
+ buffer << "\n"
165
+
166
+ #data
167
+ r.each do |row|
168
+ next if row.all? &:blank?
169
+ buffer << row.join("\t").gsub('"','').gsub("'",'').gsub("\n",'')
170
+ buffer << "\n"
171
+ end
172
+
173
+ @data = buffer.string
174
+
175
+ puts ''
176
+ puts "#{r.num_rows} rows of data ready to upload to Swivel"
177
+ end
178
+
179
+ end
180
+
181
+ class Mysql2Swivel
182
+
183
+ def initialize(config)
184
+ @helper = SwivelHelper.new config
185
+ @sqltables = []
186
+ @sqltables = File.open("mysql2swivel.yml") do |f|
187
+ YAML.load(f)
188
+ end if File.exist?('mysql2swivel.yml')
189
+ end
190
+
191
+ def display_syncs_detailed
192
+ puts ''
193
+ puts ''
194
+ puts "There are currently #{@sqltables.size} mysql datastreams syncing to swivel"
195
+ puts '-----------------------------------------'
196
+ @sqltables.each_with_index do |s,i|
197
+ puts "[#{i}] dataset name: #{s.data_set_name}"
198
+ puts " swivel dataset id: #{s.data_set_id}"
199
+ puts " url: #{SWIVEL_URL}/data_sets/#{s.data_set_id}"
200
+ puts " last updated at: #{s.last_sync_time}"
201
+ puts " data from:"
202
+ puts " host: #{s.server} db: #{s.database} table: #{s.table}"
203
+ puts " sql: #{s.sql}"
204
+ puts '-----------------------------------------'
205
+ end
206
+ end
207
+
208
+ def display_syncs
209
+ puts ''
210
+ puts ''
211
+ puts "There are currently #{@sqltables.size} mysql datastreams syncing to swivel"
212
+ puts '-----------------------------------------'
213
+ @sqltables.each_with_index do |s,i|
214
+ puts "[#{i}] dataset name: #{s.data_set_name} last sync: #{s.last_sync_time.to_s}"
215
+ puts '-----------------------------------------'
216
+ end
217
+ end
218
+
219
+ def cron_info
220
+ puts 'all the datastreams above will update and sync with the dataset in Swivel'
221
+ puts 'when you run this script with the -update option'
222
+ puts "you can add the script to your cron jobs for regular updates"
223
+ puts " example: to run the updates everyday at 4am add following line to your crontab"
224
+ puts " 0 4 * * * mysql2swivel -update"
225
+ end
226
+
227
+ def main_menu
228
+ exit = false
229
+ verbose = false
230
+ while !exit
231
+ verbose ? display_syncs_detailed : display_syncs
232
+ cron_info unless @sqltables.blank?
233
+ puts "You can (A)dd or (D)elete a datastream from mysql, (T)oggle verbose or (Q)uit"
234
+ print ">"
235
+ command = gets
236
+ if command.downcase.starts_with? 'a'
237
+ add
238
+ elsif command.downcase.starts_with? 'd'
239
+ delete
240
+ elsif command.downcase.starts_with? 'q'
241
+ exit = true
242
+ elsif command.downcase.starts_with? 't'
243
+ verbose = !verbose
244
+ else
245
+ puts ''
246
+ puts "'#{command}' is not a valid action!"
247
+ end
248
+ save
249
+ end
250
+ end
251
+
252
+ def add
253
+ puts 'Adding a mysql datastream'
254
+ sqltable = SqlTable.new
255
+ sqltable.input :server
256
+ sqltable.input :port
257
+ sqltable.input :socket
258
+ sqltable.input :username
259
+ sqltable.input :password
260
+ sqltable.input :database
261
+ sqltable.connect
262
+ sqltable.list_tables
263
+ sqltable.input :table, sqltable.random_table
264
+ sqltable.list_fields
265
+ sqltable.input :sql, "select * from #{sqltable.table}"
266
+ sqltable.extract_data
267
+ sqltable.input :data_set_name
268
+ puts 'uploading...'
269
+ sqltable.data_set_id = @helper.upload sqltable.data_set_name, sqltable.data
270
+ sqltable.last_sync_time = Time.now
271
+ sqltable.data = nil
272
+ puts "data successfully uploaded to Swivel"
273
+ sleep 2
274
+ puts "the swivel dataset can be found at #{SWIVEL_URL}/data_sets/#{sqltable.data_set_id}"
275
+ sleep 2
276
+ puts "the data source has also been setup to update when you run this script with -update option"
277
+ @sqltables << sqltable
278
+ sleep 5
279
+ end
280
+
281
+ def delete
282
+ display_syncs_detailed
283
+ puts 'give index of the datastream to delete:'
284
+ print '>'
285
+ index = gets.to_i
286
+ s = @sqltables.delete_at index
287
+ puts ''
288
+ puts "#{s.data_set_name} deleted"
289
+ sleep 3
290
+ end
291
+
292
+ def save
293
+ @sqltables.each{|s|s.data = nil}
294
+ File.open("mysql2swivel.yml",'w') do |f|
295
+ YAML.dump(@sqltables, f)
296
+ end
297
+ end
298
+
299
+ def update
300
+ @sqltables.each do |s|
301
+ begin
302
+ s.connect
303
+ s.extract_data
304
+ require 'ruby-debug';debugger
305
+ @helper.replace s.data_set_id.to_i, s.data
306
+ s.last_sync_time = Time.now
307
+ rescue Exception => e
308
+ puts "dataset #{s.data_set_name} with id #{s.data_set_id} did not update due to error: #{e.message}"
309
+ end
310
+ end
311
+ save
312
+ end
313
+
314
+ end
315
+
316
+ r = Mysql2Swivel.new config
317
+
318
+ if ARGV.blank?
319
+ r.main_menu
320
+ elsif ARGV.first.downcase.starts_with?('-u')
321
+ r.update
322
+ else
323
+ puts 'run script with no options to setup datastreams'
324
+ puts 'use -update option to sync all previously setup datastreams'
325
+ end
326
+
327
+
328
+
329
+
330
+
331
+
332
+
333
+
data/bin/swivel CHANGED
@@ -32,10 +32,9 @@ Your API key is read from ~/.swivelrc:
32
32
  of your swivelrc file should look like this:
33
33
 
34
34
  --- !ruby/struct:Swivel2::Config
35
- site: https://x:<YOUR_API_KEY>@api.swivel.com
35
+ site: https://key:<YOUR_API_KEY>@api.swivel.com
36
36
  timeout_read: 500
37
37
  timeout_write: 1_000
38
- extra_params: { noviews: true }
39
38
  EOS
40
39
 
41
40
  EXAMPLES = <<-EOS
@@ -2,4 +2,3 @@
2
2
  site: https://api.swivel.com
3
3
  timeout_read: 500
4
4
  timeout_write: 1_000
5
- extra_params: { noviews: true }
metadata CHANGED
@@ -1,286 +1,265 @@
1
1
  --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.9.2
3
+ specification_version: 1
2
4
  name: swivel
3
5
  version: !ruby/object:Gem::Version
4
- version: 0.0.152
6
+ version: 0.0.155
7
+ date: 2008-01-20 00:00:00 -08:00
8
+ summary: Ruby interface to the Swivel API.
9
+ require_paths:
10
+ - lib
11
+ email: huned@swivel.com
12
+ homepage: http://www.swivel.com/developer
13
+ rubyforge_project:
14
+ description: This gem installs client library for accessing Swivel through it's API.
15
+ autorequire:
16
+ default_executable:
17
+ bindir: bin
18
+ has_rdoc: true
19
+ required_ruby_version: !ruby/object:Gem::Version::Requirement
20
+ requirements:
21
+ - - ">"
22
+ - !ruby/object:Gem::Version
23
+ version: 0.0.0
24
+ version:
5
25
  platform: ruby
26
+ signing_key:
27
+ cert_chain:
28
+ post_install_message:
6
29
  authors:
7
30
  - huned
8
- autorequire:
9
- bindir: bin
10
- cert_chain: []
11
-
12
- date: 2008-01-17 00:00:00 -08:00
13
- default_executable:
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
16
- name: activerecord
17
- version_requirement:
18
- version_requirements: !ruby/object:Gem::Requirement
19
- requirements:
20
- - - ">="
21
- - !ruby/object:Gem::Version
22
- version: "0"
23
- version:
24
- - !ruby/object:Gem::Dependency
25
- name: activesupport
26
- version_requirement:
27
- version_requirements: !ruby/object:Gem::Requirement
28
- requirements:
29
- - - ">="
30
- - !ruby/object:Gem::Version
31
- version: 1.4.0
32
- version:
33
- - !ruby/object:Gem::Dependency
34
- name: cobravsmongoose
35
- version_requirement:
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ">="
39
- - !ruby/object:Gem::Version
40
- version: "0"
41
- version:
42
- description: This gem installs client library for accessing Swivel through it's API.
43
- email: huned@swivel.com
44
- executables:
45
- - swivel
46
- extensions: []
47
-
48
- extra_rdoc_files:
49
- - README
50
- - CHANGELOG
51
- - COPYING
52
31
  files:
53
32
  - COPYING
54
33
  - README
55
34
  - Rakefile
56
35
  - lib/swivel.rb
36
+ - lib/swivel2.rb
57
37
  - lib/swivel2
38
+ - lib/swivel2/logging.rb
58
39
  - lib/swivel2/benchmarking.rb
59
40
  - lib/swivel2/config.rb
60
- - lib/swivel2/connection.rb
41
+ - lib/swivel2/swivelrc.default
61
42
  - lib/swivel2/formats.rb
62
- - lib/swivel2/logging.rb
63
43
  - lib/swivel2/performance.rb
64
44
  - lib/swivel2/response.rb
65
- - lib/swivel2/swivelrc.default
66
- - lib/swivel2.rb
45
+ - lib/swivel2/connection.rb
46
+ - bin/mysql2swivel
67
47
  - bin/swivel
68
48
  - vendor/activeresource-2.0.2-
49
+ - vendor/activeresource-2.0.2-/README
50
+ - vendor/activeresource-2.0.2-/Rakefile
69
51
  - vendor/activeresource-2.0.2-/CHANGELOG
70
52
  - vendor/activeresource-2.0.2-/lib
71
53
  - vendor/activeresource-2.0.2-/lib/active_resource
72
- - vendor/activeresource-2.0.2-/lib/active_resource/base.rb
73
- - vendor/activeresource-2.0.2-/lib/active_resource/connection.rb
74
- - vendor/activeresource-2.0.2-/lib/active_resource/custom_methods.rb
54
+ - vendor/activeresource-2.0.2-/lib/active_resource/http_mock.rb
75
55
  - vendor/activeresource-2.0.2-/lib/active_resource/formats
76
- - vendor/activeresource-2.0.2-/lib/active_resource/formats/json_format.rb
77
56
  - vendor/activeresource-2.0.2-/lib/active_resource/formats/xml_format.rb
57
+ - vendor/activeresource-2.0.2-/lib/active_resource/formats/json_format.rb
58
+ - vendor/activeresource-2.0.2-/lib/active_resource/custom_methods.rb
78
59
  - vendor/activeresource-2.0.2-/lib/active_resource/formats.rb
79
- - vendor/activeresource-2.0.2-/lib/active_resource/http_mock.rb
80
- - vendor/activeresource-2.0.2-/lib/active_resource/validations.rb
60
+ - vendor/activeresource-2.0.2-/lib/active_resource/connection.rb
61
+ - vendor/activeresource-2.0.2-/lib/active_resource/base.rb
81
62
  - vendor/activeresource-2.0.2-/lib/active_resource/version.rb
82
- - vendor/activeresource-2.0.2-/lib/active_resource.rb
63
+ - vendor/activeresource-2.0.2-/lib/active_resource/validations.rb
83
64
  - vendor/activeresource-2.0.2-/lib/activeresource.rb
84
- - vendor/activeresource-2.0.2-/Rakefile
85
- - vendor/activeresource-2.0.2-/README
65
+ - vendor/activeresource-2.0.2-/lib/active_resource.rb
86
66
  - vendor/activeresource-2.0.2-/test
87
- - vendor/activeresource-2.0.2-/test/abstract_unit.rb
88
- - vendor/activeresource-2.0.2-/test/authorization_test.rb
89
67
  - vendor/activeresource-2.0.2-/test/base
90
68
  - vendor/activeresource-2.0.2-/test/base/custom_methods_test.rb
91
- - vendor/activeresource-2.0.2-/test/base/equality_test.rb
92
69
  - vendor/activeresource-2.0.2-/test/base/load_test.rb
70
+ - vendor/activeresource-2.0.2-/test/base/equality_test.rb
93
71
  - vendor/activeresource-2.0.2-/test/base_errors_test.rb
94
- - vendor/activeresource-2.0.2-/test/base_test.rb
72
+ - vendor/activeresource-2.0.2-/test/abstract_unit.rb
95
73
  - vendor/activeresource-2.0.2-/test/connection_test.rb
96
74
  - vendor/activeresource-2.0.2-/test/fixtures
97
75
  - vendor/activeresource-2.0.2-/test/fixtures/beast.rb
98
76
  - vendor/activeresource-2.0.2-/test/fixtures/person.rb
99
77
  - vendor/activeresource-2.0.2-/test/fixtures/street_address.rb
78
+ - vendor/activeresource-2.0.2-/test/base_test.rb
100
79
  - vendor/activeresource-2.0.2-/test/format_test.rb
80
+ - vendor/activeresource-2.0.2-/test/authorization_test.rb
101
81
  - vendor/activeresource-2.0.2-/test/setter_trap.rb
102
82
  - vendor/activesupport-2.0.2-
83
+ - vendor/activesupport-2.0.2-/README
103
84
  - vendor/activesupport-2.0.2-/CHANGELOG
104
85
  - vendor/activesupport-2.0.2-/lib
86
+ - vendor/activesupport-2.0.2-/lib/activesupport.rb
105
87
  - vendor/activesupport-2.0.2-/lib/active_support
106
- - vendor/activesupport-2.0.2-/lib/active_support/basic_object.rb
88
+ - vendor/activesupport-2.0.2-/lib/active_support/duration.rb
89
+ - vendor/activesupport-2.0.2-/lib/active_support/inflector.rb
90
+ - vendor/activesupport-2.0.2-/lib/active_support/values
91
+ - vendor/activesupport-2.0.2-/lib/active_support/values/time_zone.rb
92
+ - vendor/activesupport-2.0.2-/lib/active_support/values/unicode_tables.dat
93
+ - vendor/activesupport-2.0.2-/lib/active_support/testing
94
+ - vendor/activesupport-2.0.2-/lib/active_support/testing/default.rb
95
+ - vendor/activesupport-2.0.2-/lib/active_support/json
96
+ - vendor/activesupport-2.0.2-/lib/active_support/json/decoding.rb
97
+ - vendor/activesupport-2.0.2-/lib/active_support/json/variable.rb
98
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders
99
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/enumerable.rb
100
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/true_class.rb
101
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/nil_class.rb
102
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/regexp.rb
103
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/hash.rb
104
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/false_class.rb
105
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/string.rb
106
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/symbol.rb
107
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/time.rb
108
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/numeric.rb
109
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/object.rb
110
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/date.rb
111
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/date_time.rb
112
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoding.rb
107
113
  - vendor/activesupport-2.0.2-/lib/active_support/buffered_logger.rb
108
- - vendor/activesupport-2.0.2-/lib/active_support/clean_logger.rb
114
+ - vendor/activesupport-2.0.2-/lib/active_support/option_merger.rb
115
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext.rb
116
+ - vendor/activesupport-2.0.2-/lib/active_support/deprecation.rb
117
+ - vendor/activesupport-2.0.2-/lib/active_support/json.rb
118
+ - vendor/activesupport-2.0.2-/lib/active_support/ordered_options.rb
119
+ - vendor/activesupport-2.0.2-/lib/active_support/inflections.rb
120
+ - vendor/activesupport-2.0.2-/lib/active_support/dependencies.rb
121
+ - vendor/activesupport-2.0.2-/lib/active_support/test_case.rb
122
+ - vendor/activesupport-2.0.2-/lib/active_support/basic_object.rb
123
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor
124
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/xml-simple-1.0.11
125
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/xml-simple-1.0.11/xmlsimple.rb
126
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2
127
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder
128
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb
129
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder/css.rb
130
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb
131
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb
132
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb
133
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb
134
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder.rb
135
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/blankslate.rb
109
136
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext
110
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/array
111
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/array/access.rb
112
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/array/conversions.rb
113
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/array/extract_options.rb
114
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/array/grouping.rb
115
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/array/random_access.rb
116
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/array.rb
117
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/bigdecimal
118
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/bigdecimal/conversions.rb
119
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/bigdecimal.rb
120
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/blank.rb
121
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/cgi
122
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb
123
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/cgi.rb
124
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/class
125
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/class/attribute_accessors.rb
126
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/class/delegating_attributes.rb
127
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/class/inheritable_attributes.rb
128
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/class/removal.rb
129
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/class.rb
130
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date
131
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date/behavior.rb
132
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date/calculations.rb
133
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date/conversions.rb
134
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date.rb
135
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date_time
136
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date_time/calculations.rb
137
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date_time/conversions.rb
138
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date_time.rb
139
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/duplicable.rb
140
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/enumerable.rb
141
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/exception.rb
142
137
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/file.rb
143
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/float
144
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/float/rounding.rb
145
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/float.rb
146
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash
147
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash/conversions.rb
148
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash/diff.rb
149
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash/except.rb
150
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash/indifferent_access.rb
151
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash/keys.rb
152
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash/reverse_merge.rb
153
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash/slice.rb
154
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash.rb
155
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/integer
156
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/integer/even_odd.rb
157
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/integer/inflections.rb
158
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/integer.rb
159
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel
160
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/agnostics.rb
161
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/daemonizing.rb
162
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/debugger.rb
163
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/reporting.rb
164
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/requires.rb
165
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel.rb
166
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/load_error.rb
167
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/logger.rb
138
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/enumerable.rb
168
139
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module
169
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/aliasing.rb
170
140
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/attr_accessor_with_default.rb
171
141
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/attr_internal.rb
172
142
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/attribute_accessors.rb
173
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/delegation.rb
174
143
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/inclusion.rb
144
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/delegation.rb
175
145
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/introspection.rb
176
146
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/loading.rb
177
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module.rb
178
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/name_error.rb
179
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/numeric
180
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/numeric/bytes.rb
181
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/numeric/time.rb
182
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/numeric.rb
147
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/aliasing.rb
148
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/test.rb
149
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date_time
150
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date_time/conversions.rb
151
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date_time/calculations.rb
152
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/bigdecimal.rb
183
153
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/object
184
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/object/conversions.rb
185
154
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/object/extending.rb
186
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/object/instance_variables.rb
155
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/object/conversions.rb
187
156
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/object/misc.rb
188
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/object.rb
189
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/pathname
190
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/pathname/clean_within.rb
157
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/object/instance_variables.rb
158
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/integer
159
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/integer/inflections.rb
160
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/integer/even_odd.rb
161
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/class.rb
162
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/logger.rb
163
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/name_error.rb
164
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date
165
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date/conversions.rb
166
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date/calculations.rb
167
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date/behavior.rb
168
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/class
169
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/class/inheritable_attributes.rb
170
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/class/delegating_attributes.rb
171
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/class/attribute_accessors.rb
172
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/class/removal.rb
173
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash
174
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash/except.rb
175
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash/reverse_merge.rb
176
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash/conversions.rb
177
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash/diff.rb
178
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash/slice.rb
179
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash/keys.rb
180
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash/indifferent_access.rb
181
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/load_error.rb
182
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/cgi
183
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb
184
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash.rb
191
185
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/pathname.rb
192
186
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/proc.rb
193
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/range
194
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/range/blockless_step.rb
195
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/range/conversions.rb
196
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/range/include_range.rb
197
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/range/overlaps.rb
198
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/range.rb
199
187
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string
200
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string/access.rb
201
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string/conversions.rb
202
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string/inflections.rb
203
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string/iterators.rb
204
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string/starts_ends_with.rb
205
188
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string/unicode.rb
189
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string/starts_ends_with.rb
206
190
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string/xchar.rb
191
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string/conversions.rb
192
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string/iterators.rb
193
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string/access.rb
194
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string/inflections.rb
207
195
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string.rb
196
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/array
197
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/array/grouping.rb
198
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/array/conversions.rb
199
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/array/extract_options.rb
200
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/array/access.rb
201
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/array/random_access.rb
202
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module.rb
203
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel.rb
204
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/exception.rb
205
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/range.rb
206
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/float.rb
207
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/integer.rb
208
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/numeric
209
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/numeric/bytes.rb
210
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/numeric/time.rb
211
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/bigdecimal
212
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/bigdecimal/conversions.rb
208
213
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/symbol.rb
209
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/test
210
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/test/unit
211
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/test/unit/assertions.rb
212
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/test.rb
213
214
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/time
214
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/time/behavior.rb
215
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/time/calculations.rb
216
215
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/time/conversions.rb
216
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/time/calculations.rb
217
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/time/behavior.rb
217
218
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/time.rb
218
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext.rb
219
- - vendor/activesupport-2.0.2-/lib/active_support/dependencies.rb
220
- - vendor/activesupport-2.0.2-/lib/active_support/deprecation.rb
221
- - vendor/activesupport-2.0.2-/lib/active_support/duration.rb
222
- - vendor/activesupport-2.0.2-/lib/active_support/inflections.rb
223
- - vendor/activesupport-2.0.2-/lib/active_support/inflector.rb
224
- - vendor/activesupport-2.0.2-/lib/active_support/json
225
- - vendor/activesupport-2.0.2-/lib/active_support/json/decoding.rb
226
- - vendor/activesupport-2.0.2-/lib/active_support/json/encoders
227
- - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/date.rb
228
- - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/date_time.rb
229
- - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/enumerable.rb
230
- - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/false_class.rb
231
- - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/hash.rb
232
- - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/nil_class.rb
233
- - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/numeric.rb
234
- - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/object.rb
235
- - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/regexp.rb
236
- - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/string.rb
237
- - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/symbol.rb
238
- - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/time.rb
239
- - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/true_class.rb
240
- - vendor/activesupport-2.0.2-/lib/active_support/json/encoding.rb
241
- - vendor/activesupport-2.0.2-/lib/active_support/json/variable.rb
242
- - vendor/activesupport-2.0.2-/lib/active_support/json.rb
219
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/numeric.rb
220
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/cgi.rb
221
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/object.rb
222
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date.rb
223
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel
224
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/debugger.rb
225
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/daemonizing.rb
226
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/reporting.rb
227
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/agnostics.rb
228
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/requires.rb
229
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date_time.rb
230
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/pathname
231
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/pathname/clean_within.rb
232
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/blank.rb
233
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/test
234
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/test/unit
235
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/test/unit/assertions.rb
236
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/range
237
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/range/include_range.rb
238
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/range/overlaps.rb
239
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/range/conversions.rb
240
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/range/blockless_step.rb
241
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/float
242
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/float/rounding.rb
243
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/array.rb
244
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/duplicable.rb
245
+ - vendor/activesupport-2.0.2-/lib/active_support/version.rb
246
+ - vendor/activesupport-2.0.2-/lib/active_support/multibyte.rb
247
+ - vendor/activesupport-2.0.2-/lib/active_support/clean_logger.rb
248
+ - vendor/activesupport-2.0.2-/lib/active_support/whiny_nil.rb
249
+ - vendor/activesupport-2.0.2-/lib/active_support/testing.rb
243
250
  - vendor/activesupport-2.0.2-/lib/active_support/multibyte
244
- - vendor/activesupport-2.0.2-/lib/active_support/multibyte/chars.rb
245
- - vendor/activesupport-2.0.2-/lib/active_support/multibyte/generators
246
- - vendor/activesupport-2.0.2-/lib/active_support/multibyte/generators/generate_tables.rb
247
251
  - vendor/activesupport-2.0.2-/lib/active_support/multibyte/handlers
248
252
  - vendor/activesupport-2.0.2-/lib/active_support/multibyte/handlers/passthru_handler.rb
249
253
  - vendor/activesupport-2.0.2-/lib/active_support/multibyte/handlers/utf8_handler.rb
250
254
  - vendor/activesupport-2.0.2-/lib/active_support/multibyte/handlers/utf8_handler_proc.rb
251
- - vendor/activesupport-2.0.2-/lib/active_support/multibyte.rb
252
- - vendor/activesupport-2.0.2-/lib/active_support/option_merger.rb
253
- - vendor/activesupport-2.0.2-/lib/active_support/ordered_options.rb
254
- - vendor/activesupport-2.0.2-/lib/active_support/test_case.rb
255
- - vendor/activesupport-2.0.2-/lib/active_support/testing
256
- - vendor/activesupport-2.0.2-/lib/active_support/testing/default.rb
257
- - vendor/activesupport-2.0.2-/lib/active_support/testing.rb
258
- - vendor/activesupport-2.0.2-/lib/active_support/values
259
- - vendor/activesupport-2.0.2-/lib/active_support/values/time_zone.rb
260
- - vendor/activesupport-2.0.2-/lib/active_support/values/unicode_tables.dat
261
- - vendor/activesupport-2.0.2-/lib/active_support/vendor
262
- - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2
263
- - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/blankslate.rb
264
- - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder
265
- - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb
266
- - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder/css.rb
267
- - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb
268
- - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb
269
- - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb
270
- - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb
271
- - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder.rb
272
- - vendor/activesupport-2.0.2-/lib/active_support/vendor/xml-simple-1.0.11
273
- - vendor/activesupport-2.0.2-/lib/active_support/vendor/xml-simple-1.0.11/xmlsimple.rb
255
+ - vendor/activesupport-2.0.2-/lib/active_support/multibyte/generators
256
+ - vendor/activesupport-2.0.2-/lib/active_support/multibyte/generators/generate_tables.rb
257
+ - vendor/activesupport-2.0.2-/lib/active_support/multibyte/chars.rb
274
258
  - vendor/activesupport-2.0.2-/lib/active_support/vendor.rb
275
- - vendor/activesupport-2.0.2-/lib/active_support/version.rb
276
- - vendor/activesupport-2.0.2-/lib/active_support/whiny_nil.rb
277
259
  - vendor/activesupport-2.0.2-/lib/active_support.rb
278
- - vendor/activesupport-2.0.2-/lib/activesupport.rb
279
- - vendor/activesupport-2.0.2-/README
280
260
  - CHANGELOG
281
- has_rdoc: true
282
- homepage: http://www.swivel.com/developer
283
- post_install_message:
261
+ test_files: []
262
+
284
263
  rdoc_options:
285
264
  - --line-numbers
286
265
  - --title
@@ -288,26 +267,42 @@ rdoc_options:
288
267
  - --main
289
268
  - README
290
269
  - --inline-source
291
- require_paths:
292
- - lib
293
- required_ruby_version: !ruby/object:Gem::Requirement
294
- requirements:
295
- - - ">="
296
- - !ruby/object:Gem::Version
297
- version: "0"
298
- version:
299
- required_rubygems_version: !ruby/object:Gem::Requirement
300
- requirements:
301
- - - ">="
302
- - !ruby/object:Gem::Version
303
- version: "0"
304
- version:
305
- requirements: []
270
+ extra_rdoc_files:
271
+ - README
272
+ - CHANGELOG
273
+ - COPYING
274
+ executables:
275
+ - swivel
276
+ - mysql2swivel
277
+ extensions: []
306
278
 
307
- rubyforge_project:
308
- rubygems_version: 1.0.1
309
- signing_key:
310
- specification_version: 2
311
- summary: Ruby interface to the Swivel API.
312
- test_files: []
279
+ requirements: []
313
280
 
281
+ dependencies:
282
+ - !ruby/object:Gem::Dependency
283
+ name: activerecord
284
+ version_requirement:
285
+ version_requirements: !ruby/object:Gem::Version::Requirement
286
+ requirements:
287
+ - - ">="
288
+ - !ruby/object:Gem::Version
289
+ version: 1.15.5
290
+ version:
291
+ - !ruby/object:Gem::Dependency
292
+ name: activesupport
293
+ version_requirement:
294
+ version_requirements: !ruby/object:Gem::Version::Requirement
295
+ requirements:
296
+ - - ">="
297
+ - !ruby/object:Gem::Version
298
+ version: 1.4.4
299
+ version:
300
+ - !ruby/object:Gem::Dependency
301
+ name: cobravsmongoose
302
+ version_requirement:
303
+ version_requirements: !ruby/object:Gem::Version::Requirement
304
+ requirements:
305
+ - - ">"
306
+ - !ruby/object:Gem::Version
307
+ version: 0.0.0
308
+ version: