biodiversity 4.0.1 → 4.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG +4 -0
- data/clib/win/libgnparser.h +93 -0
- data/clib/win/libgnparser.so +0 -0
- data/lib/biodiversity/parser.rb +1 -1
- data/lib/biodiversity/version.rb +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e1a5a67bcea7c0e234726d7702c4224b109a7852899a2d3b84d25b38ee9ad84
|
4
|
+
data.tar.gz: 69e7781d05858faa63ed40b4d964499e0718bec3b6fecc9e5620879bd72acf34
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be191bc9156447da5883c7a910b83012422869bbe7fdb6950833e2090b1ad33fb521dd5196376fba821d2991857a5c0adcc06b80f5752b7434c428a449d662b1
|
7
|
+
data.tar.gz: 4bc7244b2d4c24146aa19f191c78e9645779298cfb67a18904aaddae3c0baa866035ecfed82827bc2e78cde54e8ee4fd9dccdedd76f8a43d222f06212a07ce35
|
data/CHANGELOG
CHANGED
@@ -0,0 +1,93 @@
|
|
1
|
+
/* Code generated by cmd/cgo; DO NOT EDIT. */
|
2
|
+
|
3
|
+
/* package gitlab.com/gogna/gnparser/binding */
|
4
|
+
|
5
|
+
|
6
|
+
#line 1 "cgo-builtin-export-prolog"
|
7
|
+
|
8
|
+
#include <stddef.h> /* for ptrdiff_t below */
|
9
|
+
|
10
|
+
#ifndef GO_CGO_EXPORT_PROLOGUE_H
|
11
|
+
#define GO_CGO_EXPORT_PROLOGUE_H
|
12
|
+
|
13
|
+
#ifndef GO_CGO_GOSTRING_TYPEDEF
|
14
|
+
typedef struct { const char *p; ptrdiff_t n; } _GoString_;
|
15
|
+
#endif
|
16
|
+
|
17
|
+
#endif
|
18
|
+
|
19
|
+
/* Start of preamble from import "C" comments. */
|
20
|
+
|
21
|
+
|
22
|
+
#line 3 "main.go"
|
23
|
+
|
24
|
+
#include "stdlib.h"
|
25
|
+
|
26
|
+
#line 1 "cgo-generated-wrapper"
|
27
|
+
|
28
|
+
|
29
|
+
/* End of preamble from import "C" comments. */
|
30
|
+
|
31
|
+
|
32
|
+
/* Start of boilerplate cgo prologue. */
|
33
|
+
#line 1 "cgo-gcc-export-header-prolog"
|
34
|
+
|
35
|
+
#ifndef GO_CGO_PROLOGUE_H
|
36
|
+
#define GO_CGO_PROLOGUE_H
|
37
|
+
|
38
|
+
typedef signed char GoInt8;
|
39
|
+
typedef unsigned char GoUint8;
|
40
|
+
typedef short GoInt16;
|
41
|
+
typedef unsigned short GoUint16;
|
42
|
+
typedef int GoInt32;
|
43
|
+
typedef unsigned int GoUint32;
|
44
|
+
typedef long long GoInt64;
|
45
|
+
typedef unsigned long long GoUint64;
|
46
|
+
typedef GoInt64 GoInt;
|
47
|
+
typedef GoUint64 GoUint;
|
48
|
+
typedef __SIZE_TYPE__ GoUintptr;
|
49
|
+
typedef float GoFloat32;
|
50
|
+
typedef double GoFloat64;
|
51
|
+
typedef float _Complex GoComplex64;
|
52
|
+
typedef double _Complex GoComplex128;
|
53
|
+
|
54
|
+
/*
|
55
|
+
static assertion to make sure the file is being used on architecture
|
56
|
+
at least with matching size of GoInt.
|
57
|
+
*/
|
58
|
+
typedef char _check_for_64_bit_pointer_matching_GoInt[sizeof(void*)==64/8 ? 1:-1];
|
59
|
+
|
60
|
+
#ifndef GO_CGO_GOSTRING_TYPEDEF
|
61
|
+
typedef _GoString_ GoString;
|
62
|
+
#endif
|
63
|
+
typedef void *GoMap;
|
64
|
+
typedef void *GoChan;
|
65
|
+
typedef struct { void *t; void *v; } GoInterface;
|
66
|
+
typedef struct { void *data; GoInt len; GoInt cap; } GoSlice;
|
67
|
+
|
68
|
+
#endif
|
69
|
+
|
70
|
+
/* End of boilerplate cgo prologue. */
|
71
|
+
|
72
|
+
#ifdef __cplusplus
|
73
|
+
extern "C" {
|
74
|
+
#endif
|
75
|
+
|
76
|
+
|
77
|
+
// ParseToString function takes a name-string, desired format, and parses
|
78
|
+
// the name-string to either JSON, or pipe-separated values, depending on
|
79
|
+
// the desired format. Format can take values of 'simple', 'compact', 'pretty'.
|
80
|
+
|
81
|
+
extern char* ParseToString(char* p0, char* p1);
|
82
|
+
|
83
|
+
// ParseAryToStrings function takes an array of names, parsing format and a
|
84
|
+
// reference to an output: an empty array of strings to return the the data
|
85
|
+
// back. It populates the output array with raw strings of either JSON or
|
86
|
+
// pipe-separated parsed values (depending on a given format). Format can take
|
87
|
+
// values of 'simple', 'compact', or 'pretty'.
|
88
|
+
|
89
|
+
extern void ParseAryToStrings(char** p0, int p1, char* p2, char*** p3);
|
90
|
+
|
91
|
+
#ifdef __cplusplus
|
92
|
+
}
|
93
|
+
#endif
|
Binary file
|
data/lib/biodiversity/parser.rb
CHANGED
data/lib/biodiversity/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: biodiversity
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.
|
4
|
+
version: 4.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dmitry Mozzherin
|
@@ -115,6 +115,8 @@ files:
|
|
115
115
|
- clib/linux/libgnparser.so
|
116
116
|
- clib/mac/libgnparser.h
|
117
117
|
- clib/mac/libgnparser.so
|
118
|
+
- clib/win/libgnparser.h
|
119
|
+
- clib/win/libgnparser.so
|
118
120
|
- lib/biodiversity.rb
|
119
121
|
- lib/biodiversity/parser.rb
|
120
122
|
- lib/biodiversity/version.rb
|