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 +4 -4
- data/doc/text/news.md +6 -0
- data/lib/groonga/command/base.rb +3 -3
- data/lib/groonga/command/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ad888ef40e6e3d74f708e6cf2d5463e525d396e5
|
4
|
+
data.tar.gz: e9bf057f10b8563db109d5bc1fadafbea062dc21
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10455004e66ce5628a0d1e46ed8a150eb68326caac5ec032f8570c444022edae87fa32d720fce26d256da883cfff607407dead975325a7017419b18402fc2b62
|
7
|
+
data.tar.gz: d075be1ec3cd48914c12b2e1eb9865d89d6a8dc503cbd3852d4bded1136df64e3e3381aa55323790581951d3bd0a237f520031ca23f7dbfdff5e83fc2c725309
|
data/doc/text/news.md
CHANGED
data/lib/groonga/command/base.rb
CHANGED
@@ -88,7 +88,7 @@ module Groonga
|
|
88
88
|
|
89
89
|
def ==(other)
|
90
90
|
other.is_a?(self.class) and
|
91
|
-
@
|
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, @
|
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(@
|
119
|
+
Format::Command.new(@command_name, normalized_arguments).command_line
|
120
120
|
end
|
121
121
|
|
122
122
|
private
|