summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--spec/maths_spec.rb1
-rw-r--r--tasks/constants.rb18
-rw-r--r--tasks/svn.rake2
3 files changed, 10 insertions, 11 deletions
diff --git a/spec/maths_spec.rb b/spec/maths_spec.rb
index aaa76e6..ec1ba6e 100644
--- a/spec/maths_spec.rb
+++ b/spec/maths_spec.rb
@@ -62,7 +62,6 @@ describe "Maths" do
.should eql Bignum.from_bytes(0x217962755220666f207463657073612074656577732061207369206d756e676942.to_bytes)
end
it '#bits' do
- (1073741824..1073742000).each do |n| n.should be_a Bignum end
(1073741824..1073742000).each do |n| n.bits.should eql 32 end
(4294967000..4294967295).each do |n| n.bits.should eql 32 end
(4294967296..4294967500).each do |n| n.bits.should eql 40 end
diff --git a/tasks/constants.rb b/tasks/constants.rb
index 78a7625..8a7fdfa 100644
--- a/tasks/constants.rb
+++ b/tasks/constants.rb
@@ -27,19 +27,19 @@ if USE_RAKE_COMPILER
ENV['RUBY_CC_VERSION'] = '1.8.7:1.9.2'
end
-LIBEXT = case Config::CONFIG['host_os'].downcase
+LIBEXT = case RbConfig::CONFIG['host_os'].downcase
when /darwin/
"dylib"
when /mswin|mingw/
"dll"
else
- Config::CONFIG['DLEXT']
+ RbConfig::CONFIG['DLEXT']
end
-CPU = case Config::CONFIG['host_cpu'].downcase
+CPU = case RbConfig::CONFIG['host_cpu'].downcase
when /i[3456]86/
# Darwin always reports i686, even when running in 64bit mode
- if Config::CONFIG['host_os'] =~ /darwin/ && 0xfee1deadbeef.is_a?(Fixnum)
+ if RbConfig::CONFIG['host_os'] =~ /darwin/ && 0xfee1deadbeef.is_a?(Fixnum)
"x86_64"
else
"i386"
@@ -51,10 +51,10 @@ CPU = case Config::CONFIG['host_cpu'].downcase
when /ppc|powerpc/
"powerpc"
else
- Config::CONFIG['host_cpu']
+ RbConfig::CONFIG['host_cpu']
end
-OS = case Config::CONFIG['host_os'].downcase
+OS = case RbConfig::CONFIG['host_os'].downcase
when /linux/
"linux"
when /darwin/
@@ -68,12 +68,12 @@ OS = case Config::CONFIG['host_os'].downcase
when /mswin|mingw/
"win32"
else
- Config::CONFIG['host_os'].downcase
+ RbConfig::CONFIG['host_os'].downcase
end
-CC=ENV['CC'] || Config::CONFIG['CC'] || "gcc"
+CC=ENV['CC'] || RbConfig::CONFIG['CC'] || "gcc"
-GMAKE = Config::CONFIG['host_os'].downcase =~ /bsd|solaris/ ? "gmake" : "make"
+GMAKE = RbConfig::CONFIG['host_os'].downcase =~ /bsd|solaris/ ? "gmake" : "make"
DIFF = if WIN32 then 'diff.exe'
diff --git a/tasks/svn.rake b/tasks/svn.rake
index ae9426e..b831cbb 100644
--- a/tasks/svn.rake
+++ b/tasks/svn.rake
@@ -35,7 +35,7 @@ namespace :svn do
puts "Creating SVN tag '#{tag}'"
unless system "svn cp -m '#{msg}' #{trunk} #{tag}"
- abort "Tag creation failed"
+ abort "Tag creation failed"
end
end