cfita 0.3.0 → 0.3.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: 5cef58c59196f0191df63c18b9780dff69ae3ae5412af8b2fdabfba0eb426295
4
- data.tar.gz: c7d0adf7e96974485cf665d49697122490dbd99b9c312315f310eda7ea41528e
3
+ metadata.gz: 424b84e97b24a15273e3ef1cfc4cf7af8d333342acde10d656375f9e97eec6f9
4
+ data.tar.gz: 401e7387c2e19cafea5ef406f33ed30ab4dac68147fcaa6162038f93cca82703
5
5
  SHA512:
6
- metadata.gz: 4db0e12e84f59d1e60d39dbd4409dfa9ed243c2ef5d2a7d1c1b77574ff957a1f931e4cafc4bf40aa548c663bc02407b8f3bbcc05f7183d423b64dfa024739968
7
- data.tar.gz: dd13a735a96de5d038d822effac798e0b577a80077fdb8bc66dbe15a59883437dd1ea7e98c25643fb1f95e71165af0ef368a5d9fa45219a44be9ea92359c6ba9
6
+ metadata.gz: 293c36acf2d95209ca2e6602b9052087b20f4a45a073c541e0a6042d113475ce7b988e3961fb2d73a46d5d7bc468f06307df54ed000ed2db275acae59c87ff2d
7
+ data.tar.gz: 5962972ecfbffdea99f53423c480b3ff962e205b15a90d4d47cf9c73c79af2b4ceb103ef108dd13f151be6b61f8827ea7c1ac59e199e06202af8315a701744a7
data/CHANGELOG.md ADDED
@@ -0,0 +1,17 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## v0.3.1 - 2022-12-10
9
+
10
+ ### Added
11
+
12
+ - M433 - BARDELLO CON MALGESSO E BREGANO
13
+
14
+ ### Renamed
15
+
16
+ - B418 - CALLIANO => CALLIANO MONFERRATO
17
+ - B991 - CASORZO => CASORZO MONFERRATO
data/README.md CHANGED
@@ -30,7 +30,7 @@ require 'cfita'
30
30
  p Cfita::CodiceFiscale.new('AAABBB50A50F839X')
31
31
  => #<Cfita::CodiceFiscale:0x00007fa4efd09558 @fiscal_code="AAABBB50A50F839X", @birth_place=nil, @birth_date=nil, @name=nil, @surname=nil, @sex=nil, @errors=["Checksum errato"]>
32
32
 
33
- p Cfita::CodiceFiscale(
33
+ p Cfita::CodiceFiscale.new(
34
34
  'AAABBB50A50F839U',
35
35
  birth_place: 'Roma',
36
36
  birth_date: '19600530',
@@ -49,6 +49,3 @@ p Cfita::CodiceFiscale(
49
49
  3. Commit your changes (`git commit -am 'Add some feature'`)
50
50
  4. Push to the branch (`git push origin my-new-feature`)
51
51
  5. Create new Pull Request
52
-
53
- ##
54
-
data/cfita.gemspec CHANGED
@@ -5,7 +5,7 @@ Gem::Specification.new do |s|
5
5
  s.required_ruby_version = '>= 2.4'
6
6
  s.name = 'cfita'
7
7
  s.version = Cfita::VERSION
8
- s.date = '2021-06-02'
8
+ s.date = '2022-12-10'
9
9
  s.summary = 'Italian fiscal code checker'
10
10
  s.description = 'Controllo codici fiscali italiani'
11
11
  s.authors = ['Stefano Savanelli']
@@ -1415,7 +1415,7 @@ module Cfita
1415
1415
  'B415' => ["CALITRI"],
1416
1416
  'B416' => ["CALIZZANO"],
1417
1417
  'B417' => ["CALLABIANA"],
1418
- 'B418' => ["CALLIANO"],
1418
+ 'B418' => ["CALLIANO MONFERRATO"],
1419
1419
  'B419' => ["CALLIANO"],
1420
1420
  'B420' => ["CALO'"],
1421
1421
  'B421' => ["CALOGNA"],
@@ -1988,7 +1988,7 @@ module Cfita
1988
1988
  'B988' => ["CASORATE PRIMO"],
1989
1989
  'B989' => ["CASOREZZO"],
1990
1990
  'B990' => ["CASORIA"],
1991
- 'B991' => ["CASORZO"],
1991
+ 'B991' => ["CASORZO MONFERRATO"],
1992
1992
  'B992' => ["CASOTTO"],
1993
1993
  'B993' => ["CASPOGGIO"],
1994
1994
  'B994' => ["CASSACCO"],
@@ -10416,6 +10416,7 @@ module Cfita
10416
10416
  'M430' => ["NOVELLA"],
10417
10417
  'M431' => ["VILLE DI FIEMME"],
10418
10418
  'M432' => ["MISILISCEMI"],
10419
+ 'M433' => ["BARDELLO CON MALGESSO E BREGANO"],
10419
10420
  'Z100' => ["ALBANIA"],
10420
10421
  'Z101' => ["ANDORRA"],
10421
10422
  'Z102' => ["AUSTRIA"],
data/lib/cfita.rb CHANGED
@@ -4,5 +4,5 @@
4
4
  module Cfita
5
5
  require 'cfita/codice_fiscale'
6
6
 
7
- VERSION='0.3.0'
7
+ VERSION='0.3.1'
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cfita
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stefano Savanelli
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-02 00:00:00.000000000 Z
11
+ date: 2022-12-10 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Controllo codici fiscali italiani
14
14
  email: stefano@savanelli.it
@@ -18,6 +18,7 @@ extra_rdoc_files: []
18
18
  files:
19
19
  - ".gitignore"
20
20
  - ".rubocop.yml"
21
+ - CHANGELOG.md
21
22
  - Gemfile
22
23
  - README.md
23
24
  - cfita.gemspec
@@ -44,7 +45,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
44
45
  - !ruby/object:Gem::Version
45
46
  version: '0'
46
47
  requirements: []
47
- rubygems_version: 3.2.15
48
+ rubygems_version: 3.3.26
48
49
  signing_key:
49
50
  specification_version: 4
50
51
  summary: Italian fiscal code checker