unmagic-color 0.3 → 0.3.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 -0
- data/lib/unmagic/color/version.rb +1 -1
- metadata +3 -3
- /data/lib/{unmagic_color.rb → unmagic-color.rb} +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e1dea3d473135c8ad8c18ed7516bffc31c495801cd8df74dc848769ac0335822
|
|
4
|
+
data.tar.gz: aeccee4653d9371f3dade6249b431aed95c8c0627b1ad8666143ebe178075dc2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 015bd7fbe70b3d12e444e4a356e112a1c39a3d52281eca931bfdbc162af96691fc369f958d8bb9f619db52453ad18eefe8d54e91bb898c57fe9c8526428a44ae
|
|
7
|
+
data.tar.gz: 1bf4d50df68ef31f4b0af636bdd7157a276febf261cff95b9616faed940179a7af82130d5720908736c1435597c15d3ee84adb5a393d69a3965aa5fc49911151
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.3.1] - 2026-06-27
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Renamed the gem entry point from `lib/unmagic_color.rb` to `lib/unmagic-color.rb` so Bundler's automatic `require "unmagic-color"` works without needing a manual `require "unmagic/color"`
|
|
14
|
+
|
|
10
15
|
## [0.3] - 2026-05-17
|
|
11
16
|
|
|
12
17
|
### Added
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: unmagic-color
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Keith Pitt
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-06-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Parse, convert, and manipulate colors with support for RGB, Hex, HSL
|
|
14
14
|
formats, contrast calculations, and color blending
|
|
@@ -24,6 +24,7 @@ files:
|
|
|
24
24
|
- data/css.txt
|
|
25
25
|
- data/x11.jsonc
|
|
26
26
|
- data/x11.txt
|
|
27
|
+
- lib/unmagic-color.rb
|
|
27
28
|
- lib/unmagic/color.rb
|
|
28
29
|
- lib/unmagic/color/console/banner.rb
|
|
29
30
|
- lib/unmagic/color/console/card.rb
|
|
@@ -48,7 +49,6 @@ files:
|
|
|
48
49
|
- lib/unmagic/color/units/direction.rb
|
|
49
50
|
- lib/unmagic/color/util/percentage.rb
|
|
50
51
|
- lib/unmagic/color/version.rb
|
|
51
|
-
- lib/unmagic_color.rb
|
|
52
52
|
homepage: https://github.com/unreasonable-magic/unmagic-color
|
|
53
53
|
licenses:
|
|
54
54
|
- MIT
|
|
File without changes
|