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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5dd1449c02711ec50bf8b11e6ccfc0465768a4ad9271b0d8f08f7c9246aeb69f
4
- data.tar.gz: 56a1956411fb506f35216355bc68be172d7f20dddc537504b31fe2b7e509fd9b
3
+ metadata.gz: 65b260448dc5839df281e61e77299cd97df1f1bfe8b5e094985fa24cdc22022c
4
+ data.tar.gz: 579138e8c1058f6d8c940d1f2d28445039be2bb8190c1ef8598d26f1f0d54bcd
5
5
  SHA512:
6
- metadata.gz: 142b9a8f8ed2fee2f0647ef2cde5c8403080443ad7c312797268874677bc61ac6ab268321bbebc2910a611f1577f1b5d7198e2e8f2fa43666e8602f4838f5416
7
- data.tar.gz: f1a77fbfdc5bcaffeb5a35db065583f8aab6cbaf9eb74c9b378bfeb7017448aee1d369dd6a063890ea416c478c1cc161617955702c4e2f9700694c4219029b36
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
- [![Gem Version](https://badge.fury.io/rb/railstart.svg)](https://badge.fury.io/rb/railstart)
3
+ [![Gem Version](https://img.shields.io/gem/v/railstart)](https://rubygems.org/gems/railstart)
4
4
  [![Documentation](https://img.shields.io/badge/docs-rubydoc.info-blue.svg)](https://rubydoc.info/gems/railstart)
5
5
  [![CI](https://github.com/dpaluy/railstart/actions/workflows/ci.yml/badge.svg)](https://github.com/dpaluy/railstart/actions/workflows/ci.yml)
6
6
 
@@ -169,7 +169,7 @@ module Railstart
169
169
  UI.section("Configuration Summary")
170
170
  puts
171
171
 
172
- summary_lines = ["App name: #{UI.pastel.bright_cyan(@app_name)}"]
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.bright_white(value_str)}"
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
@@ -44,7 +44,7 @@ module Railstart
44
44
  padding: [0, 1],
45
45
  border: :thick,
46
46
  style: {
47
- fg: :bright_white,
47
+ fg: :cyan,
48
48
  border: { fg: :cyan }
49
49
  }
50
50
  ) { message }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Railstart
4
- VERSION = "0.4.1"
4
+ VERSION = "0.4.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: railstart
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - dpaluy