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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YzliZWQ4YjI5MDA3MDZmZGQ2ZTg4MTI0NDhhZWM4M2ZlYTAxYzQzMg==
4
+ OWMyNzY3MjZmNjNlYWQ4MTIwNDkyOWJkYWIzY2QwMGI3ZWJjNzQzMw==
5
5
  data.tar.gz: !binary |-
6
- MjdhYmMwNWExY2JlM2U1OTE5ZDU3MjRmYTBjNzBmMTM3MmM3NDJiOQ==
6
+ ODg2MDhlMzBmYjcxNzY3ZDI1ZDk3MDVkYzZjOTRhZTc4YWZhMTM5YQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NmQ0NzkzMmJlYjA3NGFmZmVkNjJhOTAyNTllZTFhZjBlM2FhMTI5ZmJlN2Iw
10
- MjBiZjQ5YzViN2ZmMzM3YWMwNDIzNGI4M2FjY2M1OWU4YTcwYzE1MDQ3YTVm
11
- ZTZmNmM4MGQzN2NkM2EzY2NhZDI3ZWQyNTRhOGU0OGRjMWI3NDQ=
9
+ Mjk3ZGZkM2ZiMzc5YjlkYWZjZGZkOGViYTI4ODE1YmNiMGJkYWVjMjU0ZTkx
10
+ OGVhYjdiNTg5ZTYxZmJlYWE2NTM3Y2RkOTljYzliNWQ0ZTI1Y2Q4YjBmYjQ4
11
+ ZDlkOWFmOWI2YjZkYzc4NGQ3M2JmNTM4NDFmMzY3MDc5YTFlNzA=
12
12
  data.tar.gz: !binary |-
13
- NzY5MjE1NmMyYzAyZWQxOTUyYjVlOTgxNTUxMDRmZjViY2JhMzE2YjYzNGNl
14
- NjNiNTBhYzJiZWMyZDEzMzMxZGQ4YWI2Yjk1YmFjNGFkNTgyNjI3Y2NkZjVl
15
- ZWExMGE5ZTk1M2FmMzM3YjQ3YmRiYzFmYjVhNjg0NWQ5MmQxNjM=
13
+ ODEwZWY3NGVlNzgwNmU0YzVlMGE0OWI1NWZiNGNlNDY5Y2VlMjc0YmQ2MGU0
14
+ OWQyNTI1YzA3NDViMDc0NjYxOWQ4MmM4ZTYzNzQ3ZjVkMDdmY2ZiZTNmYjA5
15
+ YTBkYzFhZDc1ZjhjNTQ4MzYyZDdiOGIxNjg3MjI0N2RmOGQzYzE=
data/bin/timetwister ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'timetwister'
4
+ p Timetwister.parse(ARGV[0])
@@ -1,3 +1,3 @@
1
1
  module Timetwister
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
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 = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
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.0
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