Skip to content

Commit 79901e2

Browse files
authored
Fix rails g ruby_ui:component generator (#209)
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]>
1 parent aa983e8 commit 79901e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ruby_ui.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
77
s.description = "Ruby UI is a UI Component Library for Ruby developers. Built on top of the Phlex Framework."
88
s.authors = ["George Kettle"]
99
s.email = "[email protected]"
10-
s.files = Dir["lib/**/*.rb", "tasks/**/*.rake"]
10+
s.files = Dir["lib/**/*.{rb,yml}", "tasks/**/*.rake"]
1111
s.require_path = "lib"
1212
s.homepage =
1313
"https://rubygems.org/gems/ruby_ui"

0 commit comments

Comments
 (0)