avro_turf 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/avro_turf/core_ext/false_class.rb +5 -0
- data/lib/avro_turf/core_ext/nil_class.rb +5 -0
- data/lib/avro_turf/core_ext/true_class.rb +5 -0
- data/lib/avro_turf/core_ext.rb +3 -0
- data/lib/avro_turf/version.rb +1 -1
- data/spec/core_ext/false_class_spec.rb +5 -0
- data/spec/core_ext/nil_class_spec.rb +5 -0
- data/spec/core_ext/true_class_spec.rb +5 -0
- metadata +11 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cfae5e5b40637dc42042fd526172b9265d7e6ffe
|
4
|
+
data.tar.gz: a8df9a341f18727f0617eb82b0ab4831a51c0ac8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: abdaddbf56e6b7c34bce4f10118838847a09ec6ffdb850187e78efd2319b251db4016d6773ac08686ab86f7deba9070a3553f7ddd26f76c41a2a6dec8f4e0639
|
7
|
+
data.tar.gz: ad8734818133df66c3717a92143e3dae81eba436a1bb3095df5b46fef9f3053f79419471488707e3c4f7fe3ec6257eabf2a0aa0724de4d83970b40c3376af81c
|
data/lib/avro_turf/core_ext.rb
CHANGED
data/lib/avro_turf/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: avro_turf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Schierbeck
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-06-
|
11
|
+
date: 2015-06-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: avro
|
@@ -99,11 +99,14 @@ files:
|
|
99
99
|
- lib/avro_turf/core_ext.rb
|
100
100
|
- lib/avro_turf/core_ext/date.rb
|
101
101
|
- lib/avro_turf/core_ext/enumerable.rb
|
102
|
+
- lib/avro_turf/core_ext/false_class.rb
|
102
103
|
- lib/avro_turf/core_ext/hash.rb
|
104
|
+
- lib/avro_turf/core_ext/nil_class.rb
|
103
105
|
- lib/avro_turf/core_ext/numeric.rb
|
104
106
|
- lib/avro_turf/core_ext/string.rb
|
105
107
|
- lib/avro_turf/core_ext/symbol.rb
|
106
108
|
- lib/avro_turf/core_ext/time.rb
|
109
|
+
- lib/avro_turf/core_ext/true_class.rb
|
107
110
|
- lib/avro_turf/schema_store.rb
|
108
111
|
- lib/avro_turf/version.rb
|
109
112
|
- perf/address.avsc
|
@@ -113,11 +116,14 @@ files:
|
|
113
116
|
- spec/avro_turf_spec.rb
|
114
117
|
- spec/core_ext/date_spec.rb
|
115
118
|
- spec/core_ext/enumerable_spec.rb
|
119
|
+
- spec/core_ext/false_class_spec.rb
|
116
120
|
- spec/core_ext/hash_spec.rb
|
121
|
+
- spec/core_ext/nil_class_spec.rb
|
117
122
|
- spec/core_ext/numeric_spec.rb
|
118
123
|
- spec/core_ext/string_spec.rb
|
119
124
|
- spec/core_ext/symbol_spec.rb
|
120
125
|
- spec/core_ext/time_spec.rb
|
126
|
+
- spec/core_ext/true_class_spec.rb
|
121
127
|
- spec/schema_store_spec.rb
|
122
128
|
- spec/spec_helper.rb
|
123
129
|
homepage: https://github.com/dasch/avro_turf
|
@@ -149,11 +155,14 @@ test_files:
|
|
149
155
|
- spec/avro_turf_spec.rb
|
150
156
|
- spec/core_ext/date_spec.rb
|
151
157
|
- spec/core_ext/enumerable_spec.rb
|
158
|
+
- spec/core_ext/false_class_spec.rb
|
152
159
|
- spec/core_ext/hash_spec.rb
|
160
|
+
- spec/core_ext/nil_class_spec.rb
|
153
161
|
- spec/core_ext/numeric_spec.rb
|
154
162
|
- spec/core_ext/string_spec.rb
|
155
163
|
- spec/core_ext/symbol_spec.rb
|
156
164
|
- spec/core_ext/time_spec.rb
|
165
|
+
- spec/core_ext/true_class_spec.rb
|
157
166
|
- spec/schema_store_spec.rb
|
158
167
|
- spec/spec_helper.rb
|
159
168
|
has_rdoc:
|