diff options
author | David Spencer <baildon.research@googlemail.com> | 2016-06-15 19:57:55 +0100 |
---|---|---|
committer | David Spencer <baildon.research@googlemail.com> | 2016-06-15 19:57:55 +0100 |
commit | 13f61521afc480fbb330036889c4af9e6210b439 (patch) | |
tree | abf41b7f2bdc8005b19035c9b380a1a41922ff75 | |
parent | 04026cbfb24e2e78161c6ab257441e47683dc3db (diff) |
rubygem-template: Updated for ruby-2.2.5.
-rw-r--r-- | rubygem-template.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rubygem-template.SlackBuild b/rubygem-template.SlackBuild index 3301f10..68a424e 100644 --- a/rubygem-template.SlackBuild +++ b/rubygem-template.SlackBuild @@ -110,7 +110,7 @@ path = sprintf("%s/%s/gems/%s", c["libdir"], c["RUBY_INSTALL_NAME"], c["ruby_version"]) -sys_gemspecs = Dir.glob(path + "/specifications/*").map {|g| gs = Gem::Specification.load(g); gs.name } +sys_gemspecs = Dir.glob(path + "/specifications/**/*.gemspec").map {|g| gs = Gem::Specification.load(g); gs.name } obj = Gem::Specification.from_yaml($stdin) obj.dependencies.each {|dep| if not(dep.type == :runtime) |