makit 0.0.0 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/makit/apache.rb +32 -32
- data/lib/makit/cli/clean.rb +14 -14
- data/lib/makit/cli/clone.rb +59 -59
- data/lib/makit/cli/init.rb +38 -38
- data/lib/makit/cli/main.rb +33 -33
- data/lib/makit/cli/make.rb +54 -54
- data/lib/makit/cli/new.rb +37 -37
- data/lib/makit/cli/nuget_cache.rb +38 -38
- data/lib/makit/cli/pull.rb +31 -31
- data/lib/makit/cli/setup.rb +71 -71
- data/lib/makit/cli/work.rb +21 -21
- data/lib/makit/command_runner.rb +274 -237
- data/lib/makit/commands.rb +21 -21
- data/lib/makit/content/default_gitignore.rb +5 -5
- data/lib/makit/content/default_rakefile.rb +11 -11
- data/lib/makit/content/gem_rakefile.rb +14 -14
- data/lib/makit/data.rb +50 -50
- data/lib/makit/directories.rb +140 -140
- data/lib/makit/directory.rb +151 -120
- data/lib/makit/dotnet.rb +83 -16
- data/lib/makit/environment.rb +123 -123
- data/lib/makit/files.rb +47 -47
- data/lib/makit/git.rb +66 -66
- data/lib/makit/gitlab_runner.rb +60 -60
- data/lib/makit/humanize.rb +89 -89
- data/lib/makit/logging.rb +96 -96
- data/lib/makit/markdown.rb +75 -75
- data/lib/makit/mp/basic_object_mp.rb +16 -16
- data/lib/makit/mp/command_request.mp.rb +13 -0
- data/lib/makit/mp/project_mp.rb +156 -160
- data/lib/makit/mp/string_mp.rb +101 -101
- data/lib/makit/nuget.rb +57 -57
- data/lib/makit/protoc.rb +61 -61
- data/lib/makit/serializer.rb +115 -70
- data/lib/makit/storage.rb +131 -131
- data/lib/makit/symbols.rb +149 -149
- data/lib/makit/tasks.rb +67 -63
- data/lib/makit/tree.rb +37 -37
- data/lib/makit/v1/makit.v1_pb.rb +5 -5
- data/lib/makit/v1/makit.v1_services_pb.rb +25 -26
- data/lib/makit/version.rb +12 -12
- data/lib/makit/wix.rb +95 -92
- data/lib/makit/zip.rb +17 -17
- data/lib/makit.rb +243 -243
- metadata +8 -43
- data/.makit.project.json +0 -4
- data/.makit.project.yml +0 -2
- data/.rubocop.yml +0 -22
- data/.ruby-version +0 -1
- data/CHANGELOG.md +0 -8
- data/CODE_OF_CONDUCT.md +0 -84
- data/LICENSE +0 -21
- data/README.md +0 -119
- data/Rakefile +0 -190
- data/docs/Commands.md +0 -50
- data/docs_/Commands.md +0 -166
- data/docs_/Minitest.Timeouts.md +0 -332
- data/examples/protoc/Rakefile +0 -31
- data/examples/rake_default/Rakefile +0 -5
- data/examples/rubygem-foo/.gitkeep +0 -0
- data/examples/rubygem-foo/Rakefile +0 -3
- data/examples/run_mp/Rakefile +0 -8
- data/exe/makit +0 -5
- data/lib/makit/content/default_gitignore.txt +0 -222
- data/lib/makit/content/ruby_gitlab-ci.yml +0 -15
- data/lib/makit/v1/makit.v1.proto +0 -103
- data/makit.generated.sln +0 -30
- data/makit.sln +0 -69
- data/pages/.gitignore +0 -5
- data/pages/404.html +0 -25
- data/pages/Gemfile +0 -33
- data/pages/Gemfile.lock +0 -88
- data/pages/_config.yml +0 -55
- data/pages/_layouts/default.html +0 -1
- data/pages/_posts/2024-10-05-welcome-to-jekyll.markdown +0 -29
- data/pages/about.markdown +0 -18
- data/pages/index.markdown +0 -6
- data/sig/makit.rbs +0 -4
- data/src/ClassLib/Class1.cs +0 -6
- data/src/ClassLib/ClassLib.csproj +0 -13
data/lib/makit/v1/makit.v1.proto
DELETED
@@ -1,103 +0,0 @@
|
|
1
|
-
syntax = "proto3";
|
2
|
-
|
3
|
-
package makit.v1;
|
4
|
-
|
5
|
-
import "google/protobuf/timestamp.proto";
|
6
|
-
import "google/protobuf/duration.proto";
|
7
|
-
|
8
|
-
|
9
|
-
// docker run -p 9011:9011 -v /tmp/liget-set/:/data tomzo/liget:latest
|
10
|
-
|
11
|
-
enum Language {
|
12
|
-
RUBY = 0;
|
13
|
-
CSHARP = 1;
|
14
|
-
RUST = 2;
|
15
|
-
}
|
16
|
-
|
17
|
-
message DotNetProject{
|
18
|
-
string template = 1;
|
19
|
-
string name = 2;
|
20
|
-
string output = 3;
|
21
|
-
}
|
22
|
-
|
23
|
-
message Project {
|
24
|
-
string git_remote_url = 1;
|
25
|
-
string name = 2;
|
26
|
-
repeated DotNetProject dotnet_projects = 5;
|
27
|
-
}
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
enum PackageType{
|
32
|
-
GEM = 0;
|
33
|
-
NUGET = 1;
|
34
|
-
CRATE = 3;
|
35
|
-
}
|
36
|
-
|
37
|
-
message CommandRequest {
|
38
|
-
string name = 1;
|
39
|
-
repeated string arguments = 2;
|
40
|
-
google.protobuf.Timestamp timeout = 3;
|
41
|
-
string directory = 4;
|
42
|
-
string task = 5;
|
43
|
-
bytes input = 6;
|
44
|
-
bool exit_on_error = 7;
|
45
|
-
}
|
46
|
-
|
47
|
-
// Command represents a command to be executed on a device.
|
48
|
-
message Command {
|
49
|
-
int64 id = 1;
|
50
|
-
string name = 2;
|
51
|
-
repeated string arguments = 3;
|
52
|
-
int32 exit_code = 4;
|
53
|
-
bytes input = 5;
|
54
|
-
bytes output = 6;
|
55
|
-
bytes error = 7;
|
56
|
-
google.protobuf.Timestamp started_at = 8;
|
57
|
-
google.protobuf.Duration duration = 9;
|
58
|
-
string user = 10;
|
59
|
-
string device = 11;
|
60
|
-
string os = 12;
|
61
|
-
string directory = 13;
|
62
|
-
}
|
63
|
-
|
64
|
-
// Service to execute commands on devices.
|
65
|
-
service CommandService {
|
66
|
-
// Execute a command on a device.
|
67
|
-
rpc Execute(CommandRequest) returns (Command);
|
68
|
-
}
|
69
|
-
|
70
|
-
message Configuration {
|
71
|
-
string name = 1;
|
72
|
-
repeated CommandRequest commands = 2;
|
73
|
-
}
|
74
|
-
|
75
|
-
message GitRepository {
|
76
|
-
string url = 1;
|
77
|
-
string relative_path = 2;
|
78
|
-
}
|
79
|
-
|
80
|
-
message GitLogEntry{
|
81
|
-
string commit = 1;
|
82
|
-
string author = 2;
|
83
|
-
google.protobuf.Timestamp date = 3;
|
84
|
-
string message = 4;
|
85
|
-
}
|
86
|
-
|
87
|
-
message MakeResult{
|
88
|
-
string repository = 1;
|
89
|
-
string commit = 2;
|
90
|
-
string branch = 3;
|
91
|
-
string tag = 4;
|
92
|
-
string device = 5;
|
93
|
-
string runtime_identifier = 6;
|
94
|
-
repeated Command commands = 7;
|
95
|
-
int32 initial_size = 8;
|
96
|
-
int32 final_size = 9;
|
97
|
-
}
|
98
|
-
|
99
|
-
message DotNetNewArgs{
|
100
|
-
string template = 1;
|
101
|
-
string name = 2;
|
102
|
-
string output = 3;
|
103
|
-
}
|
data/makit.generated.sln
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
|
2
|
-
Microsoft Visual Studio Solution File, Format Version 12.00
|
3
|
-
# Visual Studio Version 17
|
4
|
-
VisualStudioVersion = 17.5.002.0
|
5
|
-
MinimumVisualStudioVersion = 10.0.40219.1
|
6
|
-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{CA67F75D-E329-4005-A037-539C6699B710}"
|
7
|
-
EndProject
|
8
|
-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClassLib", "src\ClassLib\ClassLib.csproj", "{0BE025BD-665A-4D63-B5DA-0058E866B0B8}"
|
9
|
-
EndProject
|
10
|
-
Global
|
11
|
-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
12
|
-
Debug|Any CPU = Debug|Any CPU
|
13
|
-
Release|Any CPU = Release|Any CPU
|
14
|
-
EndGlobalSection
|
15
|
-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
16
|
-
{0BE025BD-665A-4D63-B5DA-0058E866B0B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
17
|
-
{0BE025BD-665A-4D63-B5DA-0058E866B0B8}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
18
|
-
{0BE025BD-665A-4D63-B5DA-0058E866B0B8}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
19
|
-
{0BE025BD-665A-4D63-B5DA-0058E866B0B8}.Release|Any CPU.Build.0 = Release|Any CPU
|
20
|
-
EndGlobalSection
|
21
|
-
GlobalSection(SolutionProperties) = preSolution
|
22
|
-
HideSolutionNode = FALSE
|
23
|
-
EndGlobalSection
|
24
|
-
GlobalSection(NestedProjects) = preSolution
|
25
|
-
{0BE025BD-665A-4D63-B5DA-0058E866B0B8} = {CA67F75D-E329-4005-A037-539C6699B710}
|
26
|
-
EndGlobalSection
|
27
|
-
GlobalSection(ExtensibilityGlobals) = postSolution
|
28
|
-
SolutionGuid = {814B4822-A4C8-45F6-AA4C-0FA46F07E5AA}
|
29
|
-
EndGlobalSection
|
30
|
-
EndGlobal
|
data/makit.sln
DELETED
@@ -1,69 +0,0 @@
|
|
1
|
-
|
2
|
-
Microsoft Visual Studio Solution File, Format Version 12.00
|
3
|
-
# Visual Studio Version 17
|
4
|
-
VisualStudioVersion = 17.0.31903.59
|
5
|
-
MinimumVisualStudioVersion = 10.0.40219.1
|
6
|
-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "examples", "examples", "{6A9EE161-B014-4911-8DCE-4147E615B05E}"
|
7
|
-
EndProject
|
8
|
-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "nuget-foo", "nuget-foo", "{9558497C-F50B-4CA1-8C4A-526200B10AF1}"
|
9
|
-
EndProject
|
10
|
-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{13485B55-C911-4661-85CF-8B6861EC53D8}"
|
11
|
-
EndProject
|
12
|
-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nuget-foo", "examples\nuget-foo\src\nuget-foo\nuget-foo.csproj", "{19394BEB-BA01-4837-9F41-E873B8F16400}"
|
13
|
-
EndProject
|
14
|
-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{8F2DE485-6CC3-4388-8144-C36D823E2FE8}"
|
15
|
-
EndProject
|
16
|
-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassLib", "src\ClassLib\ClassLib.csproj", "{A675EEA7-58CF-4A35-9BFF-2D0917301DBE}"
|
17
|
-
EndProject
|
18
|
-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Foo", "examples\nuget-foo\src\Foo\Foo.csproj", "{F9DA20B6-FFA9-432E-AB09-B3BCC9096DB1}"
|
19
|
-
EndProject
|
20
|
-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "examples", "examples", "{E63CA4EE-189F-46DD-B640-8470B5456BEF}"
|
21
|
-
EndProject
|
22
|
-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Foo.Wasm.Demo", "examples\nuget-foo\examples\Foo.Wasm.Demo\Foo.Wasm.Demo.csproj", "{5C8872DD-4E6F-40EB-B84D-07DCA9FF6354}"
|
23
|
-
EndProject
|
24
|
-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{7D9A3DAE-473A-4E96-8B62-C1E060E583A3}"
|
25
|
-
EndProject
|
26
|
-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Foo.Tests", "examples\nuget-foo\test\Foo\Foo.Tests.csproj", "{0730AAD2-8BB5-49CD-BC9F-09AA7764B7EF}"
|
27
|
-
EndProject
|
28
|
-
Global
|
29
|
-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
30
|
-
Debug|Any CPU = Debug|Any CPU
|
31
|
-
Release|Any CPU = Release|Any CPU
|
32
|
-
EndGlobalSection
|
33
|
-
GlobalSection(SolutionProperties) = preSolution
|
34
|
-
HideSolutionNode = FALSE
|
35
|
-
EndGlobalSection
|
36
|
-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
37
|
-
{19394BEB-BA01-4837-9F41-E873B8F16400}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
38
|
-
{19394BEB-BA01-4837-9F41-E873B8F16400}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
39
|
-
{19394BEB-BA01-4837-9F41-E873B8F16400}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
40
|
-
{19394BEB-BA01-4837-9F41-E873B8F16400}.Release|Any CPU.Build.0 = Release|Any CPU
|
41
|
-
{A675EEA7-58CF-4A35-9BFF-2D0917301DBE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
42
|
-
{A675EEA7-58CF-4A35-9BFF-2D0917301DBE}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
43
|
-
{A675EEA7-58CF-4A35-9BFF-2D0917301DBE}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
44
|
-
{A675EEA7-58CF-4A35-9BFF-2D0917301DBE}.Release|Any CPU.Build.0 = Release|Any CPU
|
45
|
-
{F9DA20B6-FFA9-432E-AB09-B3BCC9096DB1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
46
|
-
{F9DA20B6-FFA9-432E-AB09-B3BCC9096DB1}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
47
|
-
{F9DA20B6-FFA9-432E-AB09-B3BCC9096DB1}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
48
|
-
{F9DA20B6-FFA9-432E-AB09-B3BCC9096DB1}.Release|Any CPU.Build.0 = Release|Any CPU
|
49
|
-
{5C8872DD-4E6F-40EB-B84D-07DCA9FF6354}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
50
|
-
{5C8872DD-4E6F-40EB-B84D-07DCA9FF6354}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
51
|
-
{5C8872DD-4E6F-40EB-B84D-07DCA9FF6354}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
52
|
-
{5C8872DD-4E6F-40EB-B84D-07DCA9FF6354}.Release|Any CPU.Build.0 = Release|Any CPU
|
53
|
-
{0730AAD2-8BB5-49CD-BC9F-09AA7764B7EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
54
|
-
{0730AAD2-8BB5-49CD-BC9F-09AA7764B7EF}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
55
|
-
{0730AAD2-8BB5-49CD-BC9F-09AA7764B7EF}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
56
|
-
{0730AAD2-8BB5-49CD-BC9F-09AA7764B7EF}.Release|Any CPU.Build.0 = Release|Any CPU
|
57
|
-
EndGlobalSection
|
58
|
-
GlobalSection(NestedProjects) = preSolution
|
59
|
-
{9558497C-F50B-4CA1-8C4A-526200B10AF1} = {6A9EE161-B014-4911-8DCE-4147E615B05E}
|
60
|
-
{13485B55-C911-4661-85CF-8B6861EC53D8} = {9558497C-F50B-4CA1-8C4A-526200B10AF1}
|
61
|
-
{19394BEB-BA01-4837-9F41-E873B8F16400} = {13485B55-C911-4661-85CF-8B6861EC53D8}
|
62
|
-
{A675EEA7-58CF-4A35-9BFF-2D0917301DBE} = {8F2DE485-6CC3-4388-8144-C36D823E2FE8}
|
63
|
-
{F9DA20B6-FFA9-432E-AB09-B3BCC9096DB1} = {13485B55-C911-4661-85CF-8B6861EC53D8}
|
64
|
-
{E63CA4EE-189F-46DD-B640-8470B5456BEF} = {9558497C-F50B-4CA1-8C4A-526200B10AF1}
|
65
|
-
{5C8872DD-4E6F-40EB-B84D-07DCA9FF6354} = {E63CA4EE-189F-46DD-B640-8470B5456BEF}
|
66
|
-
{7D9A3DAE-473A-4E96-8B62-C1E060E583A3} = {9558497C-F50B-4CA1-8C4A-526200B10AF1}
|
67
|
-
{0730AAD2-8BB5-49CD-BC9F-09AA7764B7EF} = {7D9A3DAE-473A-4E96-8B62-C1E060E583A3}
|
68
|
-
EndGlobalSection
|
69
|
-
EndGlobal
|
data/pages/.gitignore
DELETED
data/pages/404.html
DELETED
@@ -1,25 +0,0 @@
|
|
1
|
-
---
|
2
|
-
permalink: /404.html
|
3
|
-
layout: default
|
4
|
-
---
|
5
|
-
|
6
|
-
<style type="text/css" media="screen">
|
7
|
-
.container {
|
8
|
-
margin: 10px auto;
|
9
|
-
max-width: 600px;
|
10
|
-
text-align: center;
|
11
|
-
}
|
12
|
-
h1 {
|
13
|
-
margin: 30px 0;
|
14
|
-
font-size: 4em;
|
15
|
-
line-height: 1;
|
16
|
-
letter-spacing: -1px;
|
17
|
-
}
|
18
|
-
</style>
|
19
|
-
|
20
|
-
<div class="container">
|
21
|
-
<h1>404</h1>
|
22
|
-
|
23
|
-
<p><strong>Page not found :(</strong></p>
|
24
|
-
<p>The requested page could not be found.</p>
|
25
|
-
</div>
|
data/pages/Gemfile
DELETED
@@ -1,33 +0,0 @@
|
|
1
|
-
source "https://rubygems.org"
|
2
|
-
# Hello! This is where you manage which Jekyll version is used to run.
|
3
|
-
# When you want to use a different version, change it below, save the
|
4
|
-
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
|
5
|
-
#
|
6
|
-
# bundle exec jekyll serve
|
7
|
-
#
|
8
|
-
# This will help ensure the proper Jekyll version is running.
|
9
|
-
# Happy Jekylling!
|
10
|
-
gem "jekyll", "~> 4.3.4"
|
11
|
-
# This is the default theme for new Jekyll sites. You may change this to anything you like.
|
12
|
-
gem "minima", "~> 2.5"
|
13
|
-
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
|
14
|
-
# uncomment the line below. To upgrade, run `bundle update github-pages`.
|
15
|
-
# gem "github-pages", group: :jekyll_plugins
|
16
|
-
# If you have any plugins, put them here!
|
17
|
-
group :jekyll_plugins do
|
18
|
-
gem "jekyll-feed", "~> 0.12"
|
19
|
-
end
|
20
|
-
|
21
|
-
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
|
22
|
-
# and associated library.
|
23
|
-
platforms :mingw, :x64_mingw, :mswin, :jruby do
|
24
|
-
gem "tzinfo", ">= 1", "< 3"
|
25
|
-
gem "tzinfo-data"
|
26
|
-
end
|
27
|
-
|
28
|
-
# Performance-booster for watching directories on Windows
|
29
|
-
gem "wdm", "~> 0.1", :platforms => [:mingw, :x64_mingw, :mswin]
|
30
|
-
|
31
|
-
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
|
32
|
-
# do not have a Java counterpart.
|
33
|
-
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]
|
data/pages/Gemfile.lock
DELETED
@@ -1,88 +0,0 @@
|
|
1
|
-
GEM
|
2
|
-
remote: https://rubygems.org/
|
3
|
-
specs:
|
4
|
-
addressable (2.8.7)
|
5
|
-
public_suffix (>= 2.0.2, < 7.0)
|
6
|
-
bigdecimal (3.1.8)
|
7
|
-
colorator (1.1.0)
|
8
|
-
concurrent-ruby (1.3.4)
|
9
|
-
em-websocket (0.5.3)
|
10
|
-
eventmachine (>= 0.12.9)
|
11
|
-
http_parser.rb (~> 0)
|
12
|
-
eventmachine (1.2.7)
|
13
|
-
ffi (1.17.0-arm64-darwin)
|
14
|
-
forwardable-extended (2.6.0)
|
15
|
-
google-protobuf (4.28.2-arm64-darwin)
|
16
|
-
bigdecimal
|
17
|
-
rake (>= 13)
|
18
|
-
http_parser.rb (0.8.0)
|
19
|
-
i18n (1.14.6)
|
20
|
-
concurrent-ruby (~> 1.0)
|
21
|
-
jekyll (4.3.4)
|
22
|
-
addressable (~> 2.4)
|
23
|
-
colorator (~> 1.0)
|
24
|
-
em-websocket (~> 0.5)
|
25
|
-
i18n (~> 1.0)
|
26
|
-
jekyll-sass-converter (>= 2.0, < 4.0)
|
27
|
-
jekyll-watch (~> 2.0)
|
28
|
-
kramdown (~> 2.3, >= 2.3.1)
|
29
|
-
kramdown-parser-gfm (~> 1.0)
|
30
|
-
liquid (~> 4.0)
|
31
|
-
mercenary (>= 0.3.6, < 0.5)
|
32
|
-
pathutil (~> 0.9)
|
33
|
-
rouge (>= 3.0, < 5.0)
|
34
|
-
safe_yaml (~> 1.0)
|
35
|
-
terminal-table (>= 1.8, < 4.0)
|
36
|
-
webrick (~> 1.7)
|
37
|
-
jekyll-feed (0.17.0)
|
38
|
-
jekyll (>= 3.7, < 5.0)
|
39
|
-
jekyll-sass-converter (3.0.0)
|
40
|
-
sass-embedded (~> 1.54)
|
41
|
-
jekyll-seo-tag (2.8.0)
|
42
|
-
jekyll (>= 3.8, < 5.0)
|
43
|
-
jekyll-watch (2.2.1)
|
44
|
-
listen (~> 3.0)
|
45
|
-
kramdown (2.4.0)
|
46
|
-
rexml
|
47
|
-
kramdown-parser-gfm (1.1.0)
|
48
|
-
kramdown (~> 2.0)
|
49
|
-
liquid (4.0.4)
|
50
|
-
listen (3.9.0)
|
51
|
-
rb-fsevent (~> 0.10, >= 0.10.3)
|
52
|
-
rb-inotify (~> 0.9, >= 0.9.10)
|
53
|
-
mercenary (0.4.0)
|
54
|
-
minima (2.5.2)
|
55
|
-
jekyll (>= 3.5, < 5.0)
|
56
|
-
jekyll-feed (~> 0.9)
|
57
|
-
jekyll-seo-tag (~> 2.1)
|
58
|
-
pathutil (0.16.2)
|
59
|
-
forwardable-extended (~> 2.6)
|
60
|
-
public_suffix (6.0.1)
|
61
|
-
rake (13.2.1)
|
62
|
-
rb-fsevent (0.11.2)
|
63
|
-
rb-inotify (0.11.1)
|
64
|
-
ffi (~> 1.0)
|
65
|
-
rexml (3.3.8)
|
66
|
-
rouge (4.4.0)
|
67
|
-
safe_yaml (1.0.5)
|
68
|
-
sass-embedded (1.79.4-arm64-darwin)
|
69
|
-
google-protobuf (~> 4.27)
|
70
|
-
terminal-table (3.0.2)
|
71
|
-
unicode-display_width (>= 1.1.1, < 3)
|
72
|
-
unicode-display_width (2.6.0)
|
73
|
-
webrick (1.8.2)
|
74
|
-
|
75
|
-
PLATFORMS
|
76
|
-
arm64-darwin
|
77
|
-
|
78
|
-
DEPENDENCIES
|
79
|
-
http_parser.rb (~> 0.6.0)
|
80
|
-
jekyll (~> 4.3.4)
|
81
|
-
jekyll-feed (~> 0.12)
|
82
|
-
minima (~> 2.5)
|
83
|
-
tzinfo (>= 1, < 3)
|
84
|
-
tzinfo-data
|
85
|
-
wdm (~> 0.1)
|
86
|
-
|
87
|
-
BUNDLED WITH
|
88
|
-
2.5.21
|
data/pages/_config.yml
DELETED
@@ -1,55 +0,0 @@
|
|
1
|
-
# Welcome to Jekyll!
|
2
|
-
#
|
3
|
-
# This config file is meant for settings that affect your whole blog, values
|
4
|
-
# which you are expected to set up once and rarely edit after that. If you find
|
5
|
-
# yourself editing this file very often, consider using Jekyll's data files
|
6
|
-
# feature for the data you need to update frequently.
|
7
|
-
#
|
8
|
-
# For technical reasons, this file is *NOT* reloaded automatically when you use
|
9
|
-
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
|
10
|
-
#
|
11
|
-
# If you need help with YAML syntax, here are some quick references for you:
|
12
|
-
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
|
13
|
-
# https://learnxinyminutes.com/docs/yaml/
|
14
|
-
#
|
15
|
-
# Site settings
|
16
|
-
# These are used to personalize your new site. If you look in the HTML files,
|
17
|
-
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
|
18
|
-
# You can create any custom variable you would like, and they will be accessible
|
19
|
-
# in the templates via {{ site.myvariable }}.
|
20
|
-
|
21
|
-
title: Your awesome title
|
22
|
-
email: your-email@example.com
|
23
|
-
description: >- # this means to ignore newlines until "baseurl:"
|
24
|
-
Write an awesome description for your new site here. You can edit this
|
25
|
-
line in _config.yml. It will appear in your document head meta (for
|
26
|
-
Google search results) and in your feed.xml site description.
|
27
|
-
baseurl: "/makit" # the subpath of your site, e.g. /blog
|
28
|
-
url: "https://gems-rb.gitlab.io" # the base hostname & protocol for your site, e.g. http://example.com
|
29
|
-
twitter_username: jekyllrb
|
30
|
-
github_username: jekyll
|
31
|
-
|
32
|
-
# Build settings
|
33
|
-
theme: minima
|
34
|
-
plugins:
|
35
|
-
- jekyll-feed
|
36
|
-
|
37
|
-
# Exclude from processing.
|
38
|
-
# The following items will not be processed, by default.
|
39
|
-
# Any item listed under the `exclude:` key here will be automatically added to
|
40
|
-
# the internal "default list".
|
41
|
-
#
|
42
|
-
# Excluded items can be processed by explicitly listing the directories or
|
43
|
-
# their entries' file path in the `include:` list.
|
44
|
-
#
|
45
|
-
# exclude:
|
46
|
-
# - .sass-cache/
|
47
|
-
# - .jekyll-cache/
|
48
|
-
# - gemfiles/
|
49
|
-
# - Gemfile
|
50
|
-
# - Gemfile.lock
|
51
|
-
# - node_modules/
|
52
|
-
# - vendor/bundle/
|
53
|
-
# - vendor/cache/
|
54
|
-
# - vendor/gems/
|
55
|
-
# - vendor/ruby/
|
data/pages/_layouts/default.html
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
404: Not Found
|
@@ -1,29 +0,0 @@
|
|
1
|
-
---
|
2
|
-
layout: post
|
3
|
-
title: "Welcome to Jekyll!"
|
4
|
-
date: 2024-10-05 10:23:33 -0700
|
5
|
-
categories: jekyll update
|
6
|
-
---
|
7
|
-
You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
|
8
|
-
|
9
|
-
Jekyll requires blog post files to be named according to the following format:
|
10
|
-
|
11
|
-
`YEAR-MONTH-DAY-title.MARKUP`
|
12
|
-
|
13
|
-
Where `YEAR` is a four-digit number, `MONTH` and `DAY` are both two-digit numbers, and `MARKUP` is the file extension representing the format used in the file. After that, include the necessary front matter. Take a look at the source for this post to get an idea about how it works.
|
14
|
-
|
15
|
-
Jekyll also offers powerful support for code snippets:
|
16
|
-
|
17
|
-
{% highlight ruby %}
|
18
|
-
def print_hi(name)
|
19
|
-
puts "Hi, #{name}"
|
20
|
-
end
|
21
|
-
print_hi('Tom')
|
22
|
-
#=> prints 'Hi, Tom' to STDOUT.
|
23
|
-
{% endhighlight %}
|
24
|
-
|
25
|
-
Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk].
|
26
|
-
|
27
|
-
[jekyll-docs]: https://jekyllrb.com/docs/home
|
28
|
-
[jekyll-gh]: https://github.com/jekyll/jekyll
|
29
|
-
[jekyll-talk]: https://talk.jekyllrb.com/
|
data/pages/about.markdown
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
---
|
2
|
-
layout: page
|
3
|
-
title: About
|
4
|
-
permalink: /about/
|
5
|
-
---
|
6
|
-
|
7
|
-
This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/)
|
8
|
-
|
9
|
-
You can find the source code for Minima at GitHub:
|
10
|
-
[jekyll][jekyll-organization] /
|
11
|
-
[minima](https://github.com/jekyll/minima)
|
12
|
-
|
13
|
-
You can find the source code for Jekyll at GitHub:
|
14
|
-
[jekyll][jekyll-organization] /
|
15
|
-
[jekyll](https://github.com/jekyll/jekyll)
|
16
|
-
|
17
|
-
|
18
|
-
[jekyll-organization]: https://github.com/jekyll
|
data/pages/index.markdown
DELETED
data/sig/makit.rbs
DELETED
data/src/ClassLib/Class1.cs
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
<Project Sdk="Microsoft.NET.Sdk">
|
2
|
-
|
3
|
-
<PropertyGroup>
|
4
|
-
<TargetFramework>net8.0</TargetFramework>
|
5
|
-
<ImplicitUsings>enable</ImplicitUsings>
|
6
|
-
<Nullable>enable</Nullable>
|
7
|
-
</PropertyGroup>
|
8
|
-
|
9
|
-
<ItemGroup>
|
10
|
-
<PackageReference Include="Google.Protobuf" Version="3.27.2" />
|
11
|
-
</ItemGroup>
|
12
|
-
|
13
|
-
</Project>
|