Skip to content

Commit a8f0239

Browse files
committed
Fix gemspec
1 parent 9dc922b commit a8f0239

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## [Unreleased]
22

3+
## [0.1.1] - 2022-10-02
4+
5+
- Yanked 0.1.0
6+
- Fixed a whoopsie on `gemspec` that prevented icons from being pushed to RubyGems.
7+
38
## [0.1.0] - 2022-10-02
49

510
- Initial release

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
lucide-rails (0.1.0)
4+
lucide-rails (0.1.1)
55
railties (>= 4.1.0)
66

77
GEM

lib/lucide-rails/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module LucideRails
4-
VERSION = "0.1.0"
4+
VERSION = "0.1.1"
55
end

lucide-rails.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
2020

2121
# Specify which files should be added to the gem when it is released.
2222
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23-
spec.files = Dir["LICENSE.txt", "README.md", "lib/**/*", "icons/stripped/"]
23+
spec.files = Dir["LICENSE.txt", "README.md", "lib/**/*", "icons/stripped/*", "icons/stripped.bin.gz"]
2424
spec.require_paths = ["lib"]
2525

2626
spec.add_dependency("railties", ">= 4.1.0")

0 commit comments

Comments
 (0)