summaryrefslogtreecommitdiffstats
path: root/ruby
diff options
context:
space:
mode:
Diffstat (limited to 'ruby')
-rw-r--r--ruby/ruby-multipart-post/ruby-multipart-post.SlackBuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/ruby/ruby-multipart-post/ruby-multipart-post.SlackBuild b/ruby/ruby-multipart-post/ruby-multipart-post.SlackBuild
index 844e80b7ff..2ddc4ae094 100644
--- a/ruby/ruby-multipart-post/ruby-multipart-post.SlackBuild
+++ b/ruby/ruby-multipart-post/ruby-multipart-post.SlackBuild
@@ -80,12 +80,12 @@ printf("%s/%s/gems/%s\n",
gem specification $CWD/$SRCNAM-$VERSION.gem | \
ruby -r yaml -r rbconfig -e '
-c = Config::CONFIG
+c = RbConfig::CONFIG
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)