raykit 0.0.471 → 0.0.472

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: 7b88979df590ba358ddae8b93bbd4dc8572d2836ebb2358b72a418e246e2f004
4
- data.tar.gz: 6fc07389a3a430ab2cb0de5fe3a9d37a51169d825e9f6f67099da0dd37bee720
3
+ metadata.gz: b8eae11fa047e9a2c4e8ffb8f4747188a12ff092e125ac29575353eeae0d7d8d
4
+ data.tar.gz: b3a52938228565f35c47db569462a7296ea95019a34dcd94fe6a05e671eb754a
5
5
  SHA512:
6
- metadata.gz: 03e15b9cfb17f4d115429a79056497c5e330ad665d890ccea79f2410f5c98ba13776d042bccbc1a6bc03b2d85ad9d9fc1503db7f9921f44fe9f5bb53decea347
7
- data.tar.gz: b33b940446edf15a13efa7dacd03b27c62923f6aebe1653287d04c9fdc365d80478e0bc9835504ebc9a4b24fcfdce4fc0575ac91dc404f275004076c844dfd3d
6
+ metadata.gz: 5fd18c68e0809c9f3073437433d962b58420eb061235a6b9e19c025e18831b03542f598f11fe684cb49cd71aad8189098312abd920ab75b28fd9ee774ef5a6e4
7
+ data.tar.gz: c64c91d04d0e1f5a680b1e1f28c030b00620fb56be89cdec2b68d0858480cf4be5e4c033535f19728cbf452e67e2d71b5d24f57ba5c9511c57e7a8524efc7bf6
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