groonga-client 0.2.4 → 0.2.5

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2b1885f3554371b67c5bdfb5c202e99fd2f404f9
4
- data.tar.gz: 7cbb87785cbb6cbf1f784e27b36ff745e8c6e69c
3
+ metadata.gz: 2d5741b1b6164b64e7182714c95af93da3b9ff9c
4
+ data.tar.gz: 3fbba89037ca39c830e91e9c0b3a067a1001ea5a
5
5
  SHA512:
6
- metadata.gz: 7744d0525093563cac5be688917b8dcbcec1ce6cd066ee1ce2f4a98fc1709b765d34cae51c8b9b1ccf387e5a6ac8cb52aa66028c0cda05e946ee2d503d39cafa
7
- data.tar.gz: 11943d92e58bc77fc10d0962623502524b5bf4838cf91d1615d299fccc402f1b5462085413b1e45875b6bcc37ab2002a00621d2ebce88e5731417c88618b2855
6
+ metadata.gz: 4db4ee9f1ee50a06dee0f93e48783dd9d831e11de89be558f071475adcb02dafbc4a770f6b136585bde797655446cbf2f831bbabdb27d13f4fbea736a63a3215
7
+ data.tar.gz: 6e0bd4b40e1967f45f0f3070f006a23178fa81aee66fe8b18227f41d2936a2a71eacffecebd23a2a6cecf2653c1f5694e05bd43b282d981bffa3e9450aaf72b3
data/doc/text/news.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # NEWS
2
2
 
3
+ ## 0.2.5 - 2016-04-02
4
+
5
+ ### Fixes
6
+
7
+ * Fixed a bug that URL can't be specified by `String`.
8
+ [GitHub#9][Reported by KITAITI Makoto]
9
+
10
+ ### Thanks
11
+
12
+ * KITAITI Makoto
13
+
3
14
  ## 0.2.4 - 2016-03-28
4
15
 
5
16
  ### Improvements
@@ -90,7 +90,7 @@ module Groonga
90
90
  def initialize(options={})
91
91
  options = self.class.default_options.merge(options)
92
92
  url = options[:url] || build_url(options)
93
- url = URL.parse(url) unless url.is_a?(URI::Generic)
93
+ url = URI.parse(url) unless url.is_a?(URI::Generic)
94
94
  options[:url] = url
95
95
  options[:read_timeout] ||= Default::READ_TIMEOUT
96
96
 
@@ -16,6 +16,6 @@
16
16
 
17
17
  module Groonga
18
18
  class Client
19
- VERSION = "0.2.4"
19
+ VERSION = "0.2.5"
20
20
  end
21
21
  end
data/test/test-client.rb CHANGED
@@ -56,7 +56,7 @@ class TestClient < Test::Unit::TestCase
56
56
  url << "@"
57
57
  end
58
58
  url << "#{@address}:#{@port}"
59
- {:url => URI.parse(url)}
59
+ {:url => url}
60
60
  end
61
61
 
62
62
  def open_client(&block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: groonga-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Haruka Yoshihara
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2016-03-27 00:00:00.000000000 Z
13
+ date: 2016-04-01 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: gqtp