fluid-time 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +3 -4
- data/VERSION +1 -1
- data/fluid-time.gemspec +3 -1
- metadata +5 -3
data/Rakefile
CHANGED
@@ -18,10 +18,9 @@ Jeweler::Tasks.new do |gem|
|
|
18
18
|
gem.homepage = "http://github.com/smlsml/fluid-time"
|
19
19
|
gem.license = "MIT"
|
20
20
|
gem.summary = %Q{A fluent interface for formatting ruby time}
|
21
|
-
gem.description = %Q{Stop formatting time like a C-anderthal. Craft human readable time formats like building a sentence
|
22
|
-
|
23
|
-
|
24
|
-
# April 12th, 2012 @ 09:22 AM PDT
|
21
|
+
gem.description = %Q{Stop formatting time like a C-anderthal. Craft human readable time formats like building a sentence.\n
|
22
|
+
\n> FluidTime.new('2012/04/12 9:22').month.day.th.sc.ss.year.txt('@').time.xz.pm.zone.to_s
|
23
|
+
\n# April 12th, 2012 @ 09:22 AM PDT
|
25
24
|
}
|
26
25
|
gem.email = "smlsml@gmail.com"
|
27
26
|
gem.authors = ["Steve Lawson"]
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.4
|
data/fluid-time.gemspec
CHANGED
@@ -5,14 +5,16 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{fluid-time}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.4"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Steve Lawson"]
|
12
12
|
s.date = %q{2012-04-10}
|
13
13
|
s.description = %q{Stop formatting time like a C-anderthal. Craft human readable time formats like building a sentence.
|
14
14
|
|
15
|
+
|
15
16
|
> FluidTime.new('2012/04/12 9:22').month.day.th.sc.ss.year.txt('@').time.xz.pm.zone.to_s
|
17
|
+
|
16
18
|
# April 12th, 2012 @ 09:22 AM PDT
|
17
19
|
}
|
18
20
|
s.email = %q{smlsml@gmail.com}
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluid-time
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 19
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 4
|
10
|
+
version: 0.1.4
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Steve Lawson
|
@@ -98,7 +98,9 @@ dependencies:
|
|
98
98
|
description: |
|
99
99
|
Stop formatting time like a C-anderthal. Craft human readable time formats like building a sentence.
|
100
100
|
|
101
|
+
|
101
102
|
> FluidTime.new('2012/04/12 9:22').month.day.th.sc.ss.year.txt('@').time.xz.pm.zone.to_s
|
103
|
+
|
102
104
|
# April 12th, 2012 @ 09:22 AM PDT
|
103
105
|
|
104
106
|
email: smlsml@gmail.com
|