groonga-client 0.2.9 → 0.3.0

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: f1c371756008f81224ef703f8d37842a9d3ba961
4
- data.tar.gz: 6e7fb7f6af96552eb16cf092d681833c56799d7f
3
+ metadata.gz: ead7ebcefb79d2fa14ab98a8481e95a08d1214d7
4
+ data.tar.gz: afa29f5195d878858292ca79bed04f0906bb9d13
5
5
  SHA512:
6
- metadata.gz: 749fe1c69be9771f0120276c8aae80b66dadf39ec0366341adf94417378cdf2dcba9947d85ae57a83b77b3d0ef78cdc0873b887cec09681200c0b3fbfc7f990c
7
- data.tar.gz: 7d43f9e5f5b365c693347ad33233c51a3b902cfe778c3542419fbbc0ddc271c47f42b80fe7bf397844b0333e6bb9519b2d773142d32883b5f0db4e964a566756
6
+ metadata.gz: 4028a80ed0ecfc077431759597448916ebcb466ee33459b65715c12b16232af2d433ca3eb6cd9b4cb2c3ed61f3b389c87d9f09257608e53d2d1f40c8aa7732ba
7
+ data.tar.gz: 7727a9f72615a2e7c92df84755dc79ba05ecf0014b7ca2b20fda40b699cc2c912f4f9954edee9cca7d47f1bc84d318979eb8427a365ffcdb994b40b98d65ae0a
data/doc/text/news.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # NEWS
2
2
 
3
+ ## 0.3.0 - 2016-10-05
4
+
5
+ ### Fixes
6
+
7
+ * `Groonga::Client#select`: Accepted string and symbol as parameter
8
+ key at once again.
9
+
3
10
  ## 0.2.9 - 2016-10-05
4
11
 
5
12
  ### Fixes
@@ -16,6 +16,6 @@
16
16
 
17
17
  module Groonga
18
18
  class Client
19
- VERSION = "0.2.9"
19
+ VERSION = "0.3.0"
20
20
  end
21
21
  end
@@ -176,13 +176,9 @@ module Groonga
176
176
  execute_command(command, &block)
177
177
  end
178
178
 
179
- def method_missing(name, *args, **kwargs, &block)
179
+ def method_missing(name, *args, &block)
180
180
  if groonga_command_name?(name)
181
- if kwargs.empty?
182
- execute(name, *args, &block)
183
- else
184
- execute(name, *args, **kwargs, &block)
185
- end
181
+ execute(name, *args, &block)
186
182
  else
187
183
  super
188
184
  end
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.9
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Haruka Yoshihara