ffi 1.1.0.rc2 → 1.1.0.rc3

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.

Files changed (4) hide show
  1. data/Rakefile +1 -1
  2. data/lib/ffi/platform.rb +1 -1
  3. data/lib/ffi_c.bundle +0 -0
  4. metadata +29 -46
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.0.rc2'
77
+ PROJ.version = '1.1.0.rc3'
78
78
  PROJ.rubyforge.name = 'ffi'
79
79
  PROJ.readme_file = 'README.rdoc'
80
80
 
@@ -90,7 +90,7 @@ module FFI
90
90
  end
91
91
 
92
92
  LIBC = if IS_WINDOWS
93
- "msvcrt.dll"
93
+ RbConfig::CONFIG['RUBY_SO_NAME'].split('-')[-2] + '.dll'
94
94
  elsif IS_GNU
95
95
  GNU_LIBC
96
96
  else
Binary file
metadata CHANGED
@@ -1,38 +1,30 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: ffi
3
- version: !ruby/object:Gem::Version
4
- hash: 1213833217
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.0.rc3
5
5
  prerelease: 6
6
- segments:
7
- - 1
8
- - 1
9
- - 0
10
- - rc
11
- - 2
12
- version: 1.1.0.rc2
13
6
  platform: ruby
14
- authors:
7
+ authors:
15
8
  - Wayne Meissner
16
9
  autorequire:
17
10
  bindir: bin
18
11
  cert_chain: []
19
-
20
- date: 2012-04-05 00:00:00 +10:00
21
- default_executable:
12
+ date: 2012-04-21 00:00:00.000000000 Z
22
13
  dependencies: []
14
+ description: ! 'Ruby-FFI is a ruby extension for programmatically loading dynamic
23
15
 
24
- description: |-
25
- Ruby-FFI is a ruby extension for programmatically loading dynamic
26
16
  libraries, binding functions within them, and calling those functions
17
+
27
18
  from Ruby code. Moreover, a Ruby-FFI extension works without changes
19
+
28
20
  on Ruby and JRuby. Discover why should you write your next extension
29
- using Ruby-FFI here[http://wiki.github.com/ffi/ffi/why-use-ffi].
21
+
22
+ using Ruby-FFI here[http://wiki.github.com/ffi/ffi/why-use-ffi].'
30
23
  email: wmeissner@gmail.com
31
24
  executables: []
32
-
33
- extensions:
25
+ extensions:
34
26
  - ext/ffi_c/extconf.rb
35
- extra_rdoc_files:
27
+ extra_rdoc_files:
36
28
  - History.txt
37
29
  - README.rdoc
38
30
  - lib/ffi/platform/arm-linux/types.conf
@@ -61,7 +53,8 @@ extra_rdoc_files:
61
53
  - lib/ffi/platform/x86_64-netbsd/types.conf
62
54
  - lib/ffi/platform/x86_64-openbsd/types.conf
63
55
  - lib/ffi/platform/x86_64-solaris/types.conf
64
- files:
56
+ - lib/ffi_c.bundle
57
+ files:
65
58
  - History.txt
66
59
  - LICENSE
67
60
  - README.rdoc
@@ -442,6 +435,7 @@ files:
442
435
  - lib/ffi/types.rb
443
436
  - lib/ffi/union.rb
444
437
  - lib/ffi/variadic.rb
438
+ - lib/ffi_c.bundle
445
439
  - spec/ffi/async_callback_spec.rb
446
440
  - spec/ffi/bool_spec.rb
447
441
  - spec/ffi/buffer_spec.rb
@@ -486,45 +480,34 @@ files:
486
480
  - tasks/svn.rake
487
481
  - tasks/test.rake
488
482
  - tasks/yard.rake
489
- has_rdoc: true
490
483
  homepage: http://wiki.github.com/ffi/ffi
491
484
  licenses: []
492
-
493
485
  post_install_message:
494
- rdoc_options:
486
+ rdoc_options:
495
487
  - -x
496
488
  - ext
497
489
  - --main
498
490
  - README.rdoc
499
- require_paths:
491
+ require_paths:
500
492
  - lib
501
493
  - ext
502
- required_ruby_version: !ruby/object:Gem::Requirement
494
+ required_ruby_version: !ruby/object:Gem::Requirement
503
495
  none: false
504
- requirements:
505
- - - ">="
506
- - !ruby/object:Gem::Version
507
- hash: 3
508
- segments:
509
- - 0
510
- version: "0"
511
- required_rubygems_version: !ruby/object:Gem::Requirement
496
+ requirements:
497
+ - - ! '>='
498
+ - !ruby/object:Gem::Version
499
+ version: '0'
500
+ required_rubygems_version: !ruby/object:Gem::Requirement
512
501
  none: false
513
- requirements:
514
- - - ">"
515
- - !ruby/object:Gem::Version
516
- hash: 25
517
- segments:
518
- - 1
519
- - 3
520
- - 1
502
+ requirements:
503
+ - - ! '>'
504
+ - !ruby/object:Gem::Version
521
505
  version: 1.3.1
522
506
  requirements: []
523
-
524
507
  rubyforge_project: ffi
525
- rubygems_version: 1.6.2
508
+ rubygems_version: 1.8.11
526
509
  signing_key:
527
510
  specification_version: 3
528
- summary: Ruby-FFI is a ruby extension for programmatically loading dynamic libraries, binding functions within them, and calling those functions from Ruby code
511
+ summary: Ruby-FFI is a ruby extension for programmatically loading dynamic libraries,
512
+ binding functions within them, and calling those functions from Ruby code
529
513
  test_files: []
530
-