railstart 0.4.1 → 0.4.2
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 -0
- data/README.md +1 -1
- data/lib/railstart/generator.rb +2 -2
- data/lib/railstart/ui.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: 65b260448dc5839df281e61e77299cd97df1f1bfe8b5e094985fa24cdc22022c
|
|
4
|
+
data.tar.gz: 579138e8c1058f6d8c940d1f2d28445039be2bb8190c1ef8598d26f1f0d54bcd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc08af02cab4c9222bfd3c5e0cffd2ca0a908b5725678a8a66666cbf5d884617e9e1d928e886d62aa8af47ca7d03ffc06e18f5d77923ed12998ff8d452579e91
|
|
7
|
+
data.tar.gz: a93ed6e7be8ae433a166a65d841dcd6fbb951072faf12d1f3b8ec27c7a3e5893c50384f1dc1f09bb3b351cdf232f9a792a78502c4e9d171bc663c1a17e92aa86
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
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
|
+
## [0.4.2] - 2025-11-25
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **Light theme support**: Configuration Summary values now visible on light terminal backgrounds. Replaced `bright_white` and `bright_cyan` with universal ANSI colors (`green`, `cyan`) that work on both light and dark themes.
|
|
12
|
+
|
|
8
13
|
## [0.4.1] - 2025-11-23
|
|
9
14
|
|
|
10
15
|
### Changed
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Railstart
|
|
2
2
|
|
|
3
|
-
[](https://rubygems.org/gems/railstart)
|
|
4
4
|
[](https://rubydoc.info/gems/railstart)
|
|
5
5
|
[](https://github.com/dpaluy/railstart/actions/workflows/ci.yml)
|
|
6
6
|
|
data/lib/railstart/generator.rb
CHANGED
|
@@ -169,7 +169,7 @@ module Railstart
|
|
|
169
169
|
UI.section("Configuration Summary")
|
|
170
170
|
puts
|
|
171
171
|
|
|
172
|
-
summary_lines = ["App name: #{UI.pastel.
|
|
172
|
+
summary_lines = ["App name: #{UI.pastel.cyan(@app_name)}"]
|
|
173
173
|
|
|
174
174
|
Array(@config["questions"]).each do |question|
|
|
175
175
|
question_id = question["id"]
|
|
@@ -189,7 +189,7 @@ module Railstart
|
|
|
189
189
|
answer.to_s
|
|
190
190
|
end
|
|
191
191
|
|
|
192
|
-
summary_lines << "#{label}: #{UI.pastel.
|
|
192
|
+
summary_lines << "#{label}: #{UI.pastel.green(value_str)}"
|
|
193
193
|
end
|
|
194
194
|
|
|
195
195
|
box = TTY::Box.frame(
|
data/lib/railstart/ui.rb
CHANGED
data/lib/railstart/version.rb
CHANGED