coligny 0.3.3 → 0.3.4
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/lib/coligny.rb +2 -2
- data/lib/coligny/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6264c22ecaccb651d7946b52dbe9927105da6c0f
|
|
4
|
+
data.tar.gz: 1cfd24e10b67021be2f3c705b4c67ccd8a6e5f12
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb69b8a545b2a9a5050666bfc6b8095b30724a21c79407e123c8ed84fb48c16c870d4eee0dee8e8b75f20d1d8f6897a960eea2451129d70dd5d5645a6da91de5
|
|
7
|
+
data.tar.gz: 0b8bad17afe25bf519595eb061802a63d74561bf6ed313119c5a1fd630bd8971f73f9654f86751b5d0c01ead3834825e67fe2f5859cb1dd3b2b13310b492fe28
|
data/lib/coligny.rb
CHANGED
|
@@ -260,7 +260,7 @@ module Coligny
|
|
|
260
260
|
end
|
|
261
261
|
|
|
262
262
|
def metonic_longcycle_int2_check
|
|
263
|
-
if metonic_longcycle_year_check(6569, 4) && (@months[6].name
|
|
263
|
+
if metonic_longcycle_year_check(6569, 4) && (@months[6].name == "Intercalary Two")
|
|
264
264
|
@months.delete_at(6)
|
|
265
265
|
end
|
|
266
266
|
end
|
|
@@ -272,7 +272,7 @@ module Coligny
|
|
|
272
272
|
end
|
|
273
273
|
|
|
274
274
|
def metonic_longcycle_reverse_int2_check
|
|
275
|
-
if metonic_longcycle_year_check(6569, 6565) && (@months[6].name
|
|
275
|
+
if metonic_longcycle_year_check(6569, 6565) && (@months[6].name == "Intercalary Two")
|
|
276
276
|
@months.delete_at(6)
|
|
277
277
|
end
|
|
278
278
|
end
|
data/lib/coligny/version.rb
CHANGED