swiss_bank_validator 1.0.1 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 82b744d03020b86ae5c5733a5aed07c58e8f3b6ad7e23bdbb0598670748cca73
4
- data.tar.gz: 47a550112ad188ff340ad3e8668974cc3b9b5cf7e0de618048a2663fff7be675
3
+ metadata.gz: 07d4f57bbde6b4869b8991b95d9e34ab1db30edf5500ab759e987a33a712348e
4
+ data.tar.gz: 3b3378d1d85aef869f113018e9b8d6e51db14a015dda01b39bc13bb6245b8ce6
5
5
  SHA512:
6
- metadata.gz: 3cc43b2dd9948149aca29ea26a4b1fe12ec20dcc98621808a329a9143ac5b56d1c0c3961f3aecc768b5063fab800b127fd4672c1681f4df18b4fa476197294d2
7
- data.tar.gz: d8484e61611df42e1ae553e988b7ecb2277a9a834b74e723c01aaadf46c411fd02c3dca43f658972faae5003c69888eee0f9bf62be75836a7a9ce5207ba4a534
6
+ metadata.gz: c5eb2bb21711ae78090257a40a31224cba312539a404e674b8e4d3c57b3ee489f1669f97b83a30fa13c179bb36484dc4e57138a5e684a0a739d5e0e395692e2d
7
+ data.tar.gz: 036dadee91355c7735615362ab4fdb3b4fd8934b87ea31d31ea1cb5d7c1b8720167be95b24aa1a08da9bbdd04a3203533019be78145626c5e87659e4902af762
data/.gitignore CHANGED
@@ -6,3 +6,4 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
+ swiss_bank_validator-*.gem
data/Gemfile.lock CHANGED
@@ -1,16 +1,16 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- swiss_bank_validator (1.0.1)
4
+ swiss_bank_validator (1.0.3)
5
5
  activemodel (>= 6.1.7.6)
6
- rexml (~> 3.2.5)
6
+ rexml (~> 3.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activemodel (7.1.2)
12
- activesupport (= 7.1.2)
13
- activesupport (7.1.2)
11
+ activemodel (7.1.3.4)
12
+ activesupport (= 7.1.3.4)
13
+ activesupport (7.1.3.4)
14
14
  base64
15
15
  bigdecimal
16
16
  concurrent-ruby (~> 1.0, >= 1.0.2)
@@ -21,16 +21,15 @@ GEM
21
21
  mutex_m
22
22
  tzinfo (~> 2.0)
23
23
  ast (2.4.1)
24
- base64 (0.1.1)
25
- bigdecimal (3.1.5)
26
- concurrent-ruby (1.2.2)
24
+ base64 (0.2.0)
25
+ bigdecimal (3.1.8)
26
+ concurrent-ruby (1.3.3)
27
27
  connection_pool (2.4.1)
28
28
  diff-lcs (1.4.4)
29
- drb (2.2.0)
30
- ruby2_keywords
31
- i18n (1.14.1)
29
+ drb (2.2.1)
30
+ i18n (1.14.5)
32
31
  concurrent-ruby (~> 1.0)
33
- minitest (5.20.0)
32
+ minitest (5.24.0)
34
33
  mutex_m (0.2.0)
35
34
  parallel (1.20.1)
36
35
  parser (2.7.2.0)
@@ -38,7 +37,8 @@ GEM
38
37
  rainbow (3.0.0)
39
38
  rake (12.3.3)
40
39
  regexp_parser (2.0.0)
41
- rexml (3.2.5)
40
+ rexml (3.2.8)
41
+ strscan (>= 3.0.9)
42
42
  rspec (3.10.0)
43
43
  rspec-core (~> 3.10.0)
44
44
  rspec-expectations (~> 3.10.0)
@@ -64,7 +64,7 @@ GEM
64
64
  rubocop-ast (1.3.0)
65
65
  parser (>= 2.7.1.5)
66
66
  ruby-progressbar (1.10.1)
67
- ruby2_keywords (0.0.5)
67
+ strscan (3.1.0)
68
68
  tzinfo (2.0.6)
69
69
  concurrent-ruby (~> 1.0)
70
70
  unicode-display_width (1.7.0)
data/README.md CHANGED
@@ -60,6 +60,13 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
60
60
 
61
61
  Bug reports and pull requests are welcome on GitHub at https://github.com/qoqa/swiss_bank_validator. 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/qoqa/swiss_bank_validator/blob/master/CODE_OF_CONDUCT.md).
62
62
 
63
+ ## Publishing
64
+
65
+ To publish a new version, you need to:
66
+ - Bump the version in `lib/swiss_bank_validator/version.rb`
67
+ - Create a new version on Github
68
+ - Run `gem build swiss_bank_validator`
69
+ - Run `gem push swiss_bank_validator-<version>.gem`
63
70
 
64
71
  ## License
65
72
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SwissBankValidator
4
- VERSION = '1.0.1'
4
+ VERSION = '1.0.3'
5
5
  end
@@ -28,7 +28,7 @@ Gem::Specification.new do |spec|
28
28
  spec.require_paths = ['lib']
29
29
 
30
30
  spec.add_dependency 'activemodel', '>= 6.1.7.6'
31
- spec.add_dependency 'rexml', '~> 3.2.5'
31
+ spec.add_dependency 'rexml', '~> 3.0'
32
32
 
33
33
  spec.add_development_dependency 'rspec', '~> 3.0'
34
34
  spec.add_development_dependency 'rubocop', '~> 1.5'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: swiss_bank_validator
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - QoQa dev Team
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-01-09 00:00:00.000000000 Z
11
+ date: 2024-07-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 3.2.5
33
+ version: '3.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 3.2.5
40
+ version: '3.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rspec
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -117,7 +117,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
117
117
  - !ruby/object:Gem::Version
118
118
  version: '0'
119
119
  requirements: []
120
- rubygems_version: 3.4.10
120
+ rubygems_version: 3.5.9
121
121
  signing_key:
122
122
  specification_version: 4
123
123
  summary: All you need to validate a Swiss Iban