clowder-common-ruby 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +202 -0
- data/README.md +63 -0
- data/Rakefile +8 -0
- data/bin/json_schema_ruby +32 -0
- data/bin/ruby_class_converter.rb +103 -0
- data/bin/schema.json +401 -0
- data/lib/clowder-common-ruby.rb +6 -0
- data/lib/clowder-common-ruby/config.rb +87 -0
- data/lib/clowder-common-ruby/schema.json +401 -0
- data/lib/clowder-common-ruby/test.rb +11 -0
- data/lib/clowder-common-ruby/types.rb +348 -0
- data/lib/clowder-common-ruby/version.rb +3 -0
- data/sync_config.sh +4 -0
- data/test.json +86 -0
- metadata +19 -5
metadata
CHANGED
@@ -1,24 +1,38 @@
|
|
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.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Red Hat Developers
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-03-
|
11
|
+
date: 2021-03-05 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: This is a ruby interface for preparing Clowder variables.
|
14
14
|
email:
|
15
15
|
executables: []
|
16
16
|
extensions: []
|
17
17
|
extra_rdoc_files: []
|
18
|
-
files:
|
18
|
+
files:
|
19
|
+
- LICENSE.txt
|
20
|
+
- README.md
|
21
|
+
- Rakefile
|
22
|
+
- bin/json_schema_ruby
|
23
|
+
- bin/ruby_class_converter.rb
|
24
|
+
- bin/schema.json
|
25
|
+
- lib/clowder-common-ruby.rb
|
26
|
+
- lib/clowder-common-ruby/config.rb
|
27
|
+
- lib/clowder-common-ruby/schema.json
|
28
|
+
- lib/clowder-common-ruby/test.rb
|
29
|
+
- lib/clowder-common-ruby/types.rb
|
30
|
+
- lib/clowder-common-ruby/version.rb
|
31
|
+
- sync_config.sh
|
32
|
+
- test.json
|
19
33
|
homepage: https://github.com/RedHatInsights/clowder-common-ruby
|
20
34
|
licenses:
|
21
|
-
-
|
35
|
+
- Apache-2.0
|
22
36
|
metadata: {}
|
23
37
|
post_install_message:
|
24
38
|
rdoc_options: []
|