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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 40a29997ddf4fe0636444f8e053a10c2137d55e5
4
- data.tar.gz: cbb93992254d3a890b33ad01341bb2f74b8697b9
3
+ metadata.gz: 959bf6b04d72c1da1ead272b846f4708775254d4
4
+ data.tar.gz: b5b1a908526644ce56ebf19a1dd62c618ccffbc1
5
5
  SHA512:
6
- metadata.gz: 66b1da9426ab003d09237ee94b2bfc37e2ea0952ce19d9419f07670653fcb61b7eebf4c7f2df9d094669084360b282ac9ad81aa0a2697c36f1ede916f7922690
7
- data.tar.gz: 4674fba51c9cd76b75f6c85d9fc15583cfb407483325ba56be3da89b59f564ff85cfd0b47abed097941e933c464bb93c413fd83ba8f3db8706d10434ace6f563
6
+ metadata.gz: 55a045f3d94a0b985675d5873ebc7e18d01ae0465e8a8c0c68ae95ffeb9f30cd72f1b43c1a98d0049c3a863201dfc87e436e1cc08cfd001d3daa0f082f3fde27
7
+ data.tar.gz: 57f63af3405fc555db755a1310d098d63c66121c86fc98e956d8e2dc1689157a194d02e2ff4a98064efaecca182892bb6b8fee8409a13ed70a3c908e52cfd586
@@ -1,4 +1,4 @@
1
1
  rvm:
2
2
  - 1.9.3
3
- - 2.0.0-p353
3
+ - 2.0.0
4
4
  - 2.1.0
File without changes
@@ -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
@@ -1,3 +1,3 @@
1
1
  module ChronicDuration
2
- VERSION = '0.10.4'
2
+ VERSION = '0.10.5'
3
3
  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
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-02-24 00:00:00.000000000 Z
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
- - MIT-LICENSE
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.0
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