hellobase 0.1.6 → 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/hellobase/version.rb +1 -1
- data/lib/hellobase.rb +0 -2
- metadata +1 -2
- data/lib/hellobase/duration_creation.rb +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 304e4c01b7cf2cda1aba0913505df28995211698b290be7891e3f5f9cbc0825b
|
4
|
+
data.tar.gz: d20143c56281095365ee8ce07ad3694b9cbba20efda82c84e00fa45647f4b17d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8f5f6e09df8dc8529b3194d666b7cc4d085c9eb0210c7787890e0654cb30c76088869c1cfe733d41d3d0949b3a4ab509bc01cd09768a00e2a47124f7865347b
|
7
|
+
data.tar.gz: 5526a08028b78ad53985d38167a0772c277cd62e5314c39f924035783b8171c714d7ee79563d149533b687fc6e1eca7fb0076183612bd86058b9346e6ad65bd7
|
data/lib/hellobase/version.rb
CHANGED
data/lib/hellobase.rb
CHANGED
@@ -10,7 +10,6 @@ require 'hellobase/date_creation'
|
|
10
10
|
require 'hellobase/datetime_creation'
|
11
11
|
require 'hellobase/divide_by_zero'
|
12
12
|
require 'hellobase/duration_arithmetic'
|
13
|
-
require 'hellobase/duration_creation'
|
14
13
|
require 'hellobase/string_access'
|
15
14
|
require 'hellobase/time_creation'
|
16
15
|
|
@@ -18,7 +17,6 @@ module Hellobase
|
|
18
17
|
DATE_FORMAT = /^\d{4}-\d{2}-\d{2}$/
|
19
18
|
TIME_FORMAT = /^\d{2}:\d{2}:\d{2}$/
|
20
19
|
DATETIME_FORMAT = /^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} UTC$/
|
21
|
-
DURATION_FORMAT = /^P-?\d+Y-?\d+M-?\d+DT-?\d+H-?\d+M-?\d+S$/
|
22
20
|
|
23
21
|
class Error < StandardError
|
24
22
|
attr_reader :type, :object
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hellobase
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Anthony Wang
|
@@ -86,7 +86,6 @@ files:
|
|
86
86
|
- lib/hellobase/datetime_creation.rb
|
87
87
|
- lib/hellobase/divide_by_zero.rb
|
88
88
|
- lib/hellobase/duration_arithmetic.rb
|
89
|
-
- lib/hellobase/duration_creation.rb
|
90
89
|
- lib/hellobase/string_access.rb
|
91
90
|
- lib/hellobase/time_creation.rb
|
92
91
|
- lib/hellobase/version.rb
|