raykit 0.0.469 → 0.0.471

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 281588be0c6c3cdb7a1800b47eff7cd62bb1c74b15b2ec9322e752672d45733f
4
- data.tar.gz: 0716bab9794eadb1c17a5c088a8a1969ca8a11b1a509b448c180883f9baea56c
3
+ metadata.gz: 7b88979df590ba358ddae8b93bbd4dc8572d2836ebb2358b72a418e246e2f004
4
+ data.tar.gz: 6fc07389a3a430ab2cb0de5fe3a9d37a51169d825e9f6f67099da0dd37bee720
5
5
  SHA512:
6
- metadata.gz: 4d9d43f6624b6e1580f5bae3538a8176fb829fa52b59f9d3fe36515bcd473d0523dab3a942d6e73c18074db08a1ae84e14648a693919ffaad40c76c47b4a3f31
7
- data.tar.gz: a8303f59bb6ca0adf6ef11aaea7fe5a5fc12920d674704eddd1ba5f7c8839851fe982cab7ce041a4467dfef256cc0f3316b0a575dcf53f5f40ca901fd7fa1a60
6
+ metadata.gz: 03e15b9cfb17f4d115429a79056497c5e330ad665d890ccea79f2410f5c98ba13776d042bccbc1a6bc03b2d85ad9d9fc1503db7f9921f44fe9f5bb53decea347
7
+ data.tar.gz: b33b940446edf15a13efa7dacd03b27c62923f6aebe1653287d04c9fdc365d80478e0bc9835504ebc9a4b24fcfdce4fc0575ac91dc404f275004076c844dfd3d
data/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2019 Louis Parslow
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2019 Louis Parslow
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -1,21 +1,21 @@
1
- # raykit
2
-
3
- ruby gem supporting rake ci/cd tasks
4
-
5
- ## raykit console application
6
-
7
- # TODO
8
- - consider using https://github.com/tj/terminal-table to display name value pairs
9
-
10
- ```secrets.txt
11
- {"test":"abc123XYZ"}
12
- ```
13
-
14
- ```ruby
15
- ENV['RAYKIT_SECRETS_PATH'] = SOME_VALID_FILENAME
16
- if (SECRETS.has_key?("test"))
17
- puts "found SECRETS[\"test\"]"
18
- else
19
- puts "did not find SECRETS[\"test\"]"
20
- end
1
+ # raykit
2
+
3
+ ruby gem supporting rake ci/cd tasks
4
+
5
+ ## raykit console application
6
+
7
+ # TODO
8
+ - consider using https://github.com/tj/terminal-table to display name value pairs
9
+
10
+ ```secrets.txt
11
+ {"test":"abc123XYZ"}
12
+ ```
13
+
14
+ ```ruby
15
+ ENV['RAYKIT_SECRETS_PATH'] = SOME_VALID_FILENAME
16
+ if (SECRETS.has_key?("test"))
17
+ puts "found SECRETS[\"test\"]"
18
+ else
19
+ puts "did not find SECRETS[\"test\"]"
20
+ end
21
21
  ```
data/bin/raykit CHANGED
@@ -1,6 +1,6 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- require_relative '../lib/raykit'
5
- console = Raykit::Console.new
6
- console.run
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require_relative '../lib/raykit'
5
+ console = Raykit::Console.new
6
+ console.run