bridge_blueprint 0.0.9 → 0.0.10
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/.github/CODEOWNERS +2 -0
- data/.github/dependabot.yml +10 -0
- data/.github/pull_request_template.md +29 -0
- data/.gitignore +1 -0
- data/lib/bridge_blueprint/remote_data.rb +1 -1
- data/lib/bridge_blueprint/version.rb +1 -1
- metadata +7 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a04f17bf884634a59d219729faa77c3f09cf3920b05335aa8803e3c069c8d3be
|
4
|
+
data.tar.gz: 86d1442ce4aafd77b680978dd75242551718a83b3af0a4b90ad829e080d5f506
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 69cb009d255610bbd01b69fe0d5cf9f0219391c12f8ded054153e785325d239d2836569c57b78139772519d678af52bd9bddab1e888dd9244749d3baef0cda70
|
7
|
+
data.tar.gz: 3d481929143b5c5a0319a8c72412f2fda151f3452eb1648bf69ea32c56376d7064a4e7a8a04f9ac33edadb50af11e1af8f69a75ae7e5150fba862f2aaccdb512
|
data/.github/CODEOWNERS
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
#### JIRA
|
2
|
+
-
|
3
|
+
|
4
|
+
#### Changes
|
5
|
+
-
|
6
|
+
|
7
|
+
#### Checklist
|
8
|
+
- - [ ] Feature Flag Required
|
9
|
+
- - [ ] Bug
|
10
|
+
|
11
|
+
#### Test plan
|
12
|
+
|
13
|
+
- - [ ] Walk-through
|
14
|
+
- - [ ] Peer review
|
15
|
+
- - [ ] Inspection
|
16
|
+
- Detailed steps and prerequisites for validating the change:
|
17
|
+
- <!-- Replace this with the bullet points about the steps how to execute the test -->
|
18
|
+
|
19
|
+
#### Risk Analysis - the risk of change is evaluated
|
20
|
+
|
21
|
+
- - [ ] Low - Majority of the changes are low risk which doesn’t require extra testing, only code review by 1 reviewer
|
22
|
+
- - [ ] 1 reviewer
|
23
|
+
- - [ ] Medium - Some portions of changes are medium risk which needs peer testing and review by 2 reviewers
|
24
|
+
- - [ ] 2 reviewers
|
25
|
+
- - [ ] peer testing
|
26
|
+
- - [ ] High - A very few breaking changes are high risk and need very throughout testing and review and also a coordinated release process.
|
27
|
+
- - [ ] 2 reviewers
|
28
|
+
- - [ ] peer testing
|
29
|
+
- - [ ] coordinated release
|
data/.gitignore
CHANGED
@@ -67,7 +67,7 @@ module BridgeBlueprint
|
|
67
67
|
url = remote_url
|
68
68
|
raise 'Missing location url from bridge data dump response' if url.blank?
|
69
69
|
File.open(@file_path, 'w') do |_file|
|
70
|
-
IO.copy_stream(open(url), @file_path)
|
70
|
+
IO.copy_stream(URI.open(url), @file_path)
|
71
71
|
end
|
72
72
|
end
|
73
73
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bridge_blueprint
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jay Shaffer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bridge_api
|
@@ -211,6 +211,9 @@ executables: []
|
|
211
211
|
extensions: []
|
212
212
|
extra_rdoc_files: []
|
213
213
|
files:
|
214
|
+
- ".github/CODEOWNERS"
|
215
|
+
- ".github/dependabot.yml"
|
216
|
+
- ".github/pull_request_template.md"
|
214
217
|
- ".gitignore"
|
215
218
|
- ".rubocop.yml"
|
216
219
|
- ".ruby-version"
|
@@ -255,16 +258,16 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
255
258
|
- !ruby/object:Gem::Version
|
256
259
|
version: '0'
|
257
260
|
requirements: []
|
258
|
-
rubygems_version: 3.
|
261
|
+
rubygems_version: 3.4.10
|
259
262
|
signing_key:
|
260
263
|
specification_version: 4
|
261
264
|
summary: Bridge Blueprint
|
262
265
|
test_files:
|
263
266
|
- spec/bridge_blueprint/data_dump_spec.rb
|
264
267
|
- spec/bridge_blueprint/remote_data_spec.rb
|
265
|
-
- spec/support/fake_bridge.rb
|
266
268
|
- spec/fixtures/bridge_zip/custom_fields.csv
|
267
269
|
- spec/fixtures/bridge_zip/users.csv
|
268
270
|
- spec/fixtures/data_dumps.json
|
269
271
|
- spec/fixtures/data_dumps_pending.json
|
272
|
+
- spec/support/fake_bridge.rb
|
270
273
|
- spec/test_helper.rb
|