time_pieces 1.0.0 → 1.0.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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/time_pieces/simple_duration.rb +2 -2
- data/lib/time_pieces/version.rb +1 -1
- data/pkg/time_pieces-1.0.0.gem +0 -0
- data/time_pieces.gemspec +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e1791332c5f1efc6b713256a97fd44ffe9e1fd34
|
4
|
+
data.tar.gz: 94b4d44cc871502f3e7393d2763f489cf2f0f73b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d7bebe854157d7eb6e5efe58982e169df626cbc310a4ccb4442bd481c89bf3ef817be04f09959b4381d11d68e4253a084efe5589d3ae30df00db5f550f80250d
|
7
|
+
data.tar.gz: 00c928f1ac5315a40d6cca259b86a9781f6289c1ee1ec3d5a7bb60f8cb32f2b481cfab84884661238083aeb1ea84b3354081d6aad1b264b04e492d353ccc2af6
|
data/Gemfile.lock
CHANGED
@@ -23,8 +23,8 @@ module TimePieces
|
|
23
23
|
duration = duration_seconds / 60 / 60
|
24
24
|
return "TD: #{hours_start} - #{hours_end} time in seconds: #{duration_seconds}"
|
25
25
|
end
|
26
|
-
def
|
27
|
-
return SimpleDuration.new(1,10)
|
26
|
+
def duration_copy
|
27
|
+
return TimePieces::SimpleDuration.new(1,10)
|
28
28
|
end
|
29
29
|
end
|
30
30
|
end
|
data/lib/time_pieces/version.rb
CHANGED
Binary file
|
data/time_pieces.gemspec
CHANGED
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
|
|
13
13
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
14
14
|
spec.bindir = "exe"
|
15
15
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
16
|
-
spec.
|
16
|
+
spec.require_path = "lib"
|
17
17
|
spec.homepage = "http://github.com/riggleg/time_pieces"
|
18
18
|
spec.summary = "Time based operations."
|
19
19
|
spec.description = "time_pieces is a library to make it easy to add/subtract time from a schedule"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: time_pieces
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Grant R.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-02-
|
11
|
+
date: 2016-02-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -83,6 +83,7 @@ files:
|
|
83
83
|
- lib/time_pieces/simple_duration.rb
|
84
84
|
- lib/time_pieces/time_set.rb
|
85
85
|
- lib/time_pieces/version.rb
|
86
|
+
- pkg/time_pieces-1.0.0.gem
|
86
87
|
- time_pieces.gemspec
|
87
88
|
homepage: http://github.com/riggleg/time_pieces
|
88
89
|
licenses:
|