Skip to content

Commit

Permalink
Fix gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
heyvito committed Oct 2, 2022
1 parent 9dc922b commit a8f0239
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## [Unreleased]

## [0.1.1] - 2022-10-02

- Yanked 0.1.0
- Fixed a whoopsie on `gemspec` that prevented icons from being pushed to RubyGems.

## [0.1.0] - 2022-10-02

- Initial release
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
lucide-rails (0.1.0)
lucide-rails (0.1.1)
railties (>= 4.1.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion lib/lucide-rails/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module LucideRails
VERSION = "0.1.0"
VERSION = "0.1.1"
end
2 changes: 1 addition & 1 deletion lucide-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |spec|

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

spec.add_dependency("railties", ">= 4.1.0")
Expand Down

0 comments on commit a8f0239

Please sign in to comment.