groonga-command 1.5.3 → 1.5.4
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 +4 -4
- data/Gemfile +4 -2
- data/README.md +0 -1
- data/Rakefile +12 -2
- data/doc/text/news.md +6 -0
- data/lib/groonga/command/format/uri.rb +2 -4
- data/lib/groonga/command/version.rb +2 -2
- data/test/run-test.rb +1 -3
- metadata +3 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bd2a0542d371ca654025865c5d259830cc7643f16e86f8c1a085ebe5d441a44c
|
|
4
|
+
data.tar.gz: 157624d0c5fd4abde6c4bdeded7cf47f911f51f2ab1bbbfe250bfe2236786cb4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 890cdd52c8b15b0fbdb274c481832f6299ecfdde5a30930403c77b4879742575a5424d250323e88eba9f054b14caf137bf5c1065054479d03038c638e1f15c1b
|
|
7
|
+
data.tar.gz: 7deb725799b3d77c6518f619be8765f8f1a8ec6b8c0757a59daa82462ce98a3d0b4f2a1ca5d721e3ee42a6a95e98df6ccf64a9d03562963f218b5fa2b875fafa
|
data/Gemfile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# -*-
|
|
1
|
+
# -*- ruby -*-
|
|
2
2
|
#
|
|
3
|
-
# Copyright (C) 2012 Kouhei
|
|
3
|
+
# Copyright (C) 2012-2025 Sutou Kouhei <kou@clear-code.com>
|
|
4
4
|
#
|
|
5
5
|
# This library is free software; you can redistribute it and/or
|
|
6
6
|
# modify it under the terms of the GNU Lesser General Public
|
|
@@ -18,4 +18,6 @@
|
|
|
18
18
|
|
|
19
19
|
source "https://rubygems.org/"
|
|
20
20
|
|
|
21
|
+
plugin "rubygems-requirements-system"
|
|
22
|
+
|
|
21
23
|
gemspec
|
data/README.md
CHANGED
data/Rakefile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# -*-
|
|
1
|
+
# -*- ruby -*-
|
|
2
2
|
#
|
|
3
|
-
# Copyright (C) 2012 Kouhei
|
|
3
|
+
# Copyright (C) 2012-2026 Sutou Kouhei <kou@clear-code.com>
|
|
4
4
|
#
|
|
5
5
|
# This library is free software; you can redistribute it and/or
|
|
6
6
|
# modify it under the terms of the GNU Lesser General Public
|
|
@@ -43,3 +43,13 @@ desc "Run tests"
|
|
|
43
43
|
task :test do
|
|
44
44
|
ruby("test/run-test.rb")
|
|
45
45
|
end
|
|
46
|
+
|
|
47
|
+
release_task = Rake.application["release"]
|
|
48
|
+
# We use Trusting Publishing
|
|
49
|
+
release_task.prerequisites.delete("build")
|
|
50
|
+
release_task.prerequisites.delete("release:rubygem_push")
|
|
51
|
+
release_task_comment = release_task.comment
|
|
52
|
+
if release_task_comment
|
|
53
|
+
release_task.clear_comments
|
|
54
|
+
release_task.comment = release_task_comment.gsub(/ and build.*$/, "")
|
|
55
|
+
end
|
data/doc/text/news.md
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
#
|
|
2
|
-
#
|
|
3
|
-
# Copyright (C) 2012-2014 Kouhei Sutou <kou@clear-code.com>
|
|
1
|
+
# Copyright (C) 2012-2025 Sutou Kouhei <kou@clear-code.com>
|
|
4
2
|
#
|
|
5
3
|
# This library is free software; you can redistribute it and/or
|
|
6
4
|
# modify it under the terms of the GNU Lesser General Public
|
|
@@ -16,7 +14,7 @@
|
|
|
16
14
|
# License along with this library; if not, write to the Free Software
|
|
17
15
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
18
16
|
|
|
19
|
-
require "cgi"
|
|
17
|
+
require "cgi/escape"
|
|
20
18
|
|
|
21
19
|
module Groonga
|
|
22
20
|
module Command
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (C) 2012-
|
|
1
|
+
# Copyright (C) 2012-2023 Sutou Kouhei <kou@clear-code.com>
|
|
2
2
|
#
|
|
3
3
|
# This library is free software; you can redistribute it and/or
|
|
4
4
|
# modify it under the terms of the GNU Lesser General Public
|
|
@@ -16,6 +16,6 @@
|
|
|
16
16
|
|
|
17
17
|
module Groonga
|
|
18
18
|
module Command
|
|
19
|
-
VERSION = "1.5.
|
|
19
|
+
VERSION = "1.5.4"
|
|
20
20
|
end
|
|
21
21
|
end
|
data/test/run-test.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
#
|
|
3
|
-
# Copyright (C) 2012-
|
|
3
|
+
# Copyright (C) 2012-2025 Sutou Kouhei <kou@clear-code.com>
|
|
4
4
|
#
|
|
5
5
|
# This library is free software; you can redistribute it and/or
|
|
6
6
|
# modify it under the terms of the GNU Lesser General Public
|
|
@@ -18,8 +18,6 @@
|
|
|
18
18
|
|
|
19
19
|
$VERBOSE = true
|
|
20
20
|
|
|
21
|
-
$KCODE = "u" if RUBY_VERSION < "1.9"
|
|
22
|
-
|
|
23
21
|
base_dir = File.expand_path(File.join(File.dirname(__FILE__), ".."))
|
|
24
22
|
lib_dir = File.join(base_dir, "lib")
|
|
25
23
|
test_dir = File.join(base_dir, "test")
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: groonga-command
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kouhei Sutou
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: json
|
|
@@ -266,7 +265,6 @@ homepage: https://github.com/groonga/groonga-command
|
|
|
266
265
|
licenses:
|
|
267
266
|
- LGPLv2.1+
|
|
268
267
|
metadata: {}
|
|
269
|
-
post_install_message:
|
|
270
268
|
rdoc_options: []
|
|
271
269
|
require_paths:
|
|
272
270
|
- lib
|
|
@@ -281,8 +279,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
281
279
|
- !ruby/object:Gem::Version
|
|
282
280
|
version: '0'
|
|
283
281
|
requirements: []
|
|
284
|
-
rubygems_version:
|
|
285
|
-
signing_key:
|
|
282
|
+
rubygems_version: 4.0.10
|
|
286
283
|
specification_version: 4
|
|
287
284
|
summary: Groonga-command is a library that represents [Groonga](http://groonga.org/)'s
|
|
288
285
|
command. You can write a program that handle Groonga's command by using groonga-command.
|