autobuild 1.6.0.rc5 → 1.6.0.rc6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -218,9 +218,9 @@ module Autobuild
218
218
  end
219
219
 
220
220
  require 'rbconfig'
221
- ruby_arch = File.basename(Config::CONFIG['archdir'])
221
+ ruby_arch = File.basename(RbConfig::CONFIG['archdir'])
222
222
  candidates = %w{rubylibdir archdir sitelibdir sitearchdir vendorlibdir vendorarchdir}.
223
- map { |key| Config::CONFIG[key] }.
223
+ map { |key| RbConfig::CONFIG[key] }.
224
224
  map { |path| path.gsub(/.*lib(?:32|64)?\/(\w*ruby\/)/, '\\1') }.
225
225
  each do |subdir|
226
226
  if File.directory?("#{newprefix}/lib/#{subdir}")
@@ -252,7 +252,7 @@ module Autobuild
252
252
  if Autobuild.programs['ruby']
253
253
  Autobuild.tool('ruby')
254
254
  else
255
- ruby_bin = Config::CONFIG['RUBY_INSTALL_NAME']
255
+ ruby_bin = RbConfig::CONFIG['RUBY_INSTALL_NAME']
256
256
  Autobuild.programs['ruby'] = ruby_bin
257
257
  end
258
258
  end
@@ -1,5 +1,5 @@
1
1
  module Autobuild
2
- VERSION = "1.6.0.rc5" unless defined? Autobuild::VERSION
2
+ VERSION = "1.6.0.rc6" unless defined? Autobuild::VERSION
3
3
  end
4
4
 
5
5
 
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autobuild
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15424095
4
+ hash: 15424089
5
5
  prerelease: 6
6
6
  segments:
7
7
  - 1
8
8
  - 6
9
9
  - 0
10
10
  - rc
11
- - 5
12
- version: 1.6.0.rc5
11
+ - 6
12
+ version: 1.6.0.rc6
13
13
  platform: ruby
14
14
  authors:
15
15
  - Sylvain Joyeux