ruby-experian 0.0.2 → 0.0.4

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: 2e7eafee0b1d8a3a892db39e7f52cdddd7dddcc80d1f3169eab4f283fcf50e93
4
- data.tar.gz: 9c4bc167d2764bb7b0291e597c24f49d54a27ae05baa769c2f42e266806b3fb0
3
+ metadata.gz: 4dd77d03192044c638a48d9d516e7d61ab54f731378414487a538ef37010b3b6
4
+ data.tar.gz: 50d305fef65041c0a01c06da584de9e4f48b77cea65ba4e83aceb8e096c1bbfe
5
5
  SHA512:
6
- metadata.gz: 7e0943fa7afde27170c06263a598f5782cb79a2422098daef2b5ab0c2aff59aff28bd981a1e8b90bbc553b4ecbd8a853730199041f56a7c9a2c1a2287463be8c
7
- data.tar.gz: 616c289f7dc457b5a18db513e4ad2a74b8d41289df454e32d80833c0cca840c7d5a8db3284371552a65a4faafa4fa35dbc8cb46d265ee30aaff2b9d67dc9506f
6
+ metadata.gz: 864a08d90d6b3f35d5a8229092cee21cced8fd77bc2af0a9d92bf32c9f35e8fb78a9f8e2b924b4215f8456d842c91ce2d4386538d7f51e6b234df0ff01010129
7
+ data.tar.gz: f7ff905cc8c52d026822ae9807b4f010f29f5a9b1785a6daaa6c657f4175e1d9c46e42638f0f3b96148f2eb3b377dc4c7cfc65d4b63e56665d953bfea90bb8c3
data/CONTRIBUTING.md CHANGED
@@ -1,3 +1,3 @@
1
1
  ## Contributing
2
2
 
3
- Bug reports and pull requests are welcome on GitHub at https://github.com/moraki/ruby-experian. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/alexrudall/ruby-experian/blob/main/CODE_OF_CONDUCT.md).
3
+ Bug reports and pull requests are welcome on GitHub at https://github.com/moraki-finance/ruby-experian. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/moraki-finance/ruby-experian/blob/main/CODE_OF_CONDUCT.md).
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ruby-experian (0.0.2)
4
+ ruby-experian (0.0.4)
5
5
  faraday (>= 1)
6
6
  faraday_middleware (>= 1)
7
7
  multi_xml (>= 0.6.0)
data/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  [![Tests](https://github.com/moraki-finance/ruby-experian/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/moraki-finance/ruby-experian/actions/workflows/tests.yml)
8
8
 
9
- Use the [Experian Axesor Informe 360](<https://axesor.es/blog/openai-api/](https://www.axesor.es/informacion-empresas/informes/informe-axesor-360.aspx)https://www.axesor.es/informacion-empresas/informes/informe-axesor-360.aspx>) API with Ruby! 🩵
9
+ Use the [Experian Axesor Informe 360](https://www.axesor.es/informacion-empresas/informes/informe-axesor-360.aspx) API with Ruby! 🩵
10
10
 
11
11
  Allows you to get a detailed credit risk report for Spanish companies.
12
12
 
@@ -1,3 +1,3 @@
1
1
  module Experian
2
- VERSION = "0.0.2".freeze
2
+ VERSION = "0.0.4".freeze
3
3
  end
@@ -3,15 +3,15 @@ require_relative "lib/experian/version"
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "ruby-experian"
5
5
  s.version = Experian::VERSION
6
- s.summary = "Experian connector"
7
- s.description = "A simple hello world gem"
6
+ s.summary = "Experian Axesor client"
7
+ s.description = "Experian Axesor (https://www.axesor.es/informacion-empresas/informes/informe-axesor-360.aspx) client for ruby"
8
8
  s.authors = ["Martin Mochetti"]
9
9
  s.email = "martin@moraki.co"
10
10
  s.files = Dir.chdir(File.expand_path(__dir__)) do
11
11
  `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
12
12
  end
13
13
  s.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
14
- s.homepage = "https://github.com/moraki/ruby-experian"
14
+ s.homepage = "https://github.com/moraki-finance/ruby-experian"
15
15
  s.license = "MIT"
16
16
  s.bindir = "bin"
17
17
  s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-experian
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martin Mochetti
@@ -80,7 +80,8 @@ dependencies:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: '3.2'
83
- description: A simple hello world gem
83
+ description: Experian Axesor (https://www.axesor.es/informacion-empresas/informes/informe-axesor-360.aspx)
84
+ client for ruby
84
85
  email: martin@moraki.co
85
86
  executables:
86
87
  - console
@@ -110,7 +111,7 @@ files:
110
111
  - lib/experian/version.rb
111
112
  - lib/ruby/experian.rb
112
113
  - ruby-experian.gemspec
113
- homepage: https://github.com/moraki/ruby-experian
114
+ homepage: https://github.com/moraki-finance/ruby-experian
114
115
  licenses:
115
116
  - MIT
116
117
  metadata: {}
@@ -132,5 +133,5 @@ requirements: []
132
133
  rubygems_version: 3.2.3
133
134
  signing_key:
134
135
  specification_version: 4
135
- summary: Experian connector
136
+ summary: Experian Axesor client
136
137
  test_files: []