seri 1.1.6 → 1.1.7
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/Gemfile.lock +2 -2
- data/LICENSE.txt +1 -1
- data/lib/serializer/version.rb +1 -1
- data/seri.gemspec +1 -2
- metadata +3 -5
- data/bin/console +0 -14
- data/bin/setup +0 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b1a1151353f42d406b42e8927fef84f6ef57667ca14208420acca1c3adef5bfa
|
|
4
|
+
data.tar.gz: fefb44c7104a9b9f9bf27d3a7efc19a8bab23e347cf5811e90d1a8b3c8b9db78
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 86d7cf5a80ccfae8c81e048199ae810cba35281d2ab71409616aac144493feb35be89e2ef7ee6b63dcb3e26bb2e399ffa31c15db605ff36e7baab160f71cb96c
|
|
7
|
+
data.tar.gz: 80a6aeb6f089821c443e0405fe8fffbf5088108e6f01daf0efcac939771cf30ddd15fd5972b70f1b0f304d12f5dad4dc963d4bf14ca029ab1af72490ed0ba7b7
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
seri (1.1.
|
|
4
|
+
seri (1.1.6)
|
|
5
5
|
oj (~> 3.7)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
@@ -10,7 +10,7 @@ GEM
|
|
|
10
10
|
ast (2.4.0)
|
|
11
11
|
diff-lcs (1.3)
|
|
12
12
|
jaro_winkler (1.5.2)
|
|
13
|
-
oj (3.
|
|
13
|
+
oj (3.9.1)
|
|
14
14
|
parallel (1.17.0)
|
|
15
15
|
parser (2.6.2.1)
|
|
16
16
|
ast (~> 2.4.0)
|
data/LICENSE.txt
CHANGED
data/lib/serializer/version.rb
CHANGED
data/seri.gemspec
CHANGED
|
@@ -21,8 +21,7 @@ Gem::Specification.new do |spec|
|
|
|
21
21
|
f.match(%r{^(test|spec|features)/})
|
|
22
22
|
end
|
|
23
23
|
end
|
|
24
|
-
|
|
25
|
-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
24
|
+
|
|
26
25
|
spec.require_paths = ['lib']
|
|
27
26
|
|
|
28
27
|
spec.add_dependency 'oj', '~> 3.7'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: seri
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- grdw
|
|
8
8
|
autorequire:
|
|
9
|
-
bindir:
|
|
9
|
+
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-09-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: oj
|
|
@@ -98,8 +98,6 @@ files:
|
|
|
98
98
|
- LICENSE.txt
|
|
99
99
|
- README.md
|
|
100
100
|
- Rakefile
|
|
101
|
-
- bin/console
|
|
102
|
-
- bin/setup
|
|
103
101
|
- lib/serializer.rb
|
|
104
102
|
- lib/serializer/group_serializer.rb
|
|
105
103
|
- lib/serializer/value.rb
|
data/bin/console
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
|
|
3
|
-
require 'bundler/setup'
|
|
4
|
-
require 'serializer'
|
|
5
|
-
|
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
-
|
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
-
# require 'pry'
|
|
11
|
-
# Pry.start
|
|
12
|
-
|
|
13
|
-
require 'irb'
|
|
14
|
-
IRB.start(__FILE__)
|