edtf 3.0.4 → 3.0.8
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 +5 -5
- data/.travis.yml +5 -5
- data/edtf.gemspec +1 -1
- data/lib/edtf/epoch.rb +2 -2
- data/lib/edtf/parser.rb +295 -284
- data/lib/edtf/parser.y +6 -0
- data/lib/edtf/set.rb +2 -2
- data/lib/edtf/version.rb +1 -1
- data/lib/edtf.rb +1 -0
- data/spec/edtf/parser_spec.rb +1 -0
- metadata +8 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 79b11e60a9c93e8708e3176ac04cecf8a63ea0df9fdbae09aa0c5583d4829632
|
4
|
+
data.tar.gz: d8cb5d2aefdb707bbd7dc44de1bdc9e470f8198e699fc5bad7ba2a3acd7e2eba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8972cc08117bc4b0b015c7f1f07004a0d5e28f972350d4c3eb0b57ee67e5fcdfa6b4e666f4ee3df5c8478f35852d647f1000de64b0bda9416c5f7f3351c5aef
|
7
|
+
data.tar.gz: c197e8bffc0377e3d52a841544525b1a8cbf47e5eb1708b6560b6eaf0db7fc6c37371de8e65af3e000e343294da7c51a5d4c378e9f877500ba994548f42a750a
|
data/.travis.yml
CHANGED
@@ -2,13 +2,13 @@ language: ruby
|
|
2
2
|
bundler_args: --without debug extra
|
3
3
|
sudo: false
|
4
4
|
cache: bundler
|
5
|
-
before_install:
|
6
|
-
- gem install bundler
|
7
5
|
script: bundle exec rake test_with_coveralls
|
8
6
|
rvm:
|
9
|
-
- 2.
|
10
|
-
- 2.
|
11
|
-
-
|
7
|
+
- 2.5.0
|
8
|
+
- 2.4.3
|
9
|
+
- 2.3.6
|
10
|
+
- 2.2.9
|
11
|
+
- jruby-9.1.16.0
|
12
12
|
notifications:
|
13
13
|
email:
|
14
14
|
- sk@semicolon.at
|
data/edtf.gemspec
CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
|
|
15
15
|
s.description = 'A Ruby implementation of the Extended Date/Time Format (EDTF).'
|
16
16
|
s.license = 'BSD-2-Clause-FreeBSD'
|
17
17
|
|
18
|
-
s.add_runtime_dependency('activesupport', '>= 3.0', '<
|
18
|
+
s.add_runtime_dependency('activesupport', '>= 3.0', '< 8.0')
|
19
19
|
|
20
20
|
s.files = `git ls-files`.split("\n") << 'lib/edtf/parser.rb'
|
21
21
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|