protos-icon 0.3.0 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb262274d7a7863a8af407ae211479020a4f08e34c4e7b4837f9ae3daf7c4eb6
4
- data.tar.gz: 867bf51e20c59e6b1e2b9f4a2d5cbecc5fbd760f9574dd0179ef364862dbf2c6
3
+ metadata.gz: b0647186b423f676be9b71bc7b9551be8fd9471df91da3b7b8e1be98b5b11ced
4
+ data.tar.gz: a061174e43487b03b9cc4a4c46339ca9807c1aff0eb996c3a010b31e69295a11
5
5
  SHA512:
6
- metadata.gz: 0a72f28c09bdac1413de90a59fcb77b2d07d0607ede4be84ddda56e7a63fa9a1f314c00b7d9996edfaf77a305285112a3ab6fe5b77f5f6395e117034a1a10a4e
7
- data.tar.gz: 0a0e57768b4d1311cf083856caa3de2b09ca08caf388fd9e0cc92e0c3846007ec72c5e7d3d19313b20d23fc0eb70d4e939cd1ec383af27d2aa75c02c0fbc7047
6
+ metadata.gz: 738e5c246a9c1c5ab0323c53786f0e8bacf0474908120e73f014ed0d08c2e2eb39b15ab9ebe9ce4c81afd0f8d023862093b23899b1037fadd57a5a9a2af14566
7
+ data.tar.gz: 6ec03a1ccc7b1bd47791872b1f54b238aacf9f43107ed945469326e1e9038274925f605f15730465c5d341f02a6fc3de06279d9cd43cd774406628b5ec14d7f9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.3.1] - 2024-12-18
4
+
5
+ - Fixes issues with passing extra arguments to inhouse icons
6
+
3
7
  ## [0.3.0] - 2024-12-18
4
8
 
5
9
  - Adds custom Inhouse icons
@@ -3,12 +3,12 @@
3
3
  module Protos
4
4
  module Icon
5
5
  module Inhouse
6
- def self.build(name)
6
+ def self.build(name, ...)
7
7
  filepath = lookup(name)
8
8
  Component.new(filepath)
9
9
  end
10
10
 
11
- def self.lookup(name)
11
+ def self.lookup(name, ...)
12
12
  assets = Pathname.new(GEM_ROOT).join("assets/inhouse")
13
13
 
14
14
  assets
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Protos
4
4
  module Icon
5
- VERSION = "0.3.0"
5
+ VERSION = "0.3.1"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: protos-icon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nolan J Tait