raykit 0.0.467 → 0.0.468

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: 94d9581ef2501fed5272d88e4d6f0bccca2f0f60115b14e6361a9f8ab6cbc003
4
- data.tar.gz: 50e852da3b6081e98d9126cfc469a096d8188af863d4e91d5da58a60bfb6ca76
3
+ metadata.gz: ada348dbb3d7e03c616609130036a7ea47f6a6b7098073ca7fcb89c72fbd87ae
4
+ data.tar.gz: f31985daf247a7872dd22e8574bd864911bb22f4829816562c838ed4fe6a4a44
5
5
  SHA512:
6
- metadata.gz: 72d2d26a518a6a3f6a39a508829e5b791e287a120a223bdc65a50ea2d68a5b35c2b748ba2ffc092264e7cc62b00f4c79016582cdb0805582058306b3a2f1f404
7
- data.tar.gz: cde8a90ea4203319dee26599923f684a8840162e3ee63185cb9c091a4aa4b679dff022a8d3aafd811d4713896dfe0fa065045be454969111535c1dcffc15620d
6
+ metadata.gz: 5e7bf3db5b69f11d8c234c2296b39da64b093be9a6173b86c4649b2510f92d7c595e540a052fde9924eecca96a767c1ee35d27cb3e2dddacc14405fad13b885d
7
+ data.tar.gz: 40065e697fbe3b415d87e59f9e3122a4e7b7990a79b270e97c2ca3ad52bc8d16e4d9d0f7239920eb4f3774635cc5b4130f3c3bf86ade9abb04585c8e92f698c5
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