cimas 0.1.4 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/rake.yml +18 -0
- data/.github/workflows/release.yml +31 -0
- data/.gitignore +3 -0
- data/.rubocop.yml +29 -0
- data/CLAUDE.md +56 -0
- data/README.adoc +467 -14
- data/bin/console +1 -1
- data/cimas.gemspec +4 -3
- data/exe/cimas +9 -201
- data/lib/cimas/cli/command.rb +827 -239
- data/lib/cimas/cli/error.rb +8 -0
- data/lib/cimas/cli/runner.rb +239 -0
- data/lib/cimas/cli.rb +7 -0
- data/lib/cimas/github.rb +47 -0
- data/lib/cimas/orphan_files.rb +37 -0
- data/lib/cimas/patch.rb +25 -0
- data/lib/cimas/release_preflight.rb +140 -0
- data/lib/cimas/repository.rb +25 -17
- data/lib/cimas/version.rb +1 -1
- data/lib/cimas/working_copy.rb +136 -0
- data/lib/cimas.rb +22 -3
- data/plans/cimas-revival-and-release-workflow-realignment.md +2158 -0
- metadata +38 -12
- data/Gemfile.lock +0 -86
metadata
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cimas
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-08-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name:
|
|
14
|
+
name: thor
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
@@ -52,18 +52,32 @@ dependencies:
|
|
|
52
52
|
- - ">="
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: ostruct
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - ">="
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
type: :runtime
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0'
|
|
55
69
|
- !ruby/object:Gem::Dependency
|
|
56
70
|
name: bundler
|
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
|
58
72
|
requirements:
|
|
59
|
-
- - "
|
|
73
|
+
- - ">="
|
|
60
74
|
- !ruby/object:Gem::Version
|
|
61
75
|
version: '2.0'
|
|
62
76
|
type: :development
|
|
63
77
|
prerelease: false
|
|
64
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
79
|
requirements:
|
|
66
|
-
- - "
|
|
80
|
+
- - ">="
|
|
67
81
|
- !ruby/object:Gem::Version
|
|
68
82
|
version: '2.0'
|
|
69
83
|
- !ruby/object:Gem::Dependency
|
|
@@ -72,14 +86,14 @@ dependencies:
|
|
|
72
86
|
requirements:
|
|
73
87
|
- - "~>"
|
|
74
88
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: '
|
|
89
|
+
version: '13.0'
|
|
76
90
|
type: :development
|
|
77
91
|
prerelease: false
|
|
78
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
93
|
requirements:
|
|
80
94
|
- - "~>"
|
|
81
95
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: '
|
|
96
|
+
version: '13.0'
|
|
83
97
|
- !ruby/object:Gem::Dependency
|
|
84
98
|
name: rspec
|
|
85
99
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -102,11 +116,14 @@ executables:
|
|
|
102
116
|
extensions: []
|
|
103
117
|
extra_rdoc_files: []
|
|
104
118
|
files:
|
|
119
|
+
- ".github/workflows/rake.yml"
|
|
120
|
+
- ".github/workflows/release.yml"
|
|
105
121
|
- ".gitignore"
|
|
106
122
|
- ".rspec"
|
|
123
|
+
- ".rubocop.yml"
|
|
124
|
+
- CLAUDE.md
|
|
107
125
|
- CODE_OF_CONDUCT.md
|
|
108
126
|
- Gemfile
|
|
109
|
-
- Gemfile.lock
|
|
110
127
|
- README.adoc
|
|
111
128
|
- Rakefile
|
|
112
129
|
- bin/console
|
|
@@ -115,16 +132,25 @@ files:
|
|
|
115
132
|
- cimas.gemspec
|
|
116
133
|
- exe/cimas
|
|
117
134
|
- lib/cimas.rb
|
|
135
|
+
- lib/cimas/cli.rb
|
|
118
136
|
- lib/cimas/cli/command.rb
|
|
137
|
+
- lib/cimas/cli/error.rb
|
|
138
|
+
- lib/cimas/cli/runner.rb
|
|
139
|
+
- lib/cimas/github.rb
|
|
140
|
+
- lib/cimas/orphan_files.rb
|
|
141
|
+
- lib/cimas/patch.rb
|
|
142
|
+
- lib/cimas/release_preflight.rb
|
|
119
143
|
- lib/cimas/repository.rb
|
|
120
144
|
- lib/cimas/version.rb
|
|
145
|
+
- lib/cimas/working_copy.rb
|
|
146
|
+
- plans/cimas-revival-and-release-workflow-realignment.md
|
|
121
147
|
homepage: https://github.com/metanorma/cimas
|
|
122
148
|
licenses:
|
|
123
149
|
- BSD-2-Clause
|
|
124
150
|
metadata:
|
|
125
151
|
homepage_uri: https://github.com/metanorma/cimas
|
|
126
152
|
source_code_uri: https://github.com/metanorma/cimas
|
|
127
|
-
post_install_message:
|
|
153
|
+
post_install_message:
|
|
128
154
|
rdoc_options: []
|
|
129
155
|
require_paths:
|
|
130
156
|
- lib
|
|
@@ -139,8 +165,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
139
165
|
- !ruby/object:Gem::Version
|
|
140
166
|
version: '0'
|
|
141
167
|
requirements: []
|
|
142
|
-
rubygems_version: 3.
|
|
143
|
-
signing_key:
|
|
168
|
+
rubygems_version: 3.5.22
|
|
169
|
+
signing_key:
|
|
144
170
|
specification_version: 4
|
|
145
171
|
summary: Automate and synchronize CI configuration across repositories.
|
|
146
172
|
test_files: []
|
data/Gemfile.lock
DELETED
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
cimas (0.1.3)
|
|
5
|
-
git
|
|
6
|
-
octokit
|
|
7
|
-
travis
|
|
8
|
-
|
|
9
|
-
GEM
|
|
10
|
-
remote: https://rubygems.org/
|
|
11
|
-
specs:
|
|
12
|
-
addressable (2.4.0)
|
|
13
|
-
backports (3.16.0)
|
|
14
|
-
diff-lcs (1.3)
|
|
15
|
-
ethon (0.12.0)
|
|
16
|
-
ffi (>= 1.3.0)
|
|
17
|
-
faraday (0.17.3)
|
|
18
|
-
multipart-post (>= 1.2, < 3)
|
|
19
|
-
faraday_middleware (0.14.0)
|
|
20
|
-
faraday (>= 0.7.4, < 1.0)
|
|
21
|
-
ffi (1.12.2)
|
|
22
|
-
gh (0.15.1)
|
|
23
|
-
addressable (~> 2.4.0)
|
|
24
|
-
backports
|
|
25
|
-
faraday (~> 0.8)
|
|
26
|
-
multi_json (~> 1.0)
|
|
27
|
-
net-http-persistent (~> 2.9)
|
|
28
|
-
net-http-pipeline
|
|
29
|
-
git (1.6.0)
|
|
30
|
-
rchardet (~> 1.8)
|
|
31
|
-
highline (1.7.10)
|
|
32
|
-
json (2.3.0)
|
|
33
|
-
launchy (2.4.3)
|
|
34
|
-
addressable (~> 2.3)
|
|
35
|
-
multi_json (1.14.1)
|
|
36
|
-
multipart-post (2.1.1)
|
|
37
|
-
net-http-persistent (2.9.4)
|
|
38
|
-
net-http-pipeline (1.0.1)
|
|
39
|
-
octokit (4.16.0)
|
|
40
|
-
faraday (>= 0.9)
|
|
41
|
-
sawyer (~> 0.8.0, >= 0.5.3)
|
|
42
|
-
pusher-client (0.6.2)
|
|
43
|
-
json
|
|
44
|
-
websocket (~> 1.0)
|
|
45
|
-
rake (10.5.0)
|
|
46
|
-
rchardet (1.8.0)
|
|
47
|
-
rspec (3.9.0)
|
|
48
|
-
rspec-core (~> 3.9.0)
|
|
49
|
-
rspec-expectations (~> 3.9.0)
|
|
50
|
-
rspec-mocks (~> 3.9.0)
|
|
51
|
-
rspec-core (3.9.1)
|
|
52
|
-
rspec-support (~> 3.9.1)
|
|
53
|
-
rspec-expectations (3.9.0)
|
|
54
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
55
|
-
rspec-support (~> 3.9.0)
|
|
56
|
-
rspec-mocks (3.9.1)
|
|
57
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
58
|
-
rspec-support (~> 3.9.0)
|
|
59
|
-
rspec-support (3.9.2)
|
|
60
|
-
sawyer (0.8.2)
|
|
61
|
-
addressable (>= 2.3.5)
|
|
62
|
-
faraday (> 0.8, < 2.0)
|
|
63
|
-
travis (1.8.10)
|
|
64
|
-
backports
|
|
65
|
-
faraday (~> 0.9)
|
|
66
|
-
faraday_middleware (~> 0.9, >= 0.9.1)
|
|
67
|
-
gh (~> 0.13)
|
|
68
|
-
highline (~> 1.6)
|
|
69
|
-
launchy (~> 2.1)
|
|
70
|
-
pusher-client (~> 0.4)
|
|
71
|
-
typhoeus (~> 0.6, >= 0.6.8)
|
|
72
|
-
typhoeus (0.8.0)
|
|
73
|
-
ethon (>= 0.8.0)
|
|
74
|
-
websocket (1.2.8)
|
|
75
|
-
|
|
76
|
-
PLATFORMS
|
|
77
|
-
ruby
|
|
78
|
-
|
|
79
|
-
DEPENDENCIES
|
|
80
|
-
bundler (~> 2.0)
|
|
81
|
-
cimas!
|
|
82
|
-
rake (~> 10.0)
|
|
83
|
-
rspec (~> 3.0)
|
|
84
|
-
|
|
85
|
-
BUNDLED WITH
|
|
86
|
-
2.1.4
|