gem-compile 0.0.1 → 0.0.2

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.
Files changed (2) hide show
  1. data/lib/rubygems/compiler.rb +2 -2
  2. metadata +1 -1
@@ -73,7 +73,7 @@ class Gem::Compiler
73
73
 
74
74
  File.open('gem_make.out', 'wb') { |f| f.puts results }
75
75
 
76
- mesage = <<-EOF
76
+ message = <<-EOF
77
77
  ERROR: Failed to build gem native extension."
78
78
 
79
79
  #{results}
@@ -81,7 +81,7 @@ ERROR: Failed to build gem native extension."
81
81
  Results logged to #{File.join(Dir.pwd, 'gem_make.out')}
82
82
  EOF
83
83
 
84
- raise ExtensionBuildError, message
84
+ raise Gem::Exception, message
85
85
  ensure
86
86
  Dir.chdir start_dir
87
87
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gem-compile
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - FURUHASHI Sadayuki