panko_serializer 0.5.8 → 0.5.9
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/ext/panko_serializer/attributes_writer/active_record.c +1 -1
- data/lib/panko/version.rb +1 -1
- data/panko_serializer.gemspec +14 -5
- metadata +10 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 63ba1589249e7119add78bbd81491fd03a58cc76e0ad9d78598a2d7e39190421
|
4
|
+
data.tar.gz: 1fff975d250c4c05de70a84e680f41caf7e1bee10f2884bfbbe0504d1137f33a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8823f02c307fa4baf1346f0ab89e6eb8c2b415b8739a8e5ee0f4d8ceb30b010fa34002958d8197852468736cdb9257435fabcc03ae64c001d000343a58a223dd
|
7
|
+
data.tar.gz: e7eb68e825b8483d203a603ca54ee475ebd08fdbec32633408bab40365f03b90de017374d0a15a96e25476bfc1ff06b322a1042edbe17a2d948811327c44ae61
|
@@ -70,7 +70,7 @@ struct attributes init_context(VALUE obj) {
|
|
70
70
|
}
|
71
71
|
|
72
72
|
VALUE read_attribute(struct attributes attributes_ctx, Attribute attribute) {
|
73
|
-
volatile VALUE member, value
|
73
|
+
volatile VALUE member, value;
|
74
74
|
|
75
75
|
member = attribute->name_str;
|
76
76
|
value = Qundef;
|
data/lib/panko/version.rb
CHANGED
data/panko_serializer.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
# coding: utf-8
|
2
1
|
# frozen_string_literal: true
|
3
|
-
|
2
|
+
|
3
|
+
lib = File.expand_path("lib", __dir__)
|
4
4
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5
5
|
require "panko/version"
|
6
6
|
|
@@ -10,11 +10,20 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.authors = ["Yosi Attias"]
|
11
11
|
spec.email = ["yosy101@gmail.com"]
|
12
12
|
|
13
|
-
spec.summary = "
|
14
|
-
spec.homepage = ""
|
13
|
+
spec.summary = "High Performance JSON Serialization for ActiveRecord & Ruby Objects"
|
14
|
+
spec.homepage = "https://yosiat.github.io/panko_serializer/"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
17
|
-
spec.
|
17
|
+
spec.metadata = {
|
18
|
+
"bug_tracker_uri" => "https://github.com/yosiat/panko_serializer/issues",
|
19
|
+
"source_code_uri" => "https://github.com/yosiat/panko_serializer",
|
20
|
+
"documentation_uri" => "https://yosiat.github.io/panko_serializer/",
|
21
|
+
"changelog_uri" => "https://github.com/yosiat/panko_serializer/releases"
|
22
|
+
}
|
23
|
+
|
24
|
+
spec.required_ruby_version = ">= 2.0"
|
25
|
+
|
26
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
18
27
|
f.match(%r{^(test|spec|features)/})
|
19
28
|
end
|
20
29
|
spec.require_paths = ["lib"]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: panko_serializer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yosi Attias
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-01-
|
11
|
+
date: 2019-01-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: oj
|
@@ -97,10 +97,14 @@ files:
|
|
97
97
|
- lib/panko/version.rb
|
98
98
|
- lib/panko_serializer.rb
|
99
99
|
- panko_serializer.gemspec
|
100
|
-
homepage:
|
100
|
+
homepage: https://yosiat.github.io/panko_serializer/
|
101
101
|
licenses:
|
102
102
|
- MIT
|
103
|
-
metadata:
|
103
|
+
metadata:
|
104
|
+
bug_tracker_uri: https://github.com/yosiat/panko_serializer/issues
|
105
|
+
source_code_uri: https://github.com/yosiat/panko_serializer
|
106
|
+
documentation_uri: https://yosiat.github.io/panko_serializer/
|
107
|
+
changelog_uri: https://github.com/yosiat/panko_serializer/releases
|
104
108
|
post_install_message:
|
105
109
|
rdoc_options: []
|
106
110
|
require_paths:
|
@@ -109,7 +113,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
109
113
|
requirements:
|
110
114
|
- - ">="
|
111
115
|
- !ruby/object:Gem::Version
|
112
|
-
version: '0'
|
116
|
+
version: '2.0'
|
113
117
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
114
118
|
requirements:
|
115
119
|
- - ">="
|
@@ -119,5 +123,5 @@ requirements: []
|
|
119
123
|
rubygems_version: 3.0.1
|
120
124
|
signing_key:
|
121
125
|
specification_version: 4
|
122
|
-
summary:
|
126
|
+
summary: High Performance JSON Serialization for ActiveRecord & Ruby Objects
|
123
127
|
test_files: []
|