experian_consumer_view 1.0.0 → 1.2.0

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: a2f9bc4cb3b7210d1974ad2558dbdfcd2ef74bb34b3fd4a493be72e1fae473dd
4
- data.tar.gz: e31c691987efd36d8233ee176de48c6e588e91e5b2f47c273d250eb5c7a384dc
3
+ metadata.gz: 83abfed7f31593422b7df0d09e361cc12c579f969d64ef88121a4700e3ea20c0
4
+ data.tar.gz: 8729eea5712fbafca836b1823c8dfd6a22761219289feea43f8fba798ea9e63c
5
5
  SHA512:
6
- metadata.gz: 03200c8c322988ad29fddaa6cf0a478e7831dcf282724cfa1da129dee8887c67b9b4d6a33dde1d72b9a7909a6c139bf7346eda67cf218d40f996835cfd874e53
7
- data.tar.gz: 68cc86a3af3b91be3d74e845e654a632afc1629345b6f506dc72986af24fc290a94748be2174bf7f028edaa2c05a61b96710b59efb2dc0889c812eab62dac887
6
+ metadata.gz: 82d34f4e905125790d0ca6953d24bd87d265d4569470cf70e035c55ebd9fcf31522d71349e0299794f36535632e1e10f10cdb9c23540eae69287d9a95b07e96c
7
+ data.tar.gz: 6d7475a593371b80b4e38f723b15cc0fd41ea36d1e7e69a19360913fd951d478319db90ba693ad8aa4babfee90b2a30861569cbebc2442302be930f9f81e3344
@@ -0,0 +1,46 @@
1
+ # This workflow checks out code, performs a Codacy security scan
2
+ # and integrates the results with the
3
+ # GitHub Advanced Security code scanning feature. For more information on
4
+ # the Codacy security scan action usage and parameters, see
5
+ # https://github.com/codacy/codacy-analysis-cli-action.
6
+ # For more information on Codacy Analysis CLI in general, see
7
+ # https://github.com/codacy/codacy-analysis-cli.
8
+
9
+ name: Codacy Security Scan
10
+
11
+ on:
12
+ push:
13
+ branches: [ main ]
14
+ pull_request:
15
+ branches: [ main ]
16
+
17
+ jobs:
18
+ codacy-security-scan:
19
+ name: Codacy Security Scan
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ # Checkout the repository to the GitHub Actions runner
23
+ - name: Checkout code
24
+ uses: actions/checkout@v2
25
+
26
+ # Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
27
+ - name: Run Codacy Analysis CLI
28
+ uses: codacy/codacy-analysis-cli-action@1.1.0
29
+ with:
30
+ # Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository
31
+ # You can also omit the token and run the tools that support default configurations
32
+ project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
33
+ verbose: true
34
+ output: results.sarif
35
+ format: sarif
36
+ # Adjust severity of non-security issues
37
+ gh-code-scanning-compat: true
38
+ # Force 0 exit code to allow SARIF file generation
39
+ # This will handover control about PR rejection to the GitHub side
40
+ max-allowed-issues: 2147483647
41
+
42
+ # Upload the SARIF file generated in the previous step
43
+ - name: Upload SARIF results file
44
+ uses: github/codeql-action/upload-sarif@v1
45
+ with:
46
+ sarif_file: results.sarif
data/Gemfile.lock CHANGED
@@ -1,39 +1,39 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- experian_consumer_view (1.0.0)
4
+ experian_consumer_view (1.2.0)
5
5
  activesupport (>= 5.2)
6
- faraday (~> 1.0)
6
+ faraday (~> 2)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activesupport (6.0.3.3)
11
+ activesupport (7.0.6)
12
12
  concurrent-ruby (~> 1.0, >= 1.0.2)
13
- i18n (>= 0.7, < 2)
14
- minitest (~> 5.1)
15
- tzinfo (~> 1.1)
16
- zeitwerk (~> 2.2, >= 2.2.2)
17
- addressable (2.7.0)
13
+ i18n (>= 1.6, < 2)
14
+ minitest (>= 5.1)
15
+ tzinfo (~> 2.0)
16
+ addressable (2.8.0)
18
17
  public_suffix (>= 2.0.2, < 5.0)
19
18
  ast (2.4.1)
20
19
  codecov (0.2.11)
21
20
  json
22
21
  simplecov
23
22
  coderay (1.1.3)
24
- concurrent-ruby (1.1.7)
23
+ concurrent-ruby (1.2.2)
25
24
  crack (0.4.4)
26
25
  diff-lcs (1.4.4)
27
26
  docile (1.3.2)
28
- faraday (1.0.1)
29
- multipart-post (>= 1.2, < 3)
27
+ faraday (2.7.10)
28
+ faraday-net_http (>= 2.0, < 3.1)
29
+ ruby2_keywords (>= 0.0.4)
30
+ faraday-net_http (3.0.2)
30
31
  hashdiff (1.0.1)
31
- i18n (1.8.5)
32
+ i18n (1.14.1)
32
33
  concurrent-ruby (~> 1.0)
33
34
  json (2.3.1)
34
35
  method_source (1.0.0)
35
- minitest (5.14.2)
36
- multipart-post (2.1.1)
36
+ minitest (5.19.0)
37
37
  parallel (1.19.2)
38
38
  parser (2.7.1.4)
39
39
  ast (~> 2.4.1)
@@ -44,7 +44,7 @@ GEM
44
44
  rainbow (3.0.0)
45
45
  rake (13.0.1)
46
46
  regexp_parser (1.8.0)
47
- rexml (3.2.4)
47
+ rexml (3.2.5)
48
48
  rspec (3.9.0)
49
49
  rspec-core (~> 3.9.0)
50
50
  rspec-expectations (~> 3.9.0)
@@ -70,20 +70,19 @@ GEM
70
70
  rubocop-ast (0.4.2)
71
71
  parser (>= 2.7.1.4)
72
72
  ruby-progressbar (1.10.1)
73
+ ruby2_keywords (0.0.5)
73
74
  simplecov (0.19.0)
74
75
  docile (~> 1.1)
75
76
  simplecov-html (~> 0.11)
76
77
  simplecov-html (0.12.2)
77
- thread_safe (0.3.6)
78
- tzinfo (1.2.7)
79
- thread_safe (~> 0.1)
78
+ tzinfo (2.0.6)
79
+ concurrent-ruby (~> 1.0)
80
80
  unicode-display_width (1.7.0)
81
81
  webmock (3.9.1)
82
82
  addressable (>= 2.3.6)
83
83
  crack (>= 0.3.2)
84
84
  hashdiff (>= 0.4.0, < 2.0.0)
85
85
  yard (0.9.25)
86
- zeitwerk (2.4.0)
87
86
 
88
87
  PLATFORMS
89
88
  ruby
@@ -33,7 +33,7 @@ Gem::Specification.new do |spec|
33
33
  spec.require_paths = ['lib']
34
34
 
35
35
  spec.add_dependency 'activesupport', '>= 5.2'
36
- spec.add_dependency 'faraday', '~> 1.0'
36
+ spec.add_dependency 'faraday', '~> 2'
37
37
 
38
38
  spec.add_development_dependency 'bundler', '~> 2.1'
39
39
  spec.add_development_dependency 'codecov', '>= 0.2'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ExperianConsumerView
4
- VERSION = '1.0.0'
4
+ VERSION = '1.2.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: experian_consumer_view
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Sibley
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-12-08 00:00:00.000000000 Z
11
+ date: 2023-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.0'
33
+ version: '2'
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: '1.0'
40
+ version: '2'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -160,6 +160,7 @@ executables: []
160
160
  extensions: []
161
161
  extra_rdoc_files: []
162
162
  files:
163
+ - ".github/workflows/codacy-analysis.yml"
163
164
  - ".gitignore"
164
165
  - ".rspec"
165
166
  - ".rubocop.yml"
@@ -189,7 +190,7 @@ homepage: https://github.com/38degrees/experian_consumer_view
189
190
  licenses:
190
191
  - MIT
191
192
  metadata: {}
192
- post_install_message:
193
+ post_install_message:
193
194
  rdoc_options: []
194
195
  require_paths:
195
196
  - lib
@@ -204,8 +205,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
204
205
  - !ruby/object:Gem::Version
205
206
  version: '0'
206
207
  requirements: []
207
- rubygems_version: 3.0.6
208
- signing_key:
208
+ rubygems_version: 3.1.6
209
+ signing_key:
209
210
  specification_version: 4
210
211
  summary: Ruby wrapper for Experian's ConsumerView API.
211
212
  test_files: []