mwmitchell-rsolr 0.8.8 → 0.8.9

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES.txt CHANGED
@@ -1,3 +1,6 @@
1
+ 0.8.9 - June 30, 2009
2
+ Deprecated hash syntax fix from outoftime/rsolr (Mat Brown)
3
+
1
4
  0.8.8 - May 6, 2009
2
5
  Added method :request to RSolr::Connection
3
6
  - this method is an alias for send_request
@@ -136,7 +136,7 @@ module RSolr::HTTPClient
136
136
  def hash_to_params(params)
137
137
  return unless params.is_a?(Hash)
138
138
  # copy params and convert keys to strings
139
- params = params.inject({}){|acc,(k,v)| acc.merge({k.to_s, v}) }
139
+ params = params.inject({}){|acc,(k,v)| acc.merge(k.to_s => v) }
140
140
  # get sorted keys
141
141
  params.keys.sort.inject([]) do |acc,k|
142
142
  v = params[k]
@@ -160,4 +160,4 @@ module RSolr::HTTPClient
160
160
 
161
161
  end
162
162
 
163
- end
163
+ end
data/rsolr.gemspec CHANGED
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "rsolr"
3
- s.version = "0.8.8"
4
- s.date = "2009-05-06"
3
+ s.version = "0.8.9"
4
+ s.date = "2009-06-30"
5
5
  s.summary = "A Ruby client for Apache Solr"
6
6
  s.email = "goodieboy@gmail.com"
7
7
  s.homepage = "http://github.com/mwmitchell/rsolr"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mwmitchell-rsolr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.8
4
+ version: 0.8.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Mitchell
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-05-06 00:00:00 -07:00
12
+ date: 2009-06-30 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency