libbin 1.0.0 → 1.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +0 -0
- data/ext/libbin/extconf.rb +3 -0
- data/ext/libbin/half.c +719 -0
- data/ext/libbin/half.h +18 -0
- data/ext/libbin/libbin_c.c +65 -0
- data/ext/libbin/pghalf.c +449 -0
- data/ext/libbin/pghalf.h +9 -0
- data/lib/libbin.rb +106 -71
- data/lib/libbin/alignment.rb +0 -0
- data/lib/libbin/data_types.rb +140 -65
- data/libbin.gemspec +3 -2
- metadata +10 -3
data/libbin.gemspec
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'libbin'
|
3
|
-
s.version = "1.0.
|
3
|
+
s.version = "1.0.5"
|
4
4
|
s.author = "Brice Videau"
|
5
5
|
s.email = "brice.videau@imag.fr"
|
6
6
|
s.homepage = "https://github.com/kerilk/libbin"
|
7
7
|
s.summary = "Library for loading and converting binary files"
|
8
8
|
s.description = "Read, write and convert Binary data in Ruby."
|
9
|
-
s.files = Dir[ 'libbin.gemspec', 'LICENSE', 'lib/**/*.rb' ]
|
9
|
+
s.files = Dir[ 'libbin.gemspec', 'LICENSE', 'lib/**/*.rb', 'ext/libbin/extconf.rb', 'ext/libbin/*.c', 'ext/libbin/*.h' ]
|
10
|
+
s.extensions << 'ext/libbin/extconf.rb'
|
10
11
|
s.has_rdoc = false
|
11
12
|
s.license = 'BSD-2-Clause'
|
12
13
|
s.required_ruby_version = '>= 2.0.0'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libbin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brice Videau
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-09-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: float-formats
|
@@ -33,10 +33,17 @@ dependencies:
|
|
33
33
|
description: Read, write and convert Binary data in Ruby.
|
34
34
|
email: brice.videau@imag.fr
|
35
35
|
executables: []
|
36
|
-
extensions:
|
36
|
+
extensions:
|
37
|
+
- ext/libbin/extconf.rb
|
37
38
|
extra_rdoc_files: []
|
38
39
|
files:
|
39
40
|
- LICENSE
|
41
|
+
- ext/libbin/extconf.rb
|
42
|
+
- ext/libbin/half.c
|
43
|
+
- ext/libbin/half.h
|
44
|
+
- ext/libbin/libbin_c.c
|
45
|
+
- ext/libbin/pghalf.c
|
46
|
+
- ext/libbin/pghalf.h
|
40
47
|
- lib/libbin.rb
|
41
48
|
- lib/libbin/alignment.rb
|
42
49
|
- lib/libbin/data_types.rb
|