From f54de9dd3d00bcb1af8ba236105a26b4169efc8a Mon Sep 17 00:00:00 2001 From: stephann <3025661+stephannv@users.noreply.github.com> Date: Sat, 30 Nov 2024 07:58:07 -0300 Subject: [PATCH] Fix `rails g ruby_ui:component` generator 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 <3025661+stephannv@users.noreply.github.com> --- ruby_ui.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruby_ui.gemspec b/ruby_ui.gemspec index 4b325dc9..c18524a2 100644 --- a/ruby_ui.gemspec +++ b/ruby_ui.gemspec @@ -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 = "george.kettle@icloud.com" - 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"