rubberband 0.0.2

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.
metadata ADDED
@@ -0,0 +1,136 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubberband
3
+ version: !ruby/object:Gem::Version
4
+ hash: 27
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 2
10
+ version: 0.0.2
11
+ platform: ruby
12
+ authors:
13
+ - grantr
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-06-18 00:00:00 -07:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: patron
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ hash: 3
30
+ segments:
31
+ - 0
32
+ version: "0"
33
+ type: :runtime
34
+ version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: yajl-ruby
37
+ prerelease: false
38
+ requirement: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ hash: 3
44
+ segments:
45
+ - 0
46
+ version: "0"
47
+ type: :runtime
48
+ version_requirements: *id002
49
+ - !ruby/object:Gem::Dependency
50
+ name: shoulda
51
+ prerelease: false
52
+ requirement: &id003 !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ hash: 3
58
+ segments:
59
+ - 0
60
+ version: "0"
61
+ type: :development
62
+ version_requirements: *id003
63
+ description: An ElasticSearch Client with ThriftClient-like failover handling.
64
+ email: grantr@gmail.com
65
+ executables: []
66
+
67
+ extensions: []
68
+
69
+ extra_rdoc_files:
70
+ - LICENSE
71
+ - README.rdoc
72
+ files:
73
+ - .gitignore
74
+ - LICENSE
75
+ - README.rdoc
76
+ - Rakefile
77
+ - TODO
78
+ - VERSION
79
+ - lib/elasticsearch.rb
80
+ - lib/elasticsearch/client.rb
81
+ - lib/elasticsearch/client/abstract_client.rb
82
+ - lib/elasticsearch/client/admin_cluster.rb
83
+ - lib/elasticsearch/client/admin_index.rb
84
+ - lib/elasticsearch/client/auto_discovering_client.rb
85
+ - lib/elasticsearch/client/default_scope.rb
86
+ - lib/elasticsearch/client/hits.rb
87
+ - lib/elasticsearch/client/index.rb
88
+ - lib/elasticsearch/client/retrying_client.rb
89
+ - lib/elasticsearch/encoding.rb
90
+ - lib/elasticsearch/encoding/base.rb
91
+ - lib/elasticsearch/encoding/json.rb
92
+ - lib/elasticsearch/transport.rb
93
+ - lib/elasticsearch/transport/base.rb
94
+ - lib/elasticsearch/transport/base_protocol.rb
95
+ - lib/elasticsearch/transport/http.rb
96
+ - test/elasticsearch_test.rb
97
+ - test/test_helper.rb
98
+ - test/hits_test.rb
99
+ has_rdoc: true
100
+ homepage: http://github.com/grantr/rubberband
101
+ licenses: []
102
+
103
+ post_install_message:
104
+ rdoc_options:
105
+ - --charset=UTF-8
106
+ require_paths:
107
+ - lib
108
+ required_ruby_version: !ruby/object:Gem::Requirement
109
+ none: false
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ hash: 3
114
+ segments:
115
+ - 0
116
+ version: "0"
117
+ required_rubygems_version: !ruby/object:Gem::Requirement
118
+ none: false
119
+ requirements:
120
+ - - ">="
121
+ - !ruby/object:Gem::Version
122
+ hash: 3
123
+ segments:
124
+ - 0
125
+ version: "0"
126
+ requirements: []
127
+
128
+ rubyforge_project:
129
+ rubygems_version: 1.3.7
130
+ signing_key:
131
+ specification_version: 3
132
+ summary: An ElasticSearch client.
133
+ test_files:
134
+ - test/elasticsearch_test.rb
135
+ - test/test_helper.rb
136
+ - test/hits_test.rb