ffi 1.1.0 → 1.1.1.rc1

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.0'
77
+ PROJ.version = '1.1.1.rc1'
78
78
  PROJ.rubyforge.name = 'ffi'
79
79
  PROJ.readme_file = 'README.rdoc'
80
80
 
@@ -31,7 +31,7 @@ typedef int bool;
31
31
  #include <limits.h>
32
32
  #include <ruby.h>
33
33
  #include "rbffi.h"
34
- #include "endian.h"
34
+ #include "rbffi_endian.h"
35
35
  #include "AbstractMemory.h"
36
36
 
37
37
  #define BUFFER_EMBED_MAXLEN (8)
@@ -32,7 +32,7 @@ typedef int bool;
32
32
  #endif
33
33
  #include <ruby.h>
34
34
  #include <ctype.h>
35
- #include "endian.h"
35
+ #include "rbffi_endian.h"
36
36
  #include "Platform.h"
37
37
  #if defined(__linux__) || defined(__GNU__) || defined(__GLIBC__)
38
38
  #include <gnu/lib-names.h>
@@ -31,7 +31,7 @@ typedef int bool;
31
31
  #include <limits.h>
32
32
  #include <ruby.h>
33
33
  #include "rbffi.h"
34
- #include "endian.h"
34
+ #include "rbffi_endian.h"
35
35
  #include "AbstractMemory.h"
36
36
  #include "Pointer.h"
37
37
 
@@ -129,7 +129,6 @@ struct_initialize_copy(VALUE self, VALUE other)
129
129
  {
130
130
  Struct* src;
131
131
  Struct* dst;
132
- VALUE memargs[3];
133
132
 
134
133
  Data_Get_Struct(self, Struct, dst);
135
134
  Data_Get_Struct(other, Struct, src);
@@ -8,7 +8,7 @@
8
8
  #include <sys/types.h>
9
9
 
10
10
  #if defined(__linux__) || defined(__CYGWIN__) || defined(__GNU__) || defined(__GLIBC__)
11
- # include_next <endian.h>
11
+ # include <endian.h>
12
12
  #endif
13
13
 
14
14
  #ifdef __sun
Binary file
metadata CHANGED
@@ -1,35 +1,30 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: ffi
3
- version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 1
7
- - 1
8
- - 0
9
- version: 1.1.0
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.1.rc1
5
+ prerelease: 6
10
6
  platform: ruby
11
- authors:
7
+ authors:
12
8
  - Wayne Meissner
13
9
  autorequire:
14
10
  bindir: bin
15
11
  cert_chain: []
16
-
17
- date: 2012-07-18 00:00:00 +10:00
18
- default_executable:
12
+ date: 2012-07-21 00:00:00.000000000 Z
19
13
  dependencies: []
14
+ description: ! 'Ruby-FFI is a ruby extension for programmatically loading dynamic
20
15
 
21
- description: |-
22
- Ruby-FFI is a ruby extension for programmatically loading dynamic
23
16
  libraries, binding functions within them, and calling those functions
17
+
24
18
  from Ruby code. Moreover, a Ruby-FFI extension works without changes
19
+
25
20
  on Ruby and JRuby. Discover why should you write your next extension
26
- 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].'
27
23
  email: wmeissner@gmail.com
28
24
  executables: []
29
-
30
- extensions:
25
+ extensions:
31
26
  - ext/ffi_c/extconf.rb
32
- extra_rdoc_files:
27
+ extra_rdoc_files:
33
28
  - History.txt
34
29
  - README.rdoc
35
30
  - lib/ffi/platform/arm-linux/types.conf
@@ -59,7 +54,7 @@ extra_rdoc_files:
59
54
  - lib/ffi/platform/x86_64-openbsd/types.conf
60
55
  - lib/ffi/platform/x86_64-solaris/types.conf
61
56
  - lib/ffi_c.bundle
62
- files:
57
+ files:
63
58
  - History.txt
64
59
  - LICENSE
65
60
  - README.rdoc
@@ -108,7 +103,6 @@ files:
108
103
  - ext/ffi_c/Types.h
109
104
  - ext/ffi_c/Variadic.c
110
105
  - ext/ffi_c/compat.h
111
- - ext/ffi_c/endian.h
112
106
  - ext/ffi_c/extconf.rb
113
107
  - ext/ffi_c/ffi.c
114
108
  - ext/ffi_c/libffi.bsd.mk
@@ -389,6 +383,7 @@ files:
389
383
  - ext/ffi_c/libffi/testsuite/libffi.special/unwindtest_ffi_call.cc
390
384
  - ext/ffi_c/libffi/texinfo.tex
391
385
  - ext/ffi_c/rbffi.h
386
+ - ext/ffi_c/rbffi_endian.h
392
387
  - ext/ffi_c/win32/stdint.h
393
388
  - gen/Rakefile
394
389
  - lib/ffi.rb
@@ -485,39 +480,34 @@ files:
485
480
  - tasks/svn.rake
486
481
  - tasks/test.rake
487
482
  - tasks/yard.rake
488
- has_rdoc: true
489
483
  homepage: http://wiki.github.com/ffi/ffi
490
484
  licenses: []
491
-
492
485
  post_install_message:
493
- rdoc_options:
486
+ rdoc_options:
494
487
  - -x
495
488
  - ext
496
489
  - --main
497
490
  - README.rdoc
498
- require_paths:
491
+ require_paths:
499
492
  - lib
500
493
  - ext
501
- required_ruby_version: !ruby/object:Gem::Requirement
502
- requirements:
503
- - - ">="
504
- - !ruby/object:Gem::Version
505
- segments:
506
- - 0
507
- version: "0"
508
- required_rubygems_version: !ruby/object:Gem::Requirement
509
- requirements:
510
- - - ">="
511
- - !ruby/object:Gem::Version
512
- segments:
513
- - 0
514
- version: "0"
494
+ required_ruby_version: !ruby/object:Gem::Requirement
495
+ none: false
496
+ requirements:
497
+ - - ! '>='
498
+ - !ruby/object:Gem::Version
499
+ version: '0'
500
+ required_rubygems_version: !ruby/object:Gem::Requirement
501
+ none: false
502
+ requirements:
503
+ - - ! '>'
504
+ - !ruby/object:Gem::Version
505
+ version: 1.3.1
515
506
  requirements: []
516
-
517
507
  rubyforge_project: ffi
518
- rubygems_version: 1.3.6
508
+ rubygems_version: 1.8.23
519
509
  signing_key:
520
510
  specification_version: 3
521
- 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
522
513
  test_files: []
523
-