amplitude-experiment 1.0.0.beta.7 → 1.0.0.beta.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3c1c474415a95c82dd30feb5730a517d3df489f39ac6b307583a66d20b844fc3
4
- data.tar.gz: f215b72c1dc816aa205c68d3b9fac5b4685ca4ee90cacc035f6f2106bd1cf9eb
3
+ metadata.gz: acd3cf16b78992b9a51e7cab824d81b49f1956fbfc180d851e234aadbfda6cd6
4
+ data.tar.gz: f85edbc817cd8b3f1d0507c93859f39462ce6f808e71cbb9ee7e92ed819784fd
5
5
  SHA512:
6
- metadata.gz: e55171f2998fcebf9f9a49a785445e1731b0b86a0d98a5b0ff8111702cb7a5c03df8c3e641492acaa30bb45b3750fc237c79d6a7ee964424cd8ebb5061180835
7
- data.tar.gz: 3ec5bfd97ed595841541074b9f7079e94a7b0452a8b53ecdd722dfd18956ed40f12d26503c04d6a9a84ae2ec2c9d4119dea0420b4566bb591f959296710df080
6
+ metadata.gz: 7f5c9b5285a361ae25d4fd86296aa1cb21e5265368354627a069fbccb23124639ec9e70818331f70233d071ce419b727aa1d1cf0e19febd3f1f90fede8f6f62e
7
+ data.tar.gz: 5ccbf2b55170dd2c6f2ca5c9f053bd757dfb709ff652335a9bb30af936f88504359a9d7f48d6041656643b8247598dd5db540b9674280a1db04eef0cba09787f
@@ -0,0 +1,82 @@
1
+ #ifndef KONAN_LIBEVALUATION_INTEROP_H
2
+ #define KONAN_LIBEVALUATION_INTEROP_H
3
+ #ifdef __cplusplus
4
+ extern "C" {
5
+ #endif
6
+ #ifdef __cplusplus
7
+ typedef bool libevaluation_interop_KBoolean;
8
+ #else
9
+ typedef _Bool libevaluation_interop_KBoolean;
10
+ #endif
11
+ typedef unsigned short libevaluation_interop_KChar;
12
+ typedef signed char libevaluation_interop_KByte;
13
+ typedef short libevaluation_interop_KShort;
14
+ typedef int libevaluation_interop_KInt;
15
+ typedef long long libevaluation_interop_KLong;
16
+ typedef unsigned char libevaluation_interop_KUByte;
17
+ typedef unsigned short libevaluation_interop_KUShort;
18
+ typedef unsigned int libevaluation_interop_KUInt;
19
+ typedef unsigned long long libevaluation_interop_KULong;
20
+ typedef float libevaluation_interop_KFloat;
21
+ typedef double libevaluation_interop_KDouble;
22
+ typedef float __attribute__ ((__vector_size__ (16))) libevaluation_interop_KVector128;
23
+ typedef void* libevaluation_interop_KNativePtr;
24
+ struct libevaluation_interop_KType;
25
+ typedef struct libevaluation_interop_KType libevaluation_interop_KType;
26
+
27
+ typedef struct {
28
+ libevaluation_interop_KNativePtr pinned;
29
+ } libevaluation_interop_kref_kotlin_Byte;
30
+ typedef struct {
31
+ libevaluation_interop_KNativePtr pinned;
32
+ } libevaluation_interop_kref_kotlin_Short;
33
+ typedef struct {
34
+ libevaluation_interop_KNativePtr pinned;
35
+ } libevaluation_interop_kref_kotlin_Int;
36
+ typedef struct {
37
+ libevaluation_interop_KNativePtr pinned;
38
+ } libevaluation_interop_kref_kotlin_Long;
39
+ typedef struct {
40
+ libevaluation_interop_KNativePtr pinned;
41
+ } libevaluation_interop_kref_kotlin_Float;
42
+ typedef struct {
43
+ libevaluation_interop_KNativePtr pinned;
44
+ } libevaluation_interop_kref_kotlin_Double;
45
+ typedef struct {
46
+ libevaluation_interop_KNativePtr pinned;
47
+ } libevaluation_interop_kref_kotlin_Char;
48
+ typedef struct {
49
+ libevaluation_interop_KNativePtr pinned;
50
+ } libevaluation_interop_kref_kotlin_Boolean;
51
+ typedef struct {
52
+ libevaluation_interop_KNativePtr pinned;
53
+ } libevaluation_interop_kref_kotlin_Unit;
54
+
55
+
56
+ typedef struct {
57
+ /* Service functions. */
58
+ void (*DisposeStablePointer)(libevaluation_interop_KNativePtr ptr);
59
+ void (*DisposeString)(const char* string);
60
+ libevaluation_interop_KBoolean (*IsInstance)(libevaluation_interop_KNativePtr ref, const libevaluation_interop_KType* type);
61
+ libevaluation_interop_kref_kotlin_Byte (*createNullableByte)(libevaluation_interop_KByte);
62
+ libevaluation_interop_kref_kotlin_Short (*createNullableShort)(libevaluation_interop_KShort);
63
+ libevaluation_interop_kref_kotlin_Int (*createNullableInt)(libevaluation_interop_KInt);
64
+ libevaluation_interop_kref_kotlin_Long (*createNullableLong)(libevaluation_interop_KLong);
65
+ libevaluation_interop_kref_kotlin_Float (*createNullableFloat)(libevaluation_interop_KFloat);
66
+ libevaluation_interop_kref_kotlin_Double (*createNullableDouble)(libevaluation_interop_KDouble);
67
+ libevaluation_interop_kref_kotlin_Char (*createNullableChar)(libevaluation_interop_KChar);
68
+ libevaluation_interop_kref_kotlin_Boolean (*createNullableBoolean)(libevaluation_interop_KBoolean);
69
+ libevaluation_interop_kref_kotlin_Unit (*createNullableUnit)(void);
70
+
71
+ /* User functions. */
72
+ struct {
73
+ struct {
74
+ const char* (*evaluate)(const char* rules, const char* user);
75
+ } root;
76
+ } kotlin;
77
+ } libevaluation_interop_ExportedSymbols;
78
+ extern libevaluation_interop_ExportedSymbols* libevaluation_interop_symbols(void);
79
+ #ifdef __cplusplus
80
+ } /* extern "C" */
81
+ #endif
82
+ #endif /* KONAN_LIBEVALUATION_INTEROP_H */
@@ -0,0 +1,82 @@
1
+ #ifndef KONAN_LIBEVALUATION_INTEROP_H
2
+ #define KONAN_LIBEVALUATION_INTEROP_H
3
+ #ifdef __cplusplus
4
+ extern "C" {
5
+ #endif
6
+ #ifdef __cplusplus
7
+ typedef bool libevaluation_interop_KBoolean;
8
+ #else
9
+ typedef _Bool libevaluation_interop_KBoolean;
10
+ #endif
11
+ typedef unsigned short libevaluation_interop_KChar;
12
+ typedef signed char libevaluation_interop_KByte;
13
+ typedef short libevaluation_interop_KShort;
14
+ typedef int libevaluation_interop_KInt;
15
+ typedef long long libevaluation_interop_KLong;
16
+ typedef unsigned char libevaluation_interop_KUByte;
17
+ typedef unsigned short libevaluation_interop_KUShort;
18
+ typedef unsigned int libevaluation_interop_KUInt;
19
+ typedef unsigned long long libevaluation_interop_KULong;
20
+ typedef float libevaluation_interop_KFloat;
21
+ typedef double libevaluation_interop_KDouble;
22
+ typedef float __attribute__ ((__vector_size__ (16))) libevaluation_interop_KVector128;
23
+ typedef void* libevaluation_interop_KNativePtr;
24
+ struct libevaluation_interop_KType;
25
+ typedef struct libevaluation_interop_KType libevaluation_interop_KType;
26
+
27
+ typedef struct {
28
+ libevaluation_interop_KNativePtr pinned;
29
+ } libevaluation_interop_kref_kotlin_Byte;
30
+ typedef struct {
31
+ libevaluation_interop_KNativePtr pinned;
32
+ } libevaluation_interop_kref_kotlin_Short;
33
+ typedef struct {
34
+ libevaluation_interop_KNativePtr pinned;
35
+ } libevaluation_interop_kref_kotlin_Int;
36
+ typedef struct {
37
+ libevaluation_interop_KNativePtr pinned;
38
+ } libevaluation_interop_kref_kotlin_Long;
39
+ typedef struct {
40
+ libevaluation_interop_KNativePtr pinned;
41
+ } libevaluation_interop_kref_kotlin_Float;
42
+ typedef struct {
43
+ libevaluation_interop_KNativePtr pinned;
44
+ } libevaluation_interop_kref_kotlin_Double;
45
+ typedef struct {
46
+ libevaluation_interop_KNativePtr pinned;
47
+ } libevaluation_interop_kref_kotlin_Char;
48
+ typedef struct {
49
+ libevaluation_interop_KNativePtr pinned;
50
+ } libevaluation_interop_kref_kotlin_Boolean;
51
+ typedef struct {
52
+ libevaluation_interop_KNativePtr pinned;
53
+ } libevaluation_interop_kref_kotlin_Unit;
54
+
55
+
56
+ typedef struct {
57
+ /* Service functions. */
58
+ void (*DisposeStablePointer)(libevaluation_interop_KNativePtr ptr);
59
+ void (*DisposeString)(const char* string);
60
+ libevaluation_interop_KBoolean (*IsInstance)(libevaluation_interop_KNativePtr ref, const libevaluation_interop_KType* type);
61
+ libevaluation_interop_kref_kotlin_Byte (*createNullableByte)(libevaluation_interop_KByte);
62
+ libevaluation_interop_kref_kotlin_Short (*createNullableShort)(libevaluation_interop_KShort);
63
+ libevaluation_interop_kref_kotlin_Int (*createNullableInt)(libevaluation_interop_KInt);
64
+ libevaluation_interop_kref_kotlin_Long (*createNullableLong)(libevaluation_interop_KLong);
65
+ libevaluation_interop_kref_kotlin_Float (*createNullableFloat)(libevaluation_interop_KFloat);
66
+ libevaluation_interop_kref_kotlin_Double (*createNullableDouble)(libevaluation_interop_KDouble);
67
+ libevaluation_interop_kref_kotlin_Char (*createNullableChar)(libevaluation_interop_KChar);
68
+ libevaluation_interop_kref_kotlin_Boolean (*createNullableBoolean)(libevaluation_interop_KBoolean);
69
+ libevaluation_interop_kref_kotlin_Unit (*createNullableUnit)(void);
70
+
71
+ /* User functions. */
72
+ struct {
73
+ struct {
74
+ const char* (*evaluate)(const char* rules, const char* user);
75
+ } root;
76
+ } kotlin;
77
+ } libevaluation_interop_ExportedSymbols;
78
+ extern libevaluation_interop_ExportedSymbols* libevaluation_interop_symbols(void);
79
+ #ifdef __cplusplus
80
+ } /* extern "C" */
81
+ #endif
82
+ #endif /* KONAN_LIBEVALUATION_INTEROP_H */
@@ -0,0 +1,82 @@
1
+ #ifndef KONAN_LIBEVALUATION_INTEROP_H
2
+ #define KONAN_LIBEVALUATION_INTEROP_H
3
+ #ifdef __cplusplus
4
+ extern "C" {
5
+ #endif
6
+ #ifdef __cplusplus
7
+ typedef bool libevaluation_interop_KBoolean;
8
+ #else
9
+ typedef _Bool libevaluation_interop_KBoolean;
10
+ #endif
11
+ typedef unsigned short libevaluation_interop_KChar;
12
+ typedef signed char libevaluation_interop_KByte;
13
+ typedef short libevaluation_interop_KShort;
14
+ typedef int libevaluation_interop_KInt;
15
+ typedef long long libevaluation_interop_KLong;
16
+ typedef unsigned char libevaluation_interop_KUByte;
17
+ typedef unsigned short libevaluation_interop_KUShort;
18
+ typedef unsigned int libevaluation_interop_KUInt;
19
+ typedef unsigned long long libevaluation_interop_KULong;
20
+ typedef float libevaluation_interop_KFloat;
21
+ typedef double libevaluation_interop_KDouble;
22
+ typedef float __attribute__ ((__vector_size__ (16))) libevaluation_interop_KVector128;
23
+ typedef void* libevaluation_interop_KNativePtr;
24
+ struct libevaluation_interop_KType;
25
+ typedef struct libevaluation_interop_KType libevaluation_interop_KType;
26
+
27
+ typedef struct {
28
+ libevaluation_interop_KNativePtr pinned;
29
+ } libevaluation_interop_kref_kotlin_Byte;
30
+ typedef struct {
31
+ libevaluation_interop_KNativePtr pinned;
32
+ } libevaluation_interop_kref_kotlin_Short;
33
+ typedef struct {
34
+ libevaluation_interop_KNativePtr pinned;
35
+ } libevaluation_interop_kref_kotlin_Int;
36
+ typedef struct {
37
+ libevaluation_interop_KNativePtr pinned;
38
+ } libevaluation_interop_kref_kotlin_Long;
39
+ typedef struct {
40
+ libevaluation_interop_KNativePtr pinned;
41
+ } libevaluation_interop_kref_kotlin_Float;
42
+ typedef struct {
43
+ libevaluation_interop_KNativePtr pinned;
44
+ } libevaluation_interop_kref_kotlin_Double;
45
+ typedef struct {
46
+ libevaluation_interop_KNativePtr pinned;
47
+ } libevaluation_interop_kref_kotlin_Char;
48
+ typedef struct {
49
+ libevaluation_interop_KNativePtr pinned;
50
+ } libevaluation_interop_kref_kotlin_Boolean;
51
+ typedef struct {
52
+ libevaluation_interop_KNativePtr pinned;
53
+ } libevaluation_interop_kref_kotlin_Unit;
54
+
55
+
56
+ typedef struct {
57
+ /* Service functions. */
58
+ void (*DisposeStablePointer)(libevaluation_interop_KNativePtr ptr);
59
+ void (*DisposeString)(const char* string);
60
+ libevaluation_interop_KBoolean (*IsInstance)(libevaluation_interop_KNativePtr ref, const libevaluation_interop_KType* type);
61
+ libevaluation_interop_kref_kotlin_Byte (*createNullableByte)(libevaluation_interop_KByte);
62
+ libevaluation_interop_kref_kotlin_Short (*createNullableShort)(libevaluation_interop_KShort);
63
+ libevaluation_interop_kref_kotlin_Int (*createNullableInt)(libevaluation_interop_KInt);
64
+ libevaluation_interop_kref_kotlin_Long (*createNullableLong)(libevaluation_interop_KLong);
65
+ libevaluation_interop_kref_kotlin_Float (*createNullableFloat)(libevaluation_interop_KFloat);
66
+ libevaluation_interop_kref_kotlin_Double (*createNullableDouble)(libevaluation_interop_KDouble);
67
+ libevaluation_interop_kref_kotlin_Char (*createNullableChar)(libevaluation_interop_KChar);
68
+ libevaluation_interop_kref_kotlin_Boolean (*createNullableBoolean)(libevaluation_interop_KBoolean);
69
+ libevaluation_interop_kref_kotlin_Unit (*createNullableUnit)(void);
70
+
71
+ /* User functions. */
72
+ struct {
73
+ struct {
74
+ const char* (*evaluate)(const char* rules, const char* user);
75
+ } root;
76
+ } kotlin;
77
+ } libevaluation_interop_ExportedSymbols;
78
+ extern libevaluation_interop_ExportedSymbols* libevaluation_interop_symbols(void);
79
+ #ifdef __cplusplus
80
+ } /* extern "C" */
81
+ #endif
82
+ #endif /* KONAN_LIBEVALUATION_INTEROP_H */
@@ -0,0 +1,82 @@
1
+ #ifndef KONAN_LIBEVALUATION_INTEROP_H
2
+ #define KONAN_LIBEVALUATION_INTEROP_H
3
+ #ifdef __cplusplus
4
+ extern "C" {
5
+ #endif
6
+ #ifdef __cplusplus
7
+ typedef bool libevaluation_interop_KBoolean;
8
+ #else
9
+ typedef _Bool libevaluation_interop_KBoolean;
10
+ #endif
11
+ typedef unsigned short libevaluation_interop_KChar;
12
+ typedef signed char libevaluation_interop_KByte;
13
+ typedef short libevaluation_interop_KShort;
14
+ typedef int libevaluation_interop_KInt;
15
+ typedef long long libevaluation_interop_KLong;
16
+ typedef unsigned char libevaluation_interop_KUByte;
17
+ typedef unsigned short libevaluation_interop_KUShort;
18
+ typedef unsigned int libevaluation_interop_KUInt;
19
+ typedef unsigned long long libevaluation_interop_KULong;
20
+ typedef float libevaluation_interop_KFloat;
21
+ typedef double libevaluation_interop_KDouble;
22
+ typedef float __attribute__ ((__vector_size__ (16))) libevaluation_interop_KVector128;
23
+ typedef void* libevaluation_interop_KNativePtr;
24
+ struct libevaluation_interop_KType;
25
+ typedef struct libevaluation_interop_KType libevaluation_interop_KType;
26
+
27
+ typedef struct {
28
+ libevaluation_interop_KNativePtr pinned;
29
+ } libevaluation_interop_kref_kotlin_Byte;
30
+ typedef struct {
31
+ libevaluation_interop_KNativePtr pinned;
32
+ } libevaluation_interop_kref_kotlin_Short;
33
+ typedef struct {
34
+ libevaluation_interop_KNativePtr pinned;
35
+ } libevaluation_interop_kref_kotlin_Int;
36
+ typedef struct {
37
+ libevaluation_interop_KNativePtr pinned;
38
+ } libevaluation_interop_kref_kotlin_Long;
39
+ typedef struct {
40
+ libevaluation_interop_KNativePtr pinned;
41
+ } libevaluation_interop_kref_kotlin_Float;
42
+ typedef struct {
43
+ libevaluation_interop_KNativePtr pinned;
44
+ } libevaluation_interop_kref_kotlin_Double;
45
+ typedef struct {
46
+ libevaluation_interop_KNativePtr pinned;
47
+ } libevaluation_interop_kref_kotlin_Char;
48
+ typedef struct {
49
+ libevaluation_interop_KNativePtr pinned;
50
+ } libevaluation_interop_kref_kotlin_Boolean;
51
+ typedef struct {
52
+ libevaluation_interop_KNativePtr pinned;
53
+ } libevaluation_interop_kref_kotlin_Unit;
54
+
55
+
56
+ typedef struct {
57
+ /* Service functions. */
58
+ void (*DisposeStablePointer)(libevaluation_interop_KNativePtr ptr);
59
+ void (*DisposeString)(const char* string);
60
+ libevaluation_interop_KBoolean (*IsInstance)(libevaluation_interop_KNativePtr ref, const libevaluation_interop_KType* type);
61
+ libevaluation_interop_kref_kotlin_Byte (*createNullableByte)(libevaluation_interop_KByte);
62
+ libevaluation_interop_kref_kotlin_Short (*createNullableShort)(libevaluation_interop_KShort);
63
+ libevaluation_interop_kref_kotlin_Int (*createNullableInt)(libevaluation_interop_KInt);
64
+ libevaluation_interop_kref_kotlin_Long (*createNullableLong)(libevaluation_interop_KLong);
65
+ libevaluation_interop_kref_kotlin_Float (*createNullableFloat)(libevaluation_interop_KFloat);
66
+ libevaluation_interop_kref_kotlin_Double (*createNullableDouble)(libevaluation_interop_KDouble);
67
+ libevaluation_interop_kref_kotlin_Char (*createNullableChar)(libevaluation_interop_KChar);
68
+ libevaluation_interop_kref_kotlin_Boolean (*createNullableBoolean)(libevaluation_interop_KBoolean);
69
+ libevaluation_interop_kref_kotlin_Unit (*createNullableUnit)(void);
70
+
71
+ /* User functions. */
72
+ struct {
73
+ struct {
74
+ const char* (*evaluate)(const char* rules, const char* user);
75
+ } root;
76
+ } kotlin;
77
+ } libevaluation_interop_ExportedSymbols;
78
+ extern libevaluation_interop_ExportedSymbols* libevaluation_interop_symbols(void);
79
+ #ifdef __cplusplus
80
+ } /* extern "C" */
81
+ #endif
82
+ #endif /* KONAN_LIBEVALUATION_INTEROP_H */
@@ -1,3 +1,3 @@
1
1
  module AmplitudeExperiment
2
- VERSION = '1.0.0.beta.7'.freeze
2
+ VERSION = '1.0.0.beta.8'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: amplitude-experiment
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.beta.7
4
+ version: 1.0.0.beta.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amplitude
@@ -139,6 +139,14 @@ files:
139
139
  - lib/experiment/local/client.rb
140
140
  - lib/experiment/local/config.rb
141
141
  - lib/experiment/local/evaluation/evaluation.rb
142
+ - lib/experiment/local/evaluation/lib/linuxArm64/libevaluation_interop.so
143
+ - lib/experiment/local/evaluation/lib/linuxArm64/libevaluation_interop_api.h
144
+ - lib/experiment/local/evaluation/lib/linuxX64/libevaluation_interop.so
145
+ - lib/experiment/local/evaluation/lib/linuxX64/libevaluation_interop_api.h
146
+ - lib/experiment/local/evaluation/lib/macosArm64/libevaluation_interop.dylib
147
+ - lib/experiment/local/evaluation/lib/macosArm64/libevaluation_interop_api.h
148
+ - lib/experiment/local/evaluation/lib/macosX64/libevaluation_interop.dylib
149
+ - lib/experiment/local/evaluation/lib/macosX64/libevaluation_interop_api.h
142
150
  - lib/experiment/local/fetcher.rb
143
151
  - lib/experiment/local/poller.rb
144
152
  - lib/experiment/persistent_http_client.rb