opensearch-ruby-cli 1.0.0 → 1.0.1
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/CHANGELOG.md +8 -0
- data/Gemfile +4 -1
- data/lib/opensearch/cli.rb +3 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c6acccc740fc6a3db5bef766357ea9843cab323b2efb6b01c839b180d263e434
|
4
|
+
data.tar.gz: 7b20702bb334f826778a71698f2f930c06491884f4153a98bbe16f0f83fb3515
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 540abceed03f703e7a0af13347ff80a73d23ffa929cbc2925b9d3f3504d559c1b8f9502fda93b353e8dbaa3bd3859e0d4dc465f0fa06efeec000642becb1d22e
|
7
|
+
data.tar.gz: 5b15d4c5bd927e75b6ff45dd99b3ce5b642f93b624105e118792d768f54fc730b209affb242f2403ddc88599dbadd9db8835f9f379d97761a378d98339f345e6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [v1.0.1](https://github.com/opus-codium/opensearch-ruby-cli/tree/v1.0.1) (2025-03-20)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/opus-codium/opensearch-ruby-cli/compare/v1.0.0...v1.0.1)
|
6
|
+
|
7
|
+
**Fixed bugs:**
|
8
|
+
|
9
|
+
- Fix missing requirement for uri [\#3](https://github.com/opus-codium/opensearch-ruby-cli/pull/3) ([smortex](https://github.com/smortex))
|
10
|
+
|
3
11
|
## [v1.0.0](https://github.com/opus-codium/opensearch-ruby-cli/tree/v1.0.0) (2024-04-10)
|
4
12
|
|
5
13
|
[Full Changelog](https://github.com/opus-codium/opensearch-ruby-cli/compare/db66419f41d79ec468150c416a7929e5e0c9c4ee...v1.0.0)
|
data/Gemfile
CHANGED
@@ -14,5 +14,8 @@ gem "rspec", "~> 3.0"
|
|
14
14
|
gem "standard", "~> 1.3"
|
15
15
|
|
16
16
|
group :development do
|
17
|
-
gem
|
17
|
+
# FIXME: Relax this version when the stardand gem can cope with empty collection annotations
|
18
|
+
# https://github.com/soutaro/steep/pull/1338
|
19
|
+
# https://github.com/standardrb/standard/pull/656
|
20
|
+
gem "steep", "< 1.9.0", require: false
|
18
21
|
end
|
data/lib/opensearch/cli.rb
CHANGED
@@ -2,17 +2,18 @@
|
|
2
2
|
|
3
3
|
require "openssl"
|
4
4
|
require "optparse"
|
5
|
+
require "uri"
|
5
6
|
|
6
7
|
module OpenSearch
|
7
8
|
class CLI < OptionParser
|
8
|
-
VERSION = "1.0.
|
9
|
+
VERSION = "1.0.1"
|
9
10
|
|
10
11
|
def initialize(banner = nil, width = 32, indent = " " * 4, &block)
|
11
12
|
@opensearch_options = {
|
12
13
|
host: "https://localhost:9200",
|
13
14
|
transport_options: {ssl: {}}
|
14
15
|
}
|
15
|
-
super
|
16
|
+
super {}
|
16
17
|
|
17
18
|
add_opensearch_options
|
18
19
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opensearch-ruby-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Romain Tartière
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: opensearch-ruby
|