historical_dating 1.9.0 → 1.9.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/Gemfile +2 -0
- data/Gemfile.lock +17 -11
- data/historical_dating.gemspec +4 -2
- data/lib/historical_dating/version.rb +1 -1
- metadata +13 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e8d41ccea6467e9b0af4679dfde3cf7591993c7269c31f24cd20076cd2b77049
|
|
4
|
+
data.tar.gz: 548be0649b5f157434f29d8e2c106c2abf66ee88d49425e8c464361701f71c89
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3da263bae047e57e00b8003d767680ff08cca84ae8ffcbac5ff5e7c1c9ca1251d6f672e9821e0a702ffd6748247811d8006265e3cf3ebe3f203f95a7e775ed81
|
|
7
|
+
data.tar.gz: 22d8f2b7d3cda26c24feaee8beab051136fa2864b2abf7ac00c5720d6af4aabc3e71cc2a2f3cd9f4748b327fd5cc76a2d05ec0b61b1e7d2a03646b13c1ba33ea
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,31 +1,35 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
historical_dating (1.9.
|
|
5
|
-
activesupport (
|
|
4
|
+
historical_dating (1.9.1)
|
|
5
|
+
activesupport (~> 6.1.4.1)
|
|
6
6
|
parslet (~> 2.0.0)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: https://rubygems.org/
|
|
10
10
|
specs:
|
|
11
|
-
activesupport (6.1.4.
|
|
11
|
+
activesupport (6.1.4.7)
|
|
12
12
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
13
13
|
i18n (>= 1.6, < 2)
|
|
14
14
|
minitest (>= 5.1)
|
|
15
15
|
tzinfo (~> 2.0)
|
|
16
16
|
zeitwerk (~> 2.3)
|
|
17
17
|
coderay (1.1.3)
|
|
18
|
-
concurrent-ruby (1.
|
|
18
|
+
concurrent-ruby (1.3.7)
|
|
19
19
|
diff-lcs (1.4.4)
|
|
20
|
-
i18n (1.
|
|
20
|
+
i18n (1.15.2)
|
|
21
21
|
concurrent-ruby (~> 1.0)
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
io-console (0.8.2)
|
|
23
|
+
method_source (1.1.0)
|
|
24
|
+
minitest (5.27.0)
|
|
24
25
|
parslet (2.0.0)
|
|
25
|
-
pry (0.
|
|
26
|
+
pry (0.16.0)
|
|
26
27
|
coderay (~> 1.1)
|
|
27
28
|
method_source (~> 1.0)
|
|
29
|
+
reline (>= 0.6.0)
|
|
28
30
|
rake (12.3.3)
|
|
31
|
+
reline (0.6.3)
|
|
32
|
+
io-console (~> 0.5)
|
|
29
33
|
rspec (3.9.0)
|
|
30
34
|
rspec-core (~> 3.9.0)
|
|
31
35
|
rspec-expectations (~> 3.9.0)
|
|
@@ -39,9 +43,10 @@ GEM
|
|
|
39
43
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
40
44
|
rspec-support (~> 3.9.0)
|
|
41
45
|
rspec-support (3.9.3)
|
|
42
|
-
|
|
46
|
+
timecop (0.9.11)
|
|
47
|
+
tzinfo (2.0.6)
|
|
43
48
|
concurrent-ruby (~> 1.0)
|
|
44
|
-
zeitwerk (2.
|
|
49
|
+
zeitwerk (2.8.2)
|
|
45
50
|
|
|
46
51
|
PLATFORMS
|
|
47
52
|
ruby
|
|
@@ -49,9 +54,10 @@ PLATFORMS
|
|
|
49
54
|
DEPENDENCIES
|
|
50
55
|
historical_dating!
|
|
51
56
|
minitest (~> 5.0)
|
|
52
|
-
pry
|
|
57
|
+
pry (~> 0.16.0)
|
|
53
58
|
rake (~> 12.0)
|
|
54
59
|
rspec (~> 3.9.0)
|
|
60
|
+
timecop (~> 0.9.11)
|
|
55
61
|
|
|
56
62
|
BUNDLED WITH
|
|
57
63
|
2.2.30
|
data/historical_dating.gemspec
CHANGED
|
@@ -11,6 +11,8 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
spec.homepage = "https://github.com/wendig-ou/historical_dating"
|
|
12
12
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
|
13
13
|
|
|
14
|
+
spec.licenses = ['AGPL-3.0-or-later']
|
|
15
|
+
|
|
14
16
|
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
|
15
17
|
|
|
16
18
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
@@ -27,8 +29,8 @@ Gem::Specification.new do |spec|
|
|
|
27
29
|
spec.require_paths = ["lib"]
|
|
28
30
|
|
|
29
31
|
spec.add_runtime_dependency 'parslet', '~> 2.0.0'
|
|
30
|
-
spec.add_runtime_dependency 'activesupport', '
|
|
32
|
+
spec.add_runtime_dependency 'activesupport', '~> 6.1.4.1'
|
|
31
33
|
|
|
32
34
|
spec.add_development_dependency 'rspec', '~> 3.9.0'
|
|
33
|
-
spec.add_development_dependency 'pry'
|
|
35
|
+
spec.add_development_dependency 'pry', '~> 0.16.0'
|
|
34
36
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: historical_dating
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.9.
|
|
4
|
+
version: 1.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Moritz Schepp
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-06-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: parslet
|
|
@@ -28,16 +28,16 @@ dependencies:
|
|
|
28
28
|
name: activesupport
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- - "
|
|
31
|
+
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version:
|
|
33
|
+
version: 6.1.4.1
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- - "
|
|
38
|
+
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version:
|
|
40
|
+
version: 6.1.4.1
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: rspec
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -56,16 +56,16 @@ dependencies:
|
|
|
56
56
|
name: pry
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
|
-
- - "
|
|
59
|
+
- - "~>"
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
|
-
version:
|
|
61
|
+
version: 0.16.0
|
|
62
62
|
type: :development
|
|
63
63
|
prerelease: false
|
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
|
-
- - "
|
|
66
|
+
- - "~>"
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
|
-
version:
|
|
68
|
+
version: 0.16.0
|
|
69
69
|
description: Parse human historical datings and convert them to Julian day ranges
|
|
70
70
|
email:
|
|
71
71
|
- moritz.schepp@gmail.com
|
|
@@ -94,7 +94,8 @@ files:
|
|
|
94
94
|
- lib/historical_dating/transform.rb
|
|
95
95
|
- lib/historical_dating/version.rb
|
|
96
96
|
homepage: https://github.com/wendig-ou/historical_dating
|
|
97
|
-
licenses:
|
|
97
|
+
licenses:
|
|
98
|
+
- AGPL-3.0-or-later
|
|
98
99
|
metadata:
|
|
99
100
|
allowed_push_host: https://rubygems.org
|
|
100
101
|
homepage_uri: https://github.com/wendig-ou/historical_dating
|
|
@@ -115,7 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
115
116
|
- !ruby/object:Gem::Version
|
|
116
117
|
version: '0'
|
|
117
118
|
requirements: []
|
|
118
|
-
rubygems_version: 3.
|
|
119
|
+
rubygems_version: 3.5.22
|
|
119
120
|
signing_key:
|
|
120
121
|
specification_version: 4
|
|
121
122
|
summary: Parse human historical datings
|