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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 668e2a499cb49f8f3f0badcea7c0f2d713178b68f3d133df4c6be1b93a99d4b7
4
- data.tar.gz: 12ed9f73f0efb48df385065d255c2c882e7c7f30c4ec23cfcffd34b3566dc2a3
3
+ metadata.gz: 90cc42e64a3355c2a471e3232cc907a8abbdb7e7a9fe74b62368e264ae680b55
4
+ data.tar.gz: dbf52bd2f8489954b26a523de1664a5143a84622d1eba120773e9f718845da6e
5
5
  SHA512:
6
- metadata.gz: 4fcca145dfab9ad3f2edfde5a4035e19e72ba3ee0a04582789010ac5aeb3b471335488fb3a8f6c7f3960d105dcced98d2f51cd8c3952ff8e90d213256ff2574b
7
- data.tar.gz: 7f6b562bc6924f4b478a5595e2bb4ace3180bc70a9a493409347fbe7e312ed5f88660b8bedb9144149be201a8c53057204f8edd23a764b92ebb603c890dbbb1a
6
+ metadata.gz: a33053eca4efeef215fa437ec6e938c24d09f62c0761423b6fee751380cb542644781c5fc0ec9e4c13b05a4c7d0a708486088fb25bab115dae7e2da74a25f908
7
+ data.tar.gz: f1de27fdbeb76b3ae768dc19681595ac152088cf40d34443bbd2b4815964492152d278a67a86d010cb8969f8658be80ed4b629dcf227b25c960a559dab3c58ce
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'bigdecimal'
2
4
  require 'bigdecimal/util'
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'bigdecimal'
2
4
  require 'bigdecimal/util'
3
5
  require 'csv'
@@ -19,4 +21,4 @@ class CSV
19
21
  field
20
22
  end
21
23
  end
22
- end
24
+ end
@@ -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(self.year, self.month, 1)
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($1.to_i + 1988, $2.to_i, $3.to_i)
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 $1 == '元'
49
- year ||= $1.to_i
50
- Date.new(year + 2018, $2.to_i, $3.to_i)
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
- Date.new($1.to_i, $2.to_i, $3.to_i)
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
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'active_support'
2
4
  require 'active_support/core_ext/hash'
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module FeCoreExt::CoreExt
2
4
  end
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module FeCoreExt::CoreExt
2
4
  end
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'pathname'
2
4
  require 'yaml'
3
5
  require 'fileutils'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'bigdecimal'
2
4
  require 'bigdecimal/util'
3
5
  require 'pathname'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'active_support'
2
4
  require 'active_support/time'
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'uri'
2
4
  require 'fileutils'
3
5
  require 'open-uri'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module FeCoreExt
2
- VERSION = '0.26.0'
4
+ VERSION = '0.26.1'
3
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fe_core_ext
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.26.0
4
+ version: 0.26.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tetsu