swivel 0.0.156 → 0.0.157

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/bin/swivel +17 -10
  2. metadata +231 -224
data/bin/swivel CHANGED
@@ -26,15 +26,12 @@ EOS
26
26
 
27
27
  SWIVELRC = <<-EOS
28
28
 
29
- Your API key is read from ~/.swivelrc:
29
+ Your ~/.swivelrc file seems either to be missing or corrupt. Falling back to
30
+ defaults.
30
31
 
31
- You need a ~/.swivelrc file before you can use this program! The contents
32
- of your swivelrc file should look like this:
33
-
34
- --- !ruby/struct:Swivel2::Config
35
- site: https://key:<YOUR_API_KEY>@api.swivel.com
36
- timeout_read: 500
37
- timeout_write: 1_000
32
+ WARNING: Without an API key supplied in a .swivelrc file or by an explicit
33
+ command line argument, you will not be authorized to do much and will likely
34
+ see errors.
38
35
  EOS
39
36
 
40
37
  EXAMPLES = <<-EOS
@@ -56,8 +53,8 @@ config =
56
53
  begin
57
54
  Swivel2::Config.load
58
55
  rescue Errno::ENOENT
59
- puts SWIVELRC
60
- exit
56
+ warn SWIVELRC
57
+ Swivel2::Config.default
61
58
  end
62
59
 
63
60
  ARGV.options do |opts|
@@ -105,6 +102,16 @@ ARGV.options do |opts|
105
102
 
106
103
  opts.separator ''
107
104
 
105
+ opts.on '-k', '--key=<api key>', String,
106
+ 'Override the api key used.',
107
+ 'OPTIONAL' do |v|
108
+ site = URI.parse config.site
109
+ site.user, site.password = 'key', v
110
+ config.site = site.to_s
111
+ end
112
+
113
+ opts.separator ''
114
+
108
115
  opts.on_tail '-?', '--help',
109
116
  "Show this help message." do
110
117
  puts opts
metadata CHANGED
@@ -1,265 +1,288 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.2
3
- specification_version: 1
4
2
  name: swivel
5
3
  version: !ruby/object:Gem::Version
6
- version: 0.0.156
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:
4
+ version: 0.0.157
25
5
  platform: ruby
26
- signing_key:
27
- cert_chain:
28
- post_install_message:
29
6
  authors:
30
7
  - huned
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-01-21 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: 1.15.5
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.4
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
+ - mysql2swivel
47
+ extensions: []
48
+
49
+ extra_rdoc_files:
50
+ - README
51
+ - CHANGELOG
52
+ - COPYING
31
53
  files:
32
54
  - COPYING
33
55
  - README
34
56
  - Rakefile
35
57
  - lib/swivel.rb
36
- - lib/swivel2.rb
37
58
  - lib/swivel2
38
- - lib/swivel2/logging.rb
39
59
  - lib/swivel2/benchmarking.rb
40
60
  - lib/swivel2/config.rb
41
- - lib/swivel2/swivelrc.default
61
+ - lib/swivel2/connection.rb
42
62
  - lib/swivel2/formats.rb
63
+ - lib/swivel2/logging.rb
43
64
  - lib/swivel2/performance.rb
44
65
  - lib/swivel2/response.rb
45
- - lib/swivel2/connection.rb
66
+ - lib/swivel2/swivelrc.default
67
+ - lib/swivel2.rb
46
68
  - bin/mysql2swivel
47
69
  - bin/swivel
48
70
  - vendor/activeresource-2.0.2-
49
- - vendor/activeresource-2.0.2-/README
50
- - vendor/activeresource-2.0.2-/Rakefile
51
71
  - vendor/activeresource-2.0.2-/CHANGELOG
52
72
  - vendor/activeresource-2.0.2-/lib
53
73
  - vendor/activeresource-2.0.2-/lib/active_resource
54
- - vendor/activeresource-2.0.2-/lib/active_resource/http_mock.rb
74
+ - vendor/activeresource-2.0.2-/lib/active_resource/base.rb
75
+ - vendor/activeresource-2.0.2-/lib/active_resource/connection.rb
76
+ - vendor/activeresource-2.0.2-/lib/active_resource/custom_methods.rb
55
77
  - vendor/activeresource-2.0.2-/lib/active_resource/formats
56
- - vendor/activeresource-2.0.2-/lib/active_resource/formats/xml_format.rb
57
78
  - vendor/activeresource-2.0.2-/lib/active_resource/formats/json_format.rb
58
- - vendor/activeresource-2.0.2-/lib/active_resource/custom_methods.rb
79
+ - vendor/activeresource-2.0.2-/lib/active_resource/formats/xml_format.rb
59
80
  - vendor/activeresource-2.0.2-/lib/active_resource/formats.rb
60
- - vendor/activeresource-2.0.2-/lib/active_resource/connection.rb
61
- - vendor/activeresource-2.0.2-/lib/active_resource/base.rb
62
- - vendor/activeresource-2.0.2-/lib/active_resource/version.rb
81
+ - vendor/activeresource-2.0.2-/lib/active_resource/http_mock.rb
63
82
  - vendor/activeresource-2.0.2-/lib/active_resource/validations.rb
64
- - vendor/activeresource-2.0.2-/lib/activeresource.rb
83
+ - vendor/activeresource-2.0.2-/lib/active_resource/version.rb
65
84
  - vendor/activeresource-2.0.2-/lib/active_resource.rb
85
+ - vendor/activeresource-2.0.2-/lib/activeresource.rb
86
+ - vendor/activeresource-2.0.2-/Rakefile
87
+ - vendor/activeresource-2.0.2-/README
66
88
  - vendor/activeresource-2.0.2-/test
89
+ - vendor/activeresource-2.0.2-/test/abstract_unit.rb
90
+ - vendor/activeresource-2.0.2-/test/authorization_test.rb
67
91
  - vendor/activeresource-2.0.2-/test/base
68
92
  - vendor/activeresource-2.0.2-/test/base/custom_methods_test.rb
69
- - vendor/activeresource-2.0.2-/test/base/load_test.rb
70
93
  - vendor/activeresource-2.0.2-/test/base/equality_test.rb
94
+ - vendor/activeresource-2.0.2-/test/base/load_test.rb
71
95
  - vendor/activeresource-2.0.2-/test/base_errors_test.rb
72
- - vendor/activeresource-2.0.2-/test/abstract_unit.rb
96
+ - vendor/activeresource-2.0.2-/test/base_test.rb
73
97
  - vendor/activeresource-2.0.2-/test/connection_test.rb
74
98
  - vendor/activeresource-2.0.2-/test/fixtures
75
99
  - vendor/activeresource-2.0.2-/test/fixtures/beast.rb
76
100
  - vendor/activeresource-2.0.2-/test/fixtures/person.rb
77
101
  - vendor/activeresource-2.0.2-/test/fixtures/street_address.rb
78
- - vendor/activeresource-2.0.2-/test/base_test.rb
79
102
  - vendor/activeresource-2.0.2-/test/format_test.rb
80
- - vendor/activeresource-2.0.2-/test/authorization_test.rb
81
103
  - vendor/activeresource-2.0.2-/test/setter_trap.rb
82
104
  - vendor/activesupport-2.0.2-
83
- - vendor/activesupport-2.0.2-/README
84
105
  - vendor/activesupport-2.0.2-/CHANGELOG
85
106
  - vendor/activesupport-2.0.2-/lib
86
- - vendor/activesupport-2.0.2-/lib/activesupport.rb
87
107
  - vendor/activesupport-2.0.2-/lib/active_support
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
113
- - vendor/activesupport-2.0.2-/lib/active_support/buffered_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
108
  - 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
+ - vendor/activesupport-2.0.2-/lib/active_support/buffered_logger.rb
110
+ - vendor/activesupport-2.0.2-/lib/active_support/clean_logger.rb
136
111
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext
137
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/file.rb
112
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/array
113
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/array/access.rb
114
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/array/conversions.rb
115
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/array/extract_options.rb
116
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/array/grouping.rb
117
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/array/random_access.rb
118
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/array.rb
119
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/bigdecimal
120
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/bigdecimal/conversions.rb
121
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/bigdecimal.rb
122
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/blank.rb
123
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/cgi
124
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb
125
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/cgi.rb
126
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/class
127
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/class/attribute_accessors.rb
128
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/class/delegating_attributes.rb
129
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/class/inheritable_attributes.rb
130
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/class/removal.rb
131
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/class.rb
132
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date
133
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date/behavior.rb
134
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date/calculations.rb
135
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date/conversions.rb
136
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date.rb
137
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date_time
138
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date_time/calculations.rb
139
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date_time/conversions.rb
140
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/date_time.rb
141
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/duplicable.rb
138
142
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/enumerable.rb
143
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/exception.rb
144
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/file.rb
145
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/float
146
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/float/rounding.rb
147
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/float.rb
148
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash
149
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash/conversions.rb
150
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash/diff.rb
151
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash/except.rb
152
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash/indifferent_access.rb
153
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash/keys.rb
154
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash/reverse_merge.rb
155
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash/slice.rb
156
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/hash.rb
157
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/integer
158
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/integer/even_odd.rb
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.rb
161
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel
162
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/agnostics.rb
163
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/daemonizing.rb
164
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/debugger.rb
165
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/reporting.rb
166
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/requires.rb
167
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel.rb
168
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/load_error.rb
169
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/logger.rb
139
170
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module
171
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/aliasing.rb
140
172
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/attr_accessor_with_default.rb
141
173
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/attr_internal.rb
142
174
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/attribute_accessors.rb
143
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/inclusion.rb
144
175
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/delegation.rb
176
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/inclusion.rb
145
177
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/introspection.rb
146
178
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/loading.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
179
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/module.rb
180
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/name_error.rb
181
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/numeric
182
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/numeric/bytes.rb
183
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/numeric/time.rb
184
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/numeric.rb
153
185
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/object
154
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/object/extending.rb
155
186
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/object/conversions.rb
156
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/object/misc.rb
187
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/object/extending.rb
157
188
  - 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
189
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/object/misc.rb
190
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/object.rb
191
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/pathname
192
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/pathname/clean_within.rb
185
193
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/pathname.rb
186
194
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/proc.rb
195
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/range
196
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/range/blockless_step.rb
197
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/range/conversions.rb
198
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/range/include_range.rb
199
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/range/overlaps.rb
200
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/range.rb
187
201
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string
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
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
202
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string/access.rb
203
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string/conversions.rb
194
204
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string/inflections.rb
205
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string/iterators.rb
206
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string/starts_ends_with.rb
207
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string/unicode.rb
208
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/string/xchar.rb
195
209
  - 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
213
210
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/symbol.rb
214
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/time
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
218
- - vendor/activesupport-2.0.2-/lib/active_support/core_ext/time.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
211
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/test
234
212
  - vendor/activesupport-2.0.2-/lib/active_support/core_ext/test/unit
235
213
  - 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
214
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/test.rb
215
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/time
216
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/time/behavior.rb
217
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/time/calculations.rb
218
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/time/conversions.rb
219
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext/time.rb
220
+ - vendor/activesupport-2.0.2-/lib/active_support/core_ext.rb
221
+ - vendor/activesupport-2.0.2-/lib/active_support/dependencies.rb
222
+ - vendor/activesupport-2.0.2-/lib/active_support/deprecation.rb
223
+ - vendor/activesupport-2.0.2-/lib/active_support/duration.rb
224
+ - vendor/activesupport-2.0.2-/lib/active_support/inflections.rb
225
+ - vendor/activesupport-2.0.2-/lib/active_support/inflector.rb
226
+ - vendor/activesupport-2.0.2-/lib/active_support/json
227
+ - vendor/activesupport-2.0.2-/lib/active_support/json/decoding.rb
228
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders
229
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/date.rb
230
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/date_time.rb
231
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/enumerable.rb
232
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/false_class.rb
233
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/hash.rb
234
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/nil_class.rb
235
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/numeric.rb
236
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/object.rb
237
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/regexp.rb
238
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/string.rb
239
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/symbol.rb
240
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/time.rb
241
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoders/true_class.rb
242
+ - vendor/activesupport-2.0.2-/lib/active_support/json/encoding.rb
243
+ - vendor/activesupport-2.0.2-/lib/active_support/json/variable.rb
244
+ - vendor/activesupport-2.0.2-/lib/active_support/json.rb
250
245
  - vendor/activesupport-2.0.2-/lib/active_support/multibyte
246
+ - vendor/activesupport-2.0.2-/lib/active_support/multibyte/chars.rb
247
+ - vendor/activesupport-2.0.2-/lib/active_support/multibyte/generators
248
+ - vendor/activesupport-2.0.2-/lib/active_support/multibyte/generators/generate_tables.rb
251
249
  - vendor/activesupport-2.0.2-/lib/active_support/multibyte/handlers
252
250
  - vendor/activesupport-2.0.2-/lib/active_support/multibyte/handlers/passthru_handler.rb
253
251
  - vendor/activesupport-2.0.2-/lib/active_support/multibyte/handlers/utf8_handler.rb
254
252
  - vendor/activesupport-2.0.2-/lib/active_support/multibyte/handlers/utf8_handler_proc.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
253
+ - vendor/activesupport-2.0.2-/lib/active_support/multibyte.rb
254
+ - vendor/activesupport-2.0.2-/lib/active_support/option_merger.rb
255
+ - vendor/activesupport-2.0.2-/lib/active_support/ordered_options.rb
256
+ - vendor/activesupport-2.0.2-/lib/active_support/test_case.rb
257
+ - vendor/activesupport-2.0.2-/lib/active_support/testing
258
+ - vendor/activesupport-2.0.2-/lib/active_support/testing/default.rb
259
+ - vendor/activesupport-2.0.2-/lib/active_support/testing.rb
260
+ - vendor/activesupport-2.0.2-/lib/active_support/values
261
+ - vendor/activesupport-2.0.2-/lib/active_support/values/time_zone.rb
262
+ - vendor/activesupport-2.0.2-/lib/active_support/values/unicode_tables.dat
263
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor
264
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2
265
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/blankslate.rb
266
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder
267
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb
268
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder/css.rb
269
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb
270
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb
271
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb
272
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb
273
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/builder-2.1.2/builder.rb
274
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/xml-simple-1.0.11
275
+ - vendor/activesupport-2.0.2-/lib/active_support/vendor/xml-simple-1.0.11/xmlsimple.rb
258
276
  - vendor/activesupport-2.0.2-/lib/active_support/vendor.rb
277
+ - vendor/activesupport-2.0.2-/lib/active_support/version.rb
278
+ - vendor/activesupport-2.0.2-/lib/active_support/whiny_nil.rb
259
279
  - vendor/activesupport-2.0.2-/lib/active_support.rb
280
+ - vendor/activesupport-2.0.2-/lib/activesupport.rb
281
+ - vendor/activesupport-2.0.2-/README
260
282
  - CHANGELOG
261
- test_files: []
262
-
283
+ has_rdoc: true
284
+ homepage: http://www.swivel.com/developer
285
+ post_install_message:
263
286
  rdoc_options:
264
287
  - --line-numbers
265
288
  - --title
@@ -267,42 +290,26 @@ rdoc_options:
267
290
  - --main
268
291
  - README
269
292
  - --inline-source
270
- extra_rdoc_files:
271
- - README
272
- - CHANGELOG
273
- - COPYING
274
- executables:
275
- - swivel
276
- - mysql2swivel
277
- extensions: []
278
-
293
+ require_paths:
294
+ - lib
295
+ required_ruby_version: !ruby/object:Gem::Requirement
296
+ requirements:
297
+ - - ">="
298
+ - !ruby/object:Gem::Version
299
+ version: "0"
300
+ version:
301
+ required_rubygems_version: !ruby/object:Gem::Requirement
302
+ requirements:
303
+ - - ">="
304
+ - !ruby/object:Gem::Version
305
+ version: "0"
306
+ version:
279
307
  requirements: []
280
308
 
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:
309
+ rubyforge_project:
310
+ rubygems_version: 1.0.1
311
+ signing_key:
312
+ specification_version: 2
313
+ summary: Ruby interface to the Swivel API.
314
+ test_files: []
315
+