summaryrefslogtreecommitdiffstats
path: root/ruby
diff options
context:
space:
mode:
author David Spencer <baildon.research@googlemail.com>2015-09-07 14:51:14 +0100
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2016-01-17 09:40:16 +0700
commitd3212319301f7872a7c54a6f4c41a43048392918 (patch)
tree3a6d2badf3450e2db5ff9f47aac80d8b9cfbe74d /ruby
parent69ebd8723a57f0f9e2b7b43543bd67d71278f636 (diff)
downloadslackbuilds-d3212319301f7872a7c54a6f4c41a43048392918.tar.gz
slackbuilds-d3212319301f7872a7c54a6f4c41a43048392918.tar.xz
ruby/sqlite3: Modified SlackBuild for ruby-2.2.3.
Signed-off-by: David Spencer <baildon.research@googlemail.com> Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'ruby')
-rw-r--r--ruby/sqlite3/sqlite3.SlackBuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/ruby/sqlite3/sqlite3.SlackBuild b/ruby/sqlite3/sqlite3.SlackBuild
index f57f3adb52..43ce0fdcd3 100644
--- a/ruby/sqlite3/sqlite3.SlackBuild
+++ b/ruby/sqlite3/sqlite3.SlackBuild
@@ -71,12 +71,12 @@ printf("%s/%s/gems/%s\n",
gem specification $CWD/$PRGNAM-$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)