ffi 1.1.1.rc1 → 1.1.1.rc2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of ffi might be problematic. Click here for more details.

data/Rakefile CHANGED
@@ -74,7 +74,7 @@ PROJ.name = 'ffi'
74
74
  PROJ.authors = 'Wayne Meissner'
75
75
  PROJ.email = 'wmeissner@gmail.com'
76
76
  PROJ.url = 'http://wiki.github.com/ffi/ffi'
77
- PROJ.version = '1.1.1.rc1'
77
+ PROJ.version = '1.1.1.rc2'
78
78
  PROJ.rubyforge.name = 'ffi'
79
79
  PROJ.readme_file = 'README.rdoc'
80
80
 
@@ -200,7 +200,7 @@ static VALUE custom_trampoline(int argc, VALUE* argv, VALUE self, Closure*);
200
200
  *
201
201
  * This results in approx a 30% speedup for x86_64 FFI dispatch
202
202
  */
203
- asm(
203
+ __asm__(
204
204
  ".text\n\t"
205
205
  ".globl ffi_trampoline\n\t"
206
206
  ".globl _ffi_trampoline\n\t"
@@ -241,7 +241,7 @@ static VALUE custom_trampoline(caddr_t args, Closure*);
241
241
  * This does not make a discernable difference vs a raw closure, so for now,
242
242
  * it is not enabled.
243
243
  */
244
- asm(
244
+ __asm__(
245
245
  ".text\n\t"
246
246
  ".globl ffi_trampoline\n\t"
247
247
  ".globl _ffi_trampoline\n\t"
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ffi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1.rc1
4
+ version: 1.1.1.rc2
5
5
  prerelease: 6
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-07-21 00:00:00.000000000 Z
12
+ date: 2012-07-23 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: ! 'Ruby-FFI is a ruby extension for programmatically loading dynamic
15
15
 
@@ -505,7 +505,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
505
505
  version: 1.3.1
506
506
  requirements: []
507
507
  rubyforge_project: ffi
508
- rubygems_version: 1.8.23
508
+ rubygems_version: 1.8.11
509
509
  signing_key:
510
510
  specification_version: 3
511
511
  summary: Ruby-FFI is a ruby extension for programmatically loading dynamic libraries,