fe_core_ext 0.26.0 → 0.26.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/lib/fe_core_ext/core_ext/array.rb +2 -0
- data/lib/fe_core_ext/core_ext/csv.rb +3 -1
- data/lib/fe_core_ext/core_ext/date.rb +11 -9
- data/lib/fe_core_ext/core_ext/hash.rb +2 -0
- data/lib/fe_core_ext/core_ext/integer.rb +2 -0
- data/lib/fe_core_ext/core_ext/numeric.rb +2 -0
- data/lib/fe_core_ext/core_ext/pathname.rb +2 -0
- data/lib/fe_core_ext/core_ext/string.rb +2 -0
- data/lib/fe_core_ext/core_ext/time.rb +2 -0
- data/lib/fe_core_ext/core_ext/uri.rb +2 -0
- data/lib/fe_core_ext/version.rb +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90cc42e64a3355c2a471e3232cc907a8abbdb7e7a9fe74b62368e264ae680b55
|
4
|
+
data.tar.gz: dbf52bd2f8489954b26a523de1664a5143a84622d1eba120773e9f718845da6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a33053eca4efeef215fa437ec6e938c24d09f62c0761423b6fee751380cb542644781c5fc0ec9e4c13b05a4c7d0a708486088fb25bab115dae7e2da74a25f908
|
7
|
+
data.tar.gz: f1de27fdbeb76b3ae768dc19681595ac152088cf40d34443bbd2b4815964492152d278a67a86d010cb8969f8658be80ed4b629dcf227b25c960a559dab3c58ce
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'active_support'
|
2
4
|
require 'active_support/time'
|
3
5
|
|
@@ -18,9 +20,9 @@ module FeCoreExt::CoreExt::Date
|
|
18
20
|
end
|
19
21
|
|
20
22
|
def nth_weekday(nth, weekday)
|
21
|
-
first_day = Date.new(
|
22
|
-
weekdays_hash = {sun: 0, mon: 1, tue: 2, wed: 3, thu: 4, fri: 5, sat: 6}
|
23
|
-
weekday_dates = (first_day..first_day.end_of_month).select{|d| d.wday == weekdays_hash[weekday]}
|
23
|
+
first_day = Date.new(year, month, 1)
|
24
|
+
weekdays_hash = { sun: 0, mon: 1, tue: 2, wed: 3, thu: 4, fri: 5, sat: 6 }
|
25
|
+
weekday_dates = (first_day..first_day.end_of_month).select { |d| d.wday == weekdays_hash[weekday] }
|
24
26
|
weekday_dates[nth - 1]
|
25
27
|
end
|
26
28
|
end
|
@@ -29,6 +31,7 @@ module FeCoreExt::CoreExt::DateClassMethods
|
|
29
31
|
def parsable?(string)
|
30
32
|
parsed_hash = _parse(string)
|
31
33
|
return true if parsed_hash.has_key?(:year) && parsed_hash.has_key?(:mon)
|
34
|
+
|
32
35
|
false
|
33
36
|
end
|
34
37
|
|
@@ -39,15 +42,15 @@ module FeCoreExt::CoreExt::DateClassMethods
|
|
39
42
|
|
40
43
|
def parse_heisei(string)
|
41
44
|
string.match('平成(\d+)年(\d+)月(\d+)日') do
|
42
|
-
Date.new(
|
45
|
+
Date.new(::Regexp.last_match(1).to_i + 1988, ::Regexp.last_match(2).to_i, ::Regexp.last_match(3).to_i)
|
43
46
|
end
|
44
47
|
end
|
45
48
|
|
46
49
|
def parse_reiwa(string)
|
47
50
|
string.match('令和(\S+)年(\d+)月(\d+)日') do
|
48
|
-
year = 1 if
|
49
|
-
year ||=
|
50
|
-
Date.new(year + 2018,
|
51
|
+
year = 1 if ::Regexp.last_match(1) == '元'
|
52
|
+
year ||= ::Regexp.last_match(1).to_i
|
53
|
+
Date.new(year + 2018, ::Regexp.last_match(2).to_i, ::Regexp.last_match(3).to_i)
|
51
54
|
end
|
52
55
|
end
|
53
56
|
|
@@ -57,14 +60,13 @@ module FeCoreExt::CoreExt::DateClassMethods
|
|
57
60
|
|
58
61
|
def parse_nengappi(string)
|
59
62
|
string.match(/(\d{4})年(\d+)月(\d+)日/) do
|
60
|
-
|
63
|
+
Date.new(::Regexp.last_match(1).to_i, ::Regexp.last_match(2).to_i, ::Regexp.last_match(3).to_i)
|
61
64
|
end
|
62
65
|
end
|
63
66
|
|
64
67
|
def parse_ja(string)
|
65
68
|
parse_nengappi(string) || parse_gengo(string)
|
66
69
|
end
|
67
|
-
|
68
70
|
end
|
69
71
|
|
70
72
|
class Date
|
data/lib/fe_core_ext/version.rb
CHANGED