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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1d6cee09a163fa437fa60d3bb047050ed3941cafc0ed14b8c92a3a7c3ae74fc7
4
- data.tar.gz: '07080bc6670a7efc38ab3994e6a50b15b6b6afee577512dc8e68a11fe2b3bdc9'
3
+ metadata.gz: bd2a0542d371ca654025865c5d259830cc7643f16e86f8c1a085ebe5d441a44c
4
+ data.tar.gz: 157624d0c5fd4abde6c4bdeded7cf47f911f51f2ab1bbbfe250bfe2236786cb4
5
5
  SHA512:
6
- metadata.gz: 77e84ebb13f94d20f8a4c492b91d35ac90d633b151838817f05b5af9902ca606014eec13100eec91cff83f2d3102fd3916f8098db08942ad4486c52d80545b98
7
- data.tar.gz: 8fae0696d8f630977664644c17002c0756c7df5b8e01fd98e0a4e62af6ce49138dccd1e2af1464b86e21eccc319360461b07130672926661e69ef192af171fda
6
+ metadata.gz: 890cdd52c8b15b0fbdb274c481832f6299ecfdde5a30930403c77b4879742575a5424d250323e88eba9f054b14caf137bf5c1065054479d03038c638e1f15c1b
7
+ data.tar.gz: 7deb725799b3d77c6518f619be8765f8f1a8ec6b8c0757a59daa82462ce98a3d0b4f2a1ca5d721e3ee42a6a95e98df6ccf64a9d03562963f218b5fa2b875fafa
data/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
- # -*- mode: ruby; coding: utf-8 -*-
1
+ # -*- ruby -*-
2
2
  #
3
- # Copyright (C) 2012 Kouhei Sutou <kou@clear-code.com>
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
@@ -1,7 +1,6 @@
1
1
  # README
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/groonga-command.svg)](http://badge.fury.io/rb/groonga-command)
4
- [![Build Status](https://travis-ci.org/groonga/groonga-command.svg?branch=master)](https://travis-ci.org/groonga/groonga-command)
5
4
 
6
5
  ## Name
7
6
 
data/Rakefile CHANGED
@@ -1,6 +1,6 @@
1
- # -*- mode: ruby; coding: utf-8 -*-
1
+ # -*- ruby -*-
2
2
  #
3
- # Copyright (C) 2012 Kouhei Sutou <kou@clear-code.com>
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,5 +1,11 @@
1
1
  # News
2
2
 
3
+ ## 1.5.4: 2026-06-15
4
+
5
+ ### Improvements
6
+
7
+ * Changed to use `cgi/escape` instead of `cgi`.
8
+
3
9
  ## 1.5.3: 2023-11-07
4
10
 
5
11
  ### Improvements
@@ -1,6 +1,4 @@
1
- # -*- coding: utf-8 -*-
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-2021 Sutou Kouhei <kou@clear-code.com>
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.3"
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-2023 Sutou Kouhei <kou@clear-code.com>
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.3
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: 2023-11-07 00:00:00.000000000 Z
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: 3.5.0.dev
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.