groonga-command 1.1.9 → 1.2.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: ad888ef40e6e3d74f708e6cf2d5463e525d396e5
4
- data.tar.gz: e9bf057f10b8563db109d5bc1fadafbea062dc21
3
+ metadata.gz: 3bc3354b6043a870c3bc49882c7e32d903f64ca7
4
+ data.tar.gz: ea676c91a3247a77351a4d096f431617015dad75
5
5
  SHA512:
6
- metadata.gz: 10455004e66ce5628a0d1e46ed8a150eb68326caac5ec032f8570c444022edae87fa32d720fce26d256da883cfff607407dead975325a7017419b18402fc2b62
7
- data.tar.gz: d075be1ec3cd48914c12b2e1eb9865d89d6a8dc503cbd3852d4bded1136df64e3e3381aa55323790581951d3bd0a237f520031ca23f7dbfdff5e83fc2c725309
6
+ metadata.gz: 201bb9895bf600093ad3b71be43665cf584eb305aad5478ddd79345d724b1214b67f3c121b3a5f74a7d08652bf3c549bad9e9f64ba33ae96fec06356cdad6f55
7
+ data.tar.gz: 9fda5545e981d63ae3b60c8cbda7285ab52fcef4f3983b99777bedbc8dbb777673433e9ccdaf3133bbe31701427a252e56ad72572b480270cd65bf637c69515e
data/doc/text/news.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # News
2
2
 
3
+ ## 1.2.0: 2016-03-21
4
+
5
+ ### Improvements
6
+
7
+ * Suppressed a warning.
8
+
3
9
  ## 1.1.9: 2016-03-21
4
10
 
5
11
  ### Fixes
@@ -51,7 +51,11 @@ module Groonga
51
51
  end
52
52
  end
53
53
 
54
- attr_reader :command_name, :arguments
54
+ # @return [String] The command name.
55
+ #
56
+ # @since 1.1.8
57
+ attr_reader :command_name
58
+ attr_reader :arguments
55
59
  attr_accessor :original_format, :original_source, :path_prefix
56
60
  def initialize(command_name, pair_arguments, ordered_arguments=[])
57
61
  @command_name = command_name
@@ -66,13 +70,6 @@ module Groonga
66
70
  command_name
67
71
  end
68
72
 
69
- # @return [String] The command name.
70
- #
71
- # @since 1.1.8
72
- def command_name
73
- @command_name
74
- end
75
-
76
73
  def [](name)
77
74
  @arguments[normalize_name(name)]
78
75
  end
@@ -16,6 +16,6 @@
16
16
 
17
17
  module Groonga
18
18
  module Command
19
- VERSION = "1.1.9"
19
+ VERSION = "1.2.0"
20
20
  end
21
21
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: groonga-command
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.9
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou