railstart 0.2.0 → 0.2.1
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/CHANGELOG.md +5 -1
- data/lib/railstart/cli.rb +1 -1
- data/lib/railstart/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 291b9eb1edd2bd473da3d2da1ca08921b4320e7892926dfb6f4099e6c3c9b51a
|
|
4
|
+
data.tar.gz: bd917d5cc282fb789d57fe88eaa484cd86a83c079801f0ca32f701be70c9986a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 001e22b7e5f50d84058280cee64a759da54fb60a77f2e895c6ed9d01f5b53a767dbe7e1ce3d67e6ac888cec3cb3daa66c237f1118e0e0680fa7603e02d0f02ca
|
|
7
|
+
data.tar.gz: 5fe74710ececff1600e82ceceff405f9bd5a5d068b3ea26ebb47558e98f530bd72c03f74b0872e63d9f5c0b25268aca731753b425571594c65fc4cba83a2361b
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
8
|
|
|
9
|
+
## [0.2.1] - 2025-11-22
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- Thor::UndefinedCommandError raised with incorrect number of arguments (now passes command, nil, and all_commands.keys)
|
|
13
|
+
|
|
9
14
|
## [0.2.0] - 2025-11-22
|
|
10
15
|
|
|
11
16
|
### Added
|
|
@@ -38,7 +43,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
38
43
|
- TTY::Prompt select/multi_select displaying duplicate options (switched from array pairs to hash format)
|
|
39
44
|
- Default value selection not working correctly (now uses 1-based index as expected by TTY::Prompt)
|
|
40
45
|
- Bundle install post-action incorrectly prompting when user explicitly skips bundle install
|
|
41
|
-
- CLI error handling improved (Thor::UndefinedCommandError)
|
|
42
46
|
|
|
43
47
|
### Removed
|
|
44
48
|
- Plain text summary formatting replaced with styled box display
|
data/lib/railstart/cli.rb
CHANGED
|
@@ -71,7 +71,7 @@ module Railstart
|
|
|
71
71
|
self.class.subcommand_classes[command].help(shell, subcommand)
|
|
72
72
|
else
|
|
73
73
|
cmd = self.class.all_commands[command]
|
|
74
|
-
raise Thor::UndefinedCommandError,
|
|
74
|
+
raise Thor::UndefinedCommandError.new(command, nil, self.class.all_commands.keys) unless cmd
|
|
75
75
|
|
|
76
76
|
shell.say "Usage:"
|
|
77
77
|
shell.say " #{self.class.banner(cmd)}"
|
data/lib/railstart/version.rb
CHANGED