timetwister 0.2.0 → 0.2.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 +8 -8
- data/bin/timetwister +4 -0
- data/lib/timetwister/version.rb +1 -1
- data/timetwister.gemspec +3 -2
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
OWMyNzY3MjZmNjNlYWQ4MTIwNDkyOWJkYWIzY2QwMGI3ZWJjNzQzMw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ODg2MDhlMzBmYjcxNzY3ZDI1ZDk3MDVkYzZjOTRhZTc4YWZhMTM5YQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
Mjk3ZGZkM2ZiMzc5YjlkYWZjZGZkOGViYTI4ODE1YmNiMGJkYWVjMjU0ZTkx
|
10
|
+
OGVhYjdiNTg5ZTYxZmJlYWE2NTM3Y2RkOTljYzliNWQ0ZTI1Y2Q4YjBmYjQ4
|
11
|
+
ZDlkOWFmOWI2YjZkYzc4NGQ3M2JmNTM4NDFmMzY3MDc5YTFlNzA=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ODEwZWY3NGVlNzgwNmU0YzVlMGE0OWI1NWZiNGNlNDY5Y2VlMjc0YmQ2MGU0
|
14
|
+
OWQyNTI1YzA3NDViMDc0NjYxOWQ4MmM4ZTYzNzQ3ZjVkMDdmY2ZiZTNmYjA5
|
15
|
+
YTBkYzFhZDc1ZjhjNTQ4MzYyZDdiOGIxNjg3MjI0N2RmOGQzYzE=
|
data/bin/timetwister
ADDED
data/lib/timetwister/version.rb
CHANGED
data/timetwister.gemspec
CHANGED
@@ -8,12 +8,13 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = Timetwister::VERSION
|
9
9
|
spec.authors = ["Alex Duryee"]
|
10
10
|
spec.email = ["alexanderduryee@nypl.org"]
|
11
|
-
spec.summary = "Chronic wrapper to handle common date formats"
|
11
|
+
spec.summary = "Chronic wrapper to handle common date formats"
|
12
12
|
spec.homepage = "http://github.com/alexduryee/timetwister"
|
13
13
|
spec.license = "MIT"
|
14
14
|
|
15
15
|
spec.files = `git ls-files -z`.split("\x0")
|
16
|
-
spec.executables
|
16
|
+
spec.executables << 'timetwister'
|
17
|
+
# spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
17
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
18
19
|
spec.require_paths = ["lib"]
|
19
20
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: timetwister
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alex Duryee
|
@@ -55,7 +55,8 @@ dependencies:
|
|
55
55
|
description:
|
56
56
|
email:
|
57
57
|
- alexanderduryee@nypl.org
|
58
|
-
executables:
|
58
|
+
executables:
|
59
|
+
- timetwister
|
59
60
|
extensions: []
|
60
61
|
extra_rdoc_files: []
|
61
62
|
files:
|
@@ -65,6 +66,7 @@ files:
|
|
65
66
|
- LICENSE.txt
|
66
67
|
- README.md
|
67
68
|
- Rakefile
|
69
|
+
- bin/timetwister
|
68
70
|
- lib/timetwister.rb
|
69
71
|
- lib/timetwister/parser.rb
|
70
72
|
- lib/timetwister/version.rb
|