solr4r 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solr4r
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jens Wille
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-12-14 00:00:00.000000000 Z
11
+ date: 2016-03-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -44,28 +44,28 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '2.9'
47
+ version: '3.0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '2.9'
54
+ version: '3.0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: webmock
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '1.22'
61
+ version: '1.24'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '1.22'
68
+ version: '1.24'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: hen
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -129,14 +129,16 @@ files:
129
129
  - Rakefile
130
130
  - TODO
131
131
  - lib/solr4r.rb
132
+ - lib/solr4r/batch.rb
132
133
  - lib/solr4r/builder.rb
133
134
  - lib/solr4r/client.rb
134
- - lib/solr4r/client/admin.rb
135
- - lib/solr4r/client/query.rb
136
- - lib/solr4r/client/update.rb
135
+ - lib/solr4r/client/admin_mixin.rb
136
+ - lib/solr4r/client/query_mixin.rb
137
+ - lib/solr4r/client/update_mixin.rb
137
138
  - lib/solr4r/document.rb
138
139
  - lib/solr4r/endpoints.rb
139
140
  - lib/solr4r/logging.rb
141
+ - lib/solr4r/query.rb
140
142
  - lib/solr4r/request.rb
141
143
  - lib/solr4r/response.rb
142
144
  - lib/solr4r/result.rb
@@ -161,15 +163,21 @@ licenses:
161
163
  metadata: {}
162
164
  post_install_message: |2+
163
165
 
164
- solr4r-0.2.0 [2015-12-14]:
166
+ solr4r-0.3.0 [2016-03-23]:
165
167
 
166
- * Updated Solr4R::Client::Query#more_like_this_q for Solr 5.4.0.
167
- * Adds support for boost option and excludes current document from results
168
- (SOLR-7912[https://issues.apache.org/jira/browse/SOLR-7912]).
168
+ * Extended Solr4R::Result for
169
+ debugging[https://wiki.apache.org/solr/CommonQueryParameters#Debugging].
170
+ * Extended Solr4R::Result for
171
+ highlighting[https://wiki.apache.org/solr/HighlightingParameters].
172
+ * Extended Solr4R::Result for
173
+ spellchecking[https://wiki.apache.org/solr/SpellCheckComponent].
174
+ * Added support for date-/time objects and ranges.
175
+ * Refactored Solr4R::Client, Solr4R::Builder, Solr4R::Document,
176
+ Solr4R::Result.
169
177
 
170
178
  rdoc_options:
171
179
  - "--title"
172
- - solr4r Application documentation (v0.2.0)
180
+ - solr4r Application documentation (v0.3.0)
173
181
  - "--charset"
174
182
  - UTF-8
175
183
  - "--line-numbers"
@@ -190,7 +198,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
190
198
  version: '0'
191
199
  requirements: []
192
200
  rubyforge_project:
193
- rubygems_version: 2.5.1
201
+ rubygems_version: 2.6.2
194
202
  signing_key:
195
203
  specification_version: 4
196
204
  summary: A Ruby client for Apache Solr.