RubyInline 3.10.0 → 3.10.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data.tar.gz.sig +0 -0
  2. data/History.txt +6 -0
  3. data/lib/inline.rb +3 -2
  4. metadata +5 -5
  5. metadata.gz.sig +0 -0
data.tar.gz.sig CHANGED
Binary file
data/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ === 3.10.1 / 2011-09-13
2
+
3
+ * 1 bug fix:
4
+
5
+ * Fix crap_for_windoze to use RbConfig for RUBY_SO_NAME. (jasonrickman)
6
+
1
7
  === 3.10.0 / 2011-08-30
2
8
 
3
9
  * 2 minor enhancements:
data/lib/inline.rb CHANGED
@@ -65,7 +65,7 @@ class CompilationError < RuntimeError; end
65
65
  # the current namespace.
66
66
 
67
67
  module Inline
68
- VERSION = '3.10.0'
68
+ VERSION = '3.10.1'
69
69
 
70
70
  WINDOZE = /mswin|mingw/ =~ RUBY_PLATFORM
71
71
  RUBINIUS = defined? RUBY_ENGINE
@@ -628,7 +628,8 @@ VALUE #{method}_equals(VALUE value) {
628
628
  when /mswin32/ then
629
629
  " -link /LIBPATH:\"#{RbConfig::CONFIG['libdir']}\" /DEFAULTLIB:\"#{RbConfig::CONFIG['LIBRUBY']}\" /INCREMENTAL:no /EXPORT:Init_#{module_name}"
630
630
  when /mingw32/ then
631
- " -Wl,--enable-auto-import -L#{RbConfig::CONFIG['libdir']} -lmsvcrt-ruby18"
631
+ c = RbConfig::CONFIG
632
+ " -Wl,--enable-auto-import -L#{c['libdir']} -l#{c['RUBY_SO_NAME']}"
632
633
  when /i386-cygwin/ then
633
634
  ' -L/usr/local/lib -lruby.dll'
634
635
  else
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: RubyInline
3
3
  version: !ruby/object:Gem::Version
4
- hash: 47
4
+ hash: 45
5
5
  prerelease:
6
6
  segments:
7
7
  - 3
8
8
  - 10
9
- - 0
10
- version: 3.10.0
9
+ - 1
10
+ version: 3.10.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ryan Davis
@@ -36,7 +36,7 @@ cert_chain:
36
36
  FBHgymkyj/AOSqKRIpXPhjC6
37
37
  -----END CERTIFICATE-----
38
38
 
39
- date: 2011-08-31 00:00:00 Z
39
+ date: 2011-09-13 00:00:00 Z
40
40
  dependencies:
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: ZenTest
@@ -146,7 +146,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
146
146
  requirements:
147
147
  - A POSIX environment and a compiler for your language.
148
148
  rubyforge_project: rubyinline
149
- rubygems_version: 1.8.9
149
+ rubygems_version: 1.8.10
150
150
  signing_key:
151
151
  specification_version: 3
152
152
  summary: Inline allows you to write foreign code within your ruby code
metadata.gz.sig CHANGED
Binary file