ibancom 0.0.1 → 0.0.7

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: 4cc758020a3aa89a345dd2ba7b21d6a26530ff14058ad51e310bcf70de1533ec
4
- data.tar.gz: 8a5ae29ab6a566360fd7e2f53716d208e633db8eca8dcfa7f33955d3fdab8c93
3
+ metadata.gz: '09af741fc42baf5ed49ad7d1710af241682882a2bbaf556ca98172c21b738857'
4
+ data.tar.gz: 2e96e8d450bbbaf52ab45b8cce6cf5c89d3c106a9a27f8445705ba19c8a97e73
5
5
  SHA512:
6
- metadata.gz: 84bb5bc23940f65440a0a828629c1d1449988fe76235ffd96a70e88a20b632a754fcc6f14ab383b17466b8ce1689a0bfe65bfafd6714f89ab648864f183c0e41
7
- data.tar.gz: 1f91a905e3fcbe74ddcaa88592280132596413cf367c0fa12b224c232da6683afb8901f17a6c43ab322e61f34b1bf190ac67d0b194f562f1aff3e394cf454615
6
+ metadata.gz: 4098f2cd5b90cecc0e4f14da65e1c1eec5921cd374dc06f6203339d6c3634aa051bc0ba382c71fc8c4862065bac838fba1cc94293b32f123f163caaaae391505
7
+ data.tar.gz: 15e1aca22545a8fafb9f7f65c845514b2b1dd95ad2b21777f56d2f0f8ca0852bb4383f3a95477c37f04812dd5af04899623611ad9fe34785addba7a4a3aef12a
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ibancom (0.0.1)
4
+ ibancom (0.0.7)
5
5
  faraday (>= 0.15)
6
6
 
7
7
  GEM
data/Guardfile ADDED
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ guard :rspec, cmd: "bundle exec rspec" do
4
+ require "guard/rspec/dsl"
5
+ dsl = Guard::RSpec::Dsl.new(self)
6
+
7
+ # Feel free to open issues for suggestions and improvements
8
+
9
+ # RSpec files
10
+ rspec = dsl.rspec
11
+ watch(rspec.spec_helper) { rspec.spec_dir }
12
+ watch(rspec.spec_support) { rspec.spec_dir }
13
+ watch(rspec.spec_files)
14
+
15
+ # Ruby files
16
+ ruby = dsl.ruby
17
+ dsl.watch_spec_files_for(ruby.lib_files)
18
+
19
+ # Turnip features and steps
20
+ watch(%r{^spec/acceptance/(.+)\.feature$})
21
+ watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) do |m|
22
+ Dir[File.join("**/#{m[1]}.feature")][0] || "spec/acceptance"
23
+ end
24
+ end
data/ibancom.gemspec CHANGED
@@ -10,11 +10,11 @@ Gem::Specification.new do |spec|
10
10
 
11
11
  spec.summary = "Ruby client for iban.com APIs"
12
12
  spec.description = "Ruby client for iban.com APIs"
13
- spec.homepage = "https://github.com/devengo/ibancom-ruby"
13
+ spec.homepage = "https://github.com/devengoapp/ibancom-ruby"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.metadata["homepage_uri"] = spec.homepage
17
- spec.metadata["source_code_uri"] = "https://github.com/devengo/ibancom-ruby"
17
+ spec.metadata["source_code_uri"] = "https://github.com/devengoapp/ibancom-ruby"
18
18
  spec.metadata["rubygems_mfa_required"] = "true"
19
19
 
20
20
  # Specify which files should be added to the gem when it is released.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Ibancom
4
- VERSION = "0.0.1"
4
+ VERSION = "0.0.7"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ibancom
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aitor García Rey
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-25 00:00:00.000000000 Z
11
+ date: 2022-08-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -178,6 +178,7 @@ files:
178
178
  - CODE_OF_CONDUCT.md
179
179
  - Gemfile
180
180
  - Gemfile.lock
181
+ - Guardfile
181
182
  - LICENSE.txt
182
183
  - README.md
183
184
  - Rakefile
@@ -199,12 +200,12 @@ files:
199
200
  - lib/ibancom/resources/iban/validation.rb
200
201
  - lib/ibancom/version.rb
201
202
  - sig/ibancom.rbs
202
- homepage: https://github.com/devengo/ibancom-ruby
203
+ homepage: https://github.com/devengoapp/ibancom-ruby
203
204
  licenses:
204
205
  - MIT
205
206
  metadata:
206
- homepage_uri: https://github.com/devengo/ibancom-ruby
207
- source_code_uri: https://github.com/devengo/ibancom-ruby
207
+ homepage_uri: https://github.com/devengoapp/ibancom-ruby
208
+ source_code_uri: https://github.com/devengoapp/ibancom-ruby
208
209
  rubygems_mfa_required: 'true'
209
210
  post_install_message:
210
211
  rdoc_options: []