clowder-common-ruby 0.2.6 → 0.2.8
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/bin/bump_version +9 -0
- data/bin/schema.json +1 -1
- data/lib/clowder-common-ruby/version.rb +1 -1
- metadata +8 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 327fd0920abf084c7289527fa3d9e98eeb8ccb15bc11251e86d85468c234f804
|
|
4
|
+
data.tar.gz: 454f639a092d6c835d1579f72b33e4dac82ecfa2ae4878b4949be508afa0af3f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9acccd0a8be9c9bb6b74dcb3ae04c66adf53ddf0186a2d2fa45c82774b272615d05672e952c9d2e82bad9a2a066d7bd1786df85399a961ef40b24bddffe737aa
|
|
7
|
+
data.tar.gz: bc0f1cbf3c2c15853b708340a273ee649220c625d5947fbff06a2603412e25f335e6c8ea42edf280e35ee1894d0c72f28ec253bb0e39793dd80776e64072a4f6
|
data/bin/bump_version
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
text = File.read('../lib/clowder-common-ruby/version.rb')
|
|
4
|
+
|
|
5
|
+
patch = text.sub(/^.*'\d+\.\d+\.(\d+)'.*$/m, '\1').to_i
|
|
6
|
+
|
|
7
|
+
File.open('../lib/clowder-common-ruby/version.rb', 'w') do |f|
|
|
8
|
+
f.write text.sub(/^(.*'\d+\.\d+\.)\d+('.*)$/m, "\\1#{patch + 1}\\2")
|
|
9
|
+
end
|
data/bin/schema.json
CHANGED
metadata
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: clowder-common-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Red Hat Developers
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-06-
|
|
11
|
+
date: 2023-06-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: This is a ruby interface for preparing Clowder variables.
|
|
14
|
-
email:
|
|
14
|
+
email:
|
|
15
15
|
executables: []
|
|
16
16
|
extensions: []
|
|
17
17
|
extra_rdoc_files: []
|
|
@@ -19,6 +19,7 @@ files:
|
|
|
19
19
|
- LICENSE.txt
|
|
20
20
|
- README.md
|
|
21
21
|
- Rakefile
|
|
22
|
+
- bin/bump_version
|
|
22
23
|
- bin/json_schema_ruby
|
|
23
24
|
- bin/ruby_class_converter.rb
|
|
24
25
|
- bin/schema.json
|
|
@@ -33,7 +34,7 @@ homepage: https://github.com/RedHatInsights/clowder-common-ruby
|
|
|
33
34
|
licenses:
|
|
34
35
|
- Apache-2.0
|
|
35
36
|
metadata: {}
|
|
36
|
-
post_install_message:
|
|
37
|
+
post_install_message:
|
|
37
38
|
rdoc_options: []
|
|
38
39
|
require_paths:
|
|
39
40
|
- lib
|
|
@@ -48,8 +49,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
48
49
|
- !ruby/object:Gem::Version
|
|
49
50
|
version: '0'
|
|
50
51
|
requirements: []
|
|
51
|
-
rubygems_version: 3.3.
|
|
52
|
-
signing_key:
|
|
52
|
+
rubygems_version: 3.3.5
|
|
53
|
+
signing_key:
|
|
53
54
|
specification_version: 4
|
|
54
55
|
summary: Supporting files and libraries for Clowder environmental variables.
|
|
55
56
|
test_files: []
|