kirico 1.0.2 → 1.0.3
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/kirico/models/data_record22257041.rb +4 -4
- data/lib/kirico/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1bd3fdf27b6d6aebd713b76d264b08069b8fd0b7
|
|
4
|
+
data.tar.gz: 46f10fe4947ce1d71027ad9928054fec18060de4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f8d773207b151e65fdf706c280687c3cdd449a95b34f44898f5dbb13637b46b5c5e05d343d3843276585fb6148094144477940b6eb96c940a9ea9b1d34f98c82
|
|
7
|
+
data.tar.gz: e50e337487c3241ef1dd453d7f37aa5cec67cbfcd8bdb3dfafe1d7d046e48bf4bed196a0401fb0fde56d2af66858a35214c9da7baebd78677bca8c13501c8eb6
|
|
@@ -42,8 +42,8 @@ module Kirico
|
|
|
42
42
|
validates :ip_name_yomi, charset: { accept: [:katakana] }, sjis_bytesize: { in: 1..25 }, space_divider: { space: :half_width }
|
|
43
43
|
validates :ip_name, charset: { accept: [:all] }, sjis_bytesize: { in: 0..24 }, allow_blank: true, space_divider: { space: :full_width }
|
|
44
44
|
validates :gender_type, inclusion: { in: [:gender_type_1, :gender_type_2, :gender_type_3, :gender_type_5, :gender_type_6, :gender_type_7] }
|
|
45
|
-
validates :old_monthly_standard_income_hel_ins, numericality: { greater_than_or_equal_to:
|
|
46
|
-
validates :old_monthly_standard_income_pns_ins, numericality: { greater_than_or_equal_to:
|
|
45
|
+
validates :old_monthly_standard_income_hel_ins, numericality: { greater_than_or_equal_to: 1_000, less_than_or_equal_to: 9_999_999 }, allow_blank: true
|
|
46
|
+
validates :old_monthly_standard_income_pns_ins, numericality: { greater_than_or_equal_to: 1_000, less_than_or_equal_to: 9_999_999 }, allow_blank: true
|
|
47
47
|
validates :old_applied_at, timeliness: { on_or_after: -> { Date.new(1989, 1, 8) }, type: :date }
|
|
48
48
|
validates :apr_days, numericality: { greater_than_or_equal_to: 0, less_than_or_equal_to: 31 }
|
|
49
49
|
validates :may_days, numericality: { greater_than_or_equal_to: 0, less_than_or_equal_to: 31 }
|
|
@@ -76,7 +76,7 @@ module Kirico
|
|
|
76
76
|
'',
|
|
77
77
|
mapped_applied_at_era_nengo,
|
|
78
78
|
applied_at_era_year,
|
|
79
|
-
|
|
79
|
+
'09',
|
|
80
80
|
ip_name_yomi,
|
|
81
81
|
ip_name,
|
|
82
82
|
mapped_gender_type,
|
|
@@ -138,7 +138,7 @@ module Kirico
|
|
|
138
138
|
avg < 10_000_000 ? avg : 9_999_999
|
|
139
139
|
end
|
|
140
140
|
|
|
141
|
-
# 算定対象月の配列を返却する
|
|
141
|
+
# 算定対象月の配列を返却する
|
|
142
142
|
#
|
|
143
143
|
# 1. 一般の被保険者の場合
|
|
144
144
|
# 17 日以上の月を対象とする
|
data/lib/kirico/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kirico
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- kakipo
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-06-
|
|
11
|
+
date: 2017-06-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|