label_weaver 0.0.7 → 0.0.8
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8f84d950482825eab6d7306ec2ea04c3434ab0c79cb1ae0b7a836b6ff6fe4208
|
|
4
|
+
data.tar.gz: 56c21daba6bfd11e1d774efc734ddb03c8867fece5a63181934aef561823cf40
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b2fb78c636d8a63f7617dffe8511b422906b63109a97074cf6f27002b94fc22c49ae8a3b8ee102e72cd0ce782e22bbab3b2c33590919aad1bd125b1c9e2069ac
|
|
7
|
+
data.tar.gz: 71e54ccbd1de7f76252287427741a1bcbe1af97bfad6904b21c130d226534ec63d86eca5916dbfe18b62fdb1004c64803fd1273feb7e8a64b1605924c0e2e756
|
data/label_weaver.gemspec
CHANGED
|
@@ -39,7 +39,6 @@ module LabelWeaver
|
|
|
39
39
|
else
|
|
40
40
|
logger.error "Unknown format: #{context.input[:format]}"
|
|
41
41
|
end
|
|
42
|
-
logger.info context.input.inspect
|
|
43
42
|
end
|
|
44
43
|
|
|
45
44
|
private
|
|
@@ -57,9 +56,10 @@ module LabelWeaver
|
|
|
57
56
|
def repo
|
|
58
57
|
@repo ||= LabelWeaver::TempRepo.new(
|
|
59
58
|
context.repository_dir,
|
|
60
|
-
repository_url: configuration.
|
|
61
|
-
branch: configuration.
|
|
62
|
-
|
|
59
|
+
repository_url: configuration.git[:repository],
|
|
60
|
+
branch: configuration.git[:branch],
|
|
61
|
+
excluded_upstream_files: configuration.excluded_upstream_files,
|
|
62
|
+
forced_upstream_files: configuration.forced_upstream_files,
|
|
63
63
|
logger: logger
|
|
64
64
|
)
|
|
65
65
|
end
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
git:
|
|
2
2
|
repository: "git@gitlab.com:lopo-tech/label_weaver.git"
|
|
3
3
|
branch: "main"
|
|
4
|
+
|
|
4
5
|
# Files to exclude from the upstream repository, they will not be copied over to the whitelabel project.
|
|
5
6
|
# Shell filename globbing rules apply, not regular expressions
|
|
6
|
-
excluded_upstream_files:
|
|
7
|
-
- .git/**
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
7
|
+
#excluded_upstream_files:
|
|
8
|
+
# - .git/**
|
|
9
|
+
|
|
10
|
+
#hooks:
|
|
11
|
+
# develop:
|
|
12
|
+
# after_start:
|
|
13
|
+
# - echo "Development Mode Started"
|
|
12
14
|
|
|
13
15
|
# Define files from the base and whitelabel projects that should be merged into
|
|
14
16
|
# a new or existing file.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: label_weaver
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stefan Exner
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-11-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cogger
|