partial-date 1.2.0 → 1.2.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.
- data/ChangeLog.markdown +3 -0
- data/README.markdown +0 -2
- data/lib/partial-date/date.rb +1 -1
- data/lib/partial-date/version.rb +1 -1
- data/spec/date_spec.rb +4 -4
- metadata +2 -2
data/ChangeLog.markdown
CHANGED
data/README.markdown
CHANGED
data/lib/partial-date/date.rb
CHANGED
@@ -16,7 +16,7 @@ module PartialDate
|
|
16
16
|
ZERO_SIGN_MASK = 0b011111111111111111111111111111
|
17
17
|
ZERO_YEAR_MASK = 0b100000000000000000000111111111
|
18
18
|
ZERO_MONTH_MASK = 0b111111111111111111111000011111
|
19
|
-
ZERO_DAY_MASK =
|
19
|
+
ZERO_DAY_MASK = 0b111111111111111111111111100000
|
20
20
|
|
21
21
|
SIGN_SHIFT = 29
|
22
22
|
YEAR_SHIFT = 9
|
data/lib/partial-date/version.rb
CHANGED
data/spec/date_spec.rb
CHANGED
@@ -19,13 +19,13 @@ describe PartialDate::Date do
|
|
19
19
|
end
|
20
20
|
|
21
21
|
it "should allow construction from a block of integers" do
|
22
|
-
new_date = PartialDate::Date.new {|d| d.year = 2010; d.month =
|
23
|
-
new_date.value.should ==
|
22
|
+
new_date = PartialDate::Date.new {|d| d.year = 2010; d.month = 11; d.day = 1}
|
23
|
+
new_date.value.should == 20101101
|
24
24
|
end
|
25
25
|
|
26
26
|
it "should allow construction from a block of strings" do
|
27
|
-
new_date = PartialDate::Date.new {|d| d.year = "2010"; d.month = "
|
28
|
-
new_date.value.should ==
|
27
|
+
new_date = PartialDate::Date.new {|d| d.year = "2010"; d.month = "11"; d.day = "1"}
|
28
|
+
new_date.value.should == 20101101
|
29
29
|
end
|
30
30
|
|
31
31
|
it "should allow construction from the class load method" do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: partial-date
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-10-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rubygems-tasks
|