Skip to content

Commit

Permalink
Fix rails g ruby_ui:component generator (#209)
Browse files Browse the repository at this point in the history
The `dependencies.yml` file that contains some info about component dependencies isn't being included in RubyUI gem files on release, because of this, some components could not be generated correctly.

Signed-off-by: stephann <[email protected]>
  • Loading branch information
stephannv authored Nov 30, 2024
1 parent aa983e8 commit 79901e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ruby_ui.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Gem::Specification.new do |s|
s.description = "Ruby UI is a UI Component Library for Ruby developers. Built on top of the Phlex Framework."
s.authors = ["George Kettle"]
s.email = "[email protected]"
s.files = Dir["lib/**/*.rb", "tasks/**/*.rake"]
s.files = Dir["lib/**/*.{rb,yml}", "tasks/**/*.rake"]
s.require_path = "lib"
s.homepage =
"https://rubygems.org/gems/ruby_ui"
Expand Down

1 comment on commit 79901e2

@xzgyb
Copy link

@xzgyb xzgyb commented on 79901e2 Dec 27, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The erb files in the lib/generators/ruby_ui/install/templates directory were not included in the gem file at the time of release. Perhaps this needs to be modified?

Please sign in to comment.