raykit 0.0.483 → 0.0.484
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +21 -21
- data/README.md +20 -20
- data/bin/raykit +6 -6
- data/lib/raykit/auto_setup.rb +43 -43
- data/lib/raykit/command.rb +341 -341
- data/lib/raykit/conan/buildinfo.rb +69 -69
- data/lib/raykit/conanpackage.rb +49 -49
- data/lib/raykit/console.rb +272 -272
- data/lib/raykit/default_content.rb +227 -227
- data/lib/raykit/dir.rb +49 -49
- data/lib/raykit/dotnet.rb +176 -174
- data/lib/raykit/environment.rb +109 -109
- data/lib/raykit/filesystem.rb +34 -34
- data/lib/raykit/git/commit.rb +16 -16
- data/lib/raykit/git/directory.rb +216 -216
- data/lib/raykit/git/files.rb +46 -46
- data/lib/raykit/git/repositories.rb +89 -89
- data/lib/raykit/git/repository.rb +244 -244
- data/lib/raykit/installer.rb +17 -17
- data/lib/raykit/log.rb +80 -80
- data/lib/raykit/logevent.rb +49 -49
- data/lib/raykit/logging.rb +57 -57
- data/lib/raykit/markdown.rb +21 -21
- data/lib/raykit/msbuild.rb +54 -54
- data/lib/raykit/nugetpackage.rb +54 -54
- data/lib/raykit/nunit.rb +13 -13
- data/lib/raykit/project.rb +339 -339
- data/lib/raykit/rake.rb +39 -39
- data/lib/raykit/runner.rb +42 -42
- data/lib/raykit/secrets.rb +38 -38
- data/lib/raykit/sourceImport.rb +74 -74
- data/lib/raykit/sourceImports.rb +43 -43
- data/lib/raykit/string.rb +18 -18
- data/lib/raykit/tasks.rb +99 -99
- data/lib/raykit/text.rb +32 -32
- data/lib/raykit/timer.rb +31 -31
- data/lib/raykit/version.rb +103 -103
- data/lib/raykit/vstest.rb +24 -24
- data/lib/raykit/wt.rb +28 -28
- data/lib/raykit/zip.rb +73 -73
- data/lib/raykit.rb +125 -125
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee3118f9e939fe03a6dc5c4e3cebb59f60e4af68d1383e52b23455e77697a2aa
|
4
|
+
data.tar.gz: '069e1068168b325da271d6f74d4ea678d861bb5fd69159f4df06f20d213c672d'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fdabf34e72bf499e7e2988479df629330dc9608511760002923253760b66b01f8ca9228134ff513ae74e7f5a4fa7eec9fae0922588b8647a7dedc395a433391f
|
7
|
+
data.tar.gz: cc5a49526045f0987d8c63116f4065851c5c5a8a816a033c189c57259d1be7e22e4d676aacbd5ab83a4fd79beb6dbe9d6e3d2ece99ca9cf5965af29cf32893f8
|
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
|
data/lib/raykit/auto_setup.rb
CHANGED
@@ -1,43 +1,43 @@
|
|
1
|
-
module Raykit
|
2
|
-
class AutoSetup
|
3
|
-
def self.run
|
4
|
-
# Default subdirectories
|
5
|
-
DEFAULT_SUBDIRECTORIES.each do |subdirectory|
|
6
|
-
puts " RAYKIT_AUTO_SETUP: creating #{subdirectory}" unless Dir.exist?(subdirectory)
|
7
|
-
FileUtils.mkdir_p(subdirectory) unless Dir.exist?(subdirectory)
|
8
|
-
end
|
9
|
-
puts " RAYKIT_AUTO_SETUP: creating .gitignore" unless File.exist?(".gitignore")
|
10
|
-
|
11
|
-
# Default .gitignore
|
12
|
-
File.write(".gitignore", DEFAULT_GITIGNORE_CONTENT) unless File.exist?(".gitignore")
|
13
|
-
|
14
|
-
# C# class libs
|
15
|
-
if (defined?(RAYKIT_CSHARPCLASSLIBS))
|
16
|
-
RAYKIT_CSHARPCLASSLIBS.each do |csharpclasslib|
|
17
|
-
Raykit::DotNet::initialize_csharp_razorclasslib csharpclasslib
|
18
|
-
end
|
19
|
-
end
|
20
|
-
|
21
|
-
# Razor class libs
|
22
|
-
if (defined?(RAYKIT_RAZORCLASSLIBS))
|
23
|
-
RAYKIT_RAZORCLASSLIBS.each do |razorclasslib|
|
24
|
-
Raykit::DotNet::initialize_csharp_razorclasslib razorclasslib
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
28
|
-
# Blazor server apps
|
29
|
-
if (defined?(RAYKIT_BLAZORSERVERAPPS))
|
30
|
-
RAYKIT_BLAZORSERVERAPPS.each do |app|
|
31
|
-
Raykit::DotNet::initialize_csharp_blazorserver app
|
32
|
-
end
|
33
|
-
end
|
34
|
-
|
35
|
-
# Blazor server example apps
|
36
|
-
if (defined?(RAYKIT_BLAZORSERVER_EXAMPLE_APPS))
|
37
|
-
RAYKIT_BLAZORSERVER_EXAMPLE_APPS.each do |app|
|
38
|
-
Raykit::DotNet::initialize_csharp_blazorserver_example app
|
39
|
-
end
|
40
|
-
end
|
41
|
-
end
|
42
|
-
end # class AutoSetup
|
43
|
-
end # module Raykit
|
1
|
+
module Raykit
|
2
|
+
class AutoSetup
|
3
|
+
def self.run
|
4
|
+
# Default subdirectories
|
5
|
+
DEFAULT_SUBDIRECTORIES.each do |subdirectory|
|
6
|
+
puts " RAYKIT_AUTO_SETUP: creating #{subdirectory}" unless Dir.exist?(subdirectory)
|
7
|
+
FileUtils.mkdir_p(subdirectory) unless Dir.exist?(subdirectory)
|
8
|
+
end
|
9
|
+
puts " RAYKIT_AUTO_SETUP: creating .gitignore" unless File.exist?(".gitignore")
|
10
|
+
|
11
|
+
# Default .gitignore
|
12
|
+
File.write(".gitignore", DEFAULT_GITIGNORE_CONTENT) unless File.exist?(".gitignore")
|
13
|
+
|
14
|
+
# C# class libs
|
15
|
+
if (defined?(RAYKIT_CSHARPCLASSLIBS))
|
16
|
+
RAYKIT_CSHARPCLASSLIBS.each do |csharpclasslib|
|
17
|
+
Raykit::DotNet::initialize_csharp_razorclasslib csharpclasslib
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
# Razor class libs
|
22
|
+
if (defined?(RAYKIT_RAZORCLASSLIBS))
|
23
|
+
RAYKIT_RAZORCLASSLIBS.each do |razorclasslib|
|
24
|
+
Raykit::DotNet::initialize_csharp_razorclasslib razorclasslib
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
# Blazor server apps
|
29
|
+
if (defined?(RAYKIT_BLAZORSERVERAPPS))
|
30
|
+
RAYKIT_BLAZORSERVERAPPS.each do |app|
|
31
|
+
Raykit::DotNet::initialize_csharp_blazorserver app
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
# Blazor server example apps
|
36
|
+
if (defined?(RAYKIT_BLAZORSERVER_EXAMPLE_APPS))
|
37
|
+
RAYKIT_BLAZORSERVER_EXAMPLE_APPS.each do |app|
|
38
|
+
Raykit::DotNet::initialize_csharp_blazorserver_example app
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end # class AutoSetup
|
43
|
+
end # module Raykit
|