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 +4 -4
- data/Gemfile.lock +1 -1
- data/Guardfile +24 -0
- data/ibancom.gemspec +2 -2
- data/lib/ibancom/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '09af741fc42baf5ed49ad7d1710af241682882a2bbaf556ca98172c21b738857'
|
4
|
+
data.tar.gz: 2e96e8d450bbbaf52ab45b8cce6cf5c89d3c106a9a27f8445705ba19c8a97e73
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4098f2cd5b90cecc0e4f14da65e1c1eec5921cd374dc06f6203339d6c3634aa051bc0ba382c71fc8c4862065bac838fba1cc94293b32f123f163caaaae391505
|
7
|
+
data.tar.gz: 15e1aca22545a8fafb9f7f65c845514b2b1dd95ad2b21777f56d2f0f8ca0852bb4383f3a95477c37f04812dd5af04899623611ad9fe34785addba7a4a3aef12a
|
data/Gemfile.lock
CHANGED
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/
|
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/
|
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.
|
data/lib/ibancom/version.rb
CHANGED
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.
|
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-
|
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/
|
203
|
+
homepage: https://github.com/devengoapp/ibancom-ruby
|
203
204
|
licenses:
|
204
205
|
- MIT
|
205
206
|
metadata:
|
206
|
-
homepage_uri: https://github.com/
|
207
|
-
source_code_uri: https://github.com/
|
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: []
|