chronic_duration 0.10.4 → 0.10.5
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/.travis.yml +1 -1
- data/{MIT-LICENSE → LICENSE.txt} +0 -0
- data/chronic_duration.gemspec +2 -0
- data/lib/chronic_duration/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 959bf6b04d72c1da1ead272b846f4708775254d4
|
|
4
|
+
data.tar.gz: b5b1a908526644ce56ebf19a1dd62c618ccffbc1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 55a045f3d94a0b985675d5873ebc7e18d01ae0465e8a8c0c68ae95ffeb9f30cd72f1b43c1a98d0049c3a863201dfc87e436e1cc08cfd001d3daa0f082f3fde27
|
|
7
|
+
data.tar.gz: 57f63af3405fc555db755a1310d098d63c66121c86fc98e956d8e2dc1689157a194d02e2ff4a98064efaecca182892bb6b8fee8409a13ed70a3c908e52cfd586
|
data/.travis.yml
CHANGED
data/{MIT-LICENSE → LICENSE.txt}
RENAMED
|
File without changes
|
data/chronic_duration.gemspec
CHANGED
|
@@ -12,6 +12,7 @@ Gem::Specification.new do |gem|
|
|
|
12
12
|
gem.description = %q{A simple Ruby natural language parser for elapsed time. (For example, 4 hours and 30 minutes, 6 minutes 4 seconds, 3 days, etc.) Returns all results in seconds. Will return an integer unless you get tricky and need a float. (4 minutes and 13.47 seconds, for example.) The reverse can also be performed via the output method.}
|
|
13
13
|
gem.summary = %q{A simple Ruby natural language parser for elapsed time}
|
|
14
14
|
gem.homepage = "https://github.com/hpoydar/chronic_duration"
|
|
15
|
+
gem.license = "MIT"
|
|
15
16
|
|
|
16
17
|
gem.files = `git ls-files`.split($/)
|
|
17
18
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
@@ -23,4 +24,5 @@ Gem::Specification.new do |gem|
|
|
|
23
24
|
gem.add_development_dependency "rake", "~> 10.0.3"
|
|
24
25
|
gem.add_development_dependency "rspec", "~> 2.12.0"
|
|
25
26
|
|
|
27
|
+
|
|
26
28
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chronic_duration
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.10.
|
|
4
|
+
version: 0.10.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- hpoydar
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-07-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: numerizer
|
|
@@ -66,7 +66,7 @@ files:
|
|
|
66
66
|
- ".gitignore"
|
|
67
67
|
- ".travis.yml"
|
|
68
68
|
- Gemfile
|
|
69
|
-
-
|
|
69
|
+
- LICENSE.txt
|
|
70
70
|
- README.md
|
|
71
71
|
- Rakefile
|
|
72
72
|
- chronic_duration.gemspec
|
|
@@ -75,7 +75,8 @@ files:
|
|
|
75
75
|
- spec/lib/chronic_duration_spec.rb
|
|
76
76
|
- spec/spec_helper.rb
|
|
77
77
|
homepage: https://github.com/hpoydar/chronic_duration
|
|
78
|
-
licenses:
|
|
78
|
+
licenses:
|
|
79
|
+
- MIT
|
|
79
80
|
metadata: {}
|
|
80
81
|
post_install_message:
|
|
81
82
|
rdoc_options: []
|
|
@@ -93,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
93
94
|
version: '0'
|
|
94
95
|
requirements: []
|
|
95
96
|
rubyforge_project:
|
|
96
|
-
rubygems_version: 2.2.
|
|
97
|
+
rubygems_version: 2.2.2
|
|
97
98
|
signing_key:
|
|
98
99
|
specification_version: 4
|
|
99
100
|
summary: A simple Ruby natural language parser for elapsed time
|