saft 0.2.1 → 0.3.0

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.
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: saft
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dodo developer
8
8
  - Simon Toivo Telhaug
9
- autorequire:
9
+ autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2023-04-28 00:00:00.000000000 Z
12
+ date: 2025-11-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: zeitwerk
@@ -53,14 +53,13 @@ dependencies:
53
53
  - - "~>"
54
54
  - !ruby/object:Gem::Version
55
55
  version: '1.13'
56
- description:
56
+ description:
57
57
  email:
58
58
  - simon.toivo.telhaug@dev.dodo.no
59
59
  executables: []
60
60
  extensions: []
61
61
  extra_rdoc_files: []
62
62
  files:
63
- - ".gemspec"
64
63
  - ".rspec"
65
64
  - ".rubocop.yml"
66
65
  - ".rubocop_strict.yml"
@@ -83,12 +82,8 @@ files:
83
82
  - pnpm-lock.yaml
84
83
  - readme.md
85
84
  - tailwind.config.js
86
- - vendor/SAF-T_Financial_Schema_NO_1.10.xsd
87
- - vendor/norway/general_ledger_standard_accounts.xsd
88
- - vendor/norway/general_ledger_standard_accounts_2_character.csv
89
- - vendor/norway/general_ledger_standard_accounts_2_character.xml
90
- - vendor/norway/general_ledger_standard_accounts_4_character.csv
91
- - vendor/norway/general_ledger_standard_accounts_4_character.xml
85
+ - vendor/Norwegian_SAF-T_Financial_Schema_v_1.30.xsd
86
+ - vendor/norway/general_ledger_account_grouping_category_codes_income_statement_naeringsspesifikasjon.csv
92
87
  - vendor/norway/standard_tax_codes.csv
93
88
  - vendor/norway/standard_tax_codes.xml
94
89
  - vendor/norway/standard_tax_codes.xsd
@@ -99,7 +94,7 @@ metadata:
99
94
  homepage_uri: https://github.com/dodoas/ruby-saft
100
95
  source_code_uri: https://github.com/dodoas/ruby-saft
101
96
  changelog_uri: https://github.com/dodoas/ruby-saft/CHANGELOG.md
102
- post_install_message:
97
+ post_install_message:
103
98
  rdoc_options: []
104
99
  require_paths:
105
100
  - lib
@@ -114,8 +109,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
114
109
  - !ruby/object:Gem::Version
115
110
  version: '0'
116
111
  requirements: []
117
- rubygems_version: 3.4.10
118
- signing_key:
112
+ rubygems_version: 3.4.6
113
+ signing_key:
119
114
  specification_version: 4
120
115
  summary: SAF-T parser and writer
121
116
  test_files: []
data/.gemspec DELETED
@@ -1,35 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative "lib/saft/version"
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = "saft"
7
- spec.version = SAFT::VERSION
8
- spec.summary = "SAF-T parser and writer"
9
- spec.authors = ["Dodo developer", "Simon Toivo Telhaug"]
10
- spec.email = ["simon.toivo.telhaug@dev.dodo.no"]
11
- spec.homepage = "https://github.com/dodoas/ruby-saft"
12
-
13
- spec.license = "MIT"
14
- spec.required_ruby_version = ">= 2.6.0"
15
- spec.metadata["homepage_uri"] = spec.homepage
16
- spec.metadata["source_code_uri"] = spec.homepage
17
- spec.metadata["changelog_uri"] = "#{spec.homepage}/CHANGELOG.md"
18
-
19
- # Specify which files should be added to the gem when it is released.
20
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
21
- spec.files = Dir.chdir(File.expand_path(__dir__)) do
22
- `git ls-files -z`.split("\x0")
23
- .reject { |f| f == __FILE__ }
24
- .reject { |f| f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git))}) }
25
- .reject { |f| f.start_with? "docs/" }
26
- end
27
-
28
- spec.bindir = "exe"
29
- spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
30
- spec.require_paths = ["lib"]
31
-
32
- spec.add_dependency("zeitwerk", "~> 2.5")
33
- spec.add_dependency("dry-struct", "~> 1.4")
34
- spec.add_dependency("nokogiri", "~> 1.13")
35
- end