From 51f9c46e7ac1ec7188a7fe08923637d6f6617cab Mon Sep 17 00:00:00 2001 From: stephann <3025661+stephannv@users.noreply.github.com> Date: Tue, 25 Mar 2025 13:17:17 -0300 Subject: [PATCH 1/2] Fix included files on bundled gem Signed-off-by: stephann <3025661+stephannv@users.noreply.github.com> --- ruby_ui.gemspec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ruby_ui.gemspec b/ruby_ui.gemspec index ba5202d3..a6dff5da 100644 --- a/ruby_ui.gemspec +++ b/ruby_ui.gemspec @@ -7,7 +7,11 @@ 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,yml,erb}", "tasks/**/*.rake"] + s.files = Dir[ + "README.md", + "LICENSE.txt", + "lib/**/*" + ] s.require_path = "lib" s.homepage = "https://rubygems.org/gems/ruby_ui" From 00a698d297bc89ffebc0e26033a6dde37a74f66b Mon Sep 17 00:00:00 2001 From: stephann <3025661+stephannv@users.noreply.github.com> Date: Tue, 25 Mar 2025 13:18:14 -0300 Subject: [PATCH 2/2] Update code style Signed-off-by: stephann <3025661+stephannv@users.noreply.github.com> --- ruby_ui.gemspec | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ruby_ui.gemspec b/ruby_ui.gemspec index a6dff5da..05618dca 100644 --- a/ruby_ui.gemspec +++ b/ruby_ui.gemspec @@ -7,11 +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[ - "README.md", - "LICENSE.txt", - "lib/**/*" - ] + s.files = Dir["README.md", "LICENSE.txt", "lib/**/*"] s.require_path = "lib" s.homepage = "https://rubygems.org/gems/ruby_ui"