cfita 0.2.1 → 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: 0ed20c0331d91840788280997a82d5ccc4c67437d8fef59ef4023b527ae1278b
4
- data.tar.gz: 50fb66350cdd4e8bd53a2c0369830729570ed77dbfa8d616dae21de703702c0d
3
+ metadata.gz: 424b84e97b24a15273e3ef1cfc4cf7af8d333342acde10d656375f9e97eec6f9
4
+ data.tar.gz: 401e7387c2e19cafea5ef406f33ed30ab4dac68147fcaa6162038f93cca82703
5
5
  SHA512:
6
- metadata.gz: 411fbd4ff9550b11f962dcc0896562274e3d003de719cad6b2b80fa23f2bd8feb25734499d04f74a8667ff2bcdcb2efafa838db178d5a14fe853d7b44b77b392
7
- data.tar.gz: 3dec911eb3a8ccd7db3280398c22e6d9b1c8d9ee6bf3df4dd4d793526dd4b60b5cfb59b12f91a58a999856a509672fd9786e1b6cc09d7c1e644f966b103519e6
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
@@ -1,10 +1,11 @@
1
1
  # frozen_string_literal: true
2
+ require File.join(__dir__, "lib", "cfita")
2
3
 
3
4
  Gem::Specification.new do |s|
4
5
  s.required_ruby_version = '>= 2.4'
5
6
  s.name = 'cfita'
6
- s.version = '0.2.1'
7
- s.date = '2019-10-30'
7
+ s.version = Cfita::VERSION
8
+ s.date = '2022-12-10'
8
9
  s.summary = 'Italian fiscal code checker'
9
10
  s.description = 'Controllo codici fiscali italiani'
10
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"],
@@ -10412,6 +10412,11 @@ module Cfita
10412
10412
  'M426' => ["COLCERESA"],
10413
10413
  'M427' => ["LUSIANA CONCO"],
10414
10414
  'M428' => ["PRESICCE-ACQUARICA"],
10415
+ 'M429' => ["BORGO D'ANAUNIA"],
10416
+ 'M430' => ["NOVELLA"],
10417
+ 'M431' => ["VILLE DI FIEMME"],
10418
+ 'M432' => ["MISILISCEMI"],
10419
+ 'M433' => ["BARDELLO CON MALGESSO E BREGANO"],
10415
10420
  'Z100' => ["ALBANIA"],
10416
10421
  'Z101' => ["ANDORRA"],
10417
10422
  'Z102' => ["AUSTRIA"],
data/lib/cfita.rb CHANGED
@@ -3,4 +3,6 @@
3
3
  # controllo codice fiscale italiano
4
4
  module Cfita
5
5
  require 'cfita/codice_fiscale'
6
+
7
+ VERSION='0.3.1'
6
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.2.1
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stefano Savanelli
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-10-30 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
@@ -29,7 +30,7 @@ homepage: https://rubygems.org/gems/cfita
29
30
  licenses:
30
31
  - MIT
31
32
  metadata: {}
32
- post_install_message:
33
+ post_install_message:
33
34
  rdoc_options: []
34
35
  require_paths:
35
36
  - lib
@@ -44,8 +45,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
44
45
  - !ruby/object:Gem::Version
45
46
  version: '0'
46
47
  requirements: []
47
- rubygems_version: 3.0.3
48
- signing_key:
48
+ rubygems_version: 3.3.26
49
+ signing_key:
49
50
  specification_version: 4
50
51
  summary: Italian fiscal code checker
51
52
  test_files: