featureparity 0.0.6 → 0.0.8
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/lib/fp/cli.rb +8 -2
- data/lib/fp/client.rb +62 -16
- data/lib/fp/commands/base.rb +49 -0
- data/lib/fp/commands/check.rb +216 -0
- data/lib/fp/commands/ci_report.rb +14 -25
- data/lib/fp/commands/export.rb +144 -0
- data/lib/fp/commands/help.rb +93 -4
- data/lib/fp/commands/history.rb +188 -0
- data/lib/fp/commands/init.rb +397 -0
- data/lib/fp/commands/list.rb +118 -33
- data/lib/fp/commands/matrix.rb +82 -42
- data/lib/fp/commands/propose.rb +10 -2
- data/lib/fp/commands/propose_change.rb +181 -0
- data/lib/fp/commands/report.rb +13 -6
- data/lib/fp/commands/repos.rb +3 -3
- data/lib/fp/commands/show.rb +8 -2
- data/lib/fp/commands/surfaces.rb +2 -2
- data/lib/fp/commands.rb +5 -0
- data/lib/fp/junit.rb +13 -4
- data/lib/fp/parity.rb +81 -0
- data/lib/fp/project_config.rb +137 -0
- data/lib/fp/version.rb +1 -1
- data/lib/fp.rb +2 -0
- data/skills/fp/SKILL.md +124 -3
- data/skills/fp/references/cli.md +216 -10
- metadata +9 -2
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: featureparity
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stowzilla
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-09-
|
|
11
|
+
date: 2026-09-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: net-http
|
|
@@ -95,14 +95,19 @@ files:
|
|
|
95
95
|
- lib/fp/client.rb
|
|
96
96
|
- lib/fp/commands.rb
|
|
97
97
|
- lib/fp/commands/base.rb
|
|
98
|
+
- lib/fp/commands/check.rb
|
|
98
99
|
- lib/fp/commands/ci_report.rb
|
|
99
100
|
- lib/fp/commands/config_cmd.rb
|
|
101
|
+
- lib/fp/commands/export.rb
|
|
100
102
|
- lib/fp/commands/help.rb
|
|
103
|
+
- lib/fp/commands/history.rb
|
|
104
|
+
- lib/fp/commands/init.rb
|
|
101
105
|
- lib/fp/commands/list.rb
|
|
102
106
|
- lib/fp/commands/matrix.rb
|
|
103
107
|
- lib/fp/commands/profile.rb
|
|
104
108
|
- lib/fp/commands/projects.rb
|
|
105
109
|
- lib/fp/commands/propose.rb
|
|
110
|
+
- lib/fp/commands/propose_change.rb
|
|
106
111
|
- lib/fp/commands/report.rb
|
|
107
112
|
- lib/fp/commands/repos.rb
|
|
108
113
|
- lib/fp/commands/setup.rb
|
|
@@ -113,6 +118,8 @@ files:
|
|
|
113
118
|
- lib/fp/config.rb
|
|
114
119
|
- lib/fp/junit.rb
|
|
115
120
|
- lib/fp/output.rb
|
|
121
|
+
- lib/fp/parity.rb
|
|
122
|
+
- lib/fp/project_config.rb
|
|
116
123
|
- lib/fp/version.rb
|
|
117
124
|
- skills/fp/SKILL.md
|
|
118
125
|
- skills/fp/references/cli.md
|