groonga-command 1.1.8 → 1.1.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d0c9670224dc3568111c60739250563fe465a10b
4
- data.tar.gz: 7897c976034a57a216e8a9282093f491f10a7583
3
+ metadata.gz: ad888ef40e6e3d74f708e6cf2d5463e525d396e5
4
+ data.tar.gz: e9bf057f10b8563db109d5bc1fadafbea062dc21
5
5
  SHA512:
6
- metadata.gz: ae6987f30293dbdd548e8757fd18ce1e1156105acbcad9fc35930a0ea6d8201a3c94813880c90e683d655aeb3ab39f7de3d1150d9ee2808eb7755072c9966ad2
7
- data.tar.gz: 1eeaf1457cdf569d1e02c54afca500465de66f880785b4822d054323c19f501565cf61c6766240502f5831f9f782180e171f912821ff1cb3f3779aa12ca7509c
6
+ metadata.gz: 10455004e66ce5628a0d1e46ed8a150eb68326caac5ec032f8570c444022edae87fa32d720fce26d256da883cfff607407dead975325a7017419b18402fc2b62
7
+ data.tar.gz: d075be1ec3cd48914c12b2e1eb9865d89d6a8dc503cbd3852d4bded1136df64e3e3381aa55323790581951d3bd0a237f520031ca23f7dbfdff5e83fc2c725309
data/doc/text/news.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # News
2
2
 
3
+ ## 1.1.9: 2016-03-21
4
+
5
+ ### Fixes
6
+
7
+ * Fixed a bug that correct command name isn't used.
8
+
3
9
  ## 1.1.8: 2016-03-21
4
10
 
5
11
  ### Improvements
@@ -88,7 +88,7 @@ module Groonga
88
88
 
89
89
  def ==(other)
90
90
  other.is_a?(self.class) and
91
- @name == other.name and
91
+ @command_name == other.name and
92
92
  @arguments == other.arguments
93
93
  end
94
94
 
@@ -112,11 +112,11 @@ module Groonga
112
112
  end
113
113
 
114
114
  def to_uri_format
115
- Format::URI.new(@path_prefix, @name, normalized_arguments).path
115
+ Format::URI.new(@path_prefix, @command_name, normalized_arguments).path
116
116
  end
117
117
 
118
118
  def to_command_format
119
- Format::Command.new(@name, normalized_arguments).command_line
119
+ Format::Command.new(@command_name, normalized_arguments).command_line
120
120
  end
121
121
 
122
122
  private
@@ -16,6 +16,6 @@
16
16
 
17
17
  module Groonga
18
18
  module Command
19
- VERSION = "1.1.8"
19
+ VERSION = "1.1.9"
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.8
4
+ version: 1.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou