tapsoob 0.7.3 → 0.7.6
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/.gitlab-ci.yml +65 -0
- data/lib/tapsoob/version.rb +1 -1
- metadata +8 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '025843acb6117da8a287d8045d29ee44acd503294df67d994df3340922d64202'
|
|
4
|
+
data.tar.gz: 3633cee55115b8c561f858e430d58296ac98fd549ceaba7027d71cd1b6fcb9fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a9e68a0faf27687651a60df90e7eeccdc4235df1a4854ac1d8a2d01acdc3270a6fed3aa296c5c07cc3f292dc5754a4619cf2299f44b6f4b708a2941f2e7548c
|
|
7
|
+
data.tar.gz: f7824a83d062c93bd339ae92c47fa74f666cb53e2e6bd77791d35a24d73438f7e48bdc73813030b2cf3dbc95fe0aafd0e26e7a5f12c57d4321cff1c4e08ed7f9
|
data/.gitlab-ci.yml
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
stages:
|
|
2
|
+
- build
|
|
3
|
+
- publish
|
|
4
|
+
|
|
5
|
+
build-jar:
|
|
6
|
+
stage: build
|
|
7
|
+
image: jruby:9.4.14.0
|
|
8
|
+
tags:
|
|
9
|
+
- linux
|
|
10
|
+
- docker
|
|
11
|
+
before_script:
|
|
12
|
+
- apt-get update && apt-get install -y git ca-certificates
|
|
13
|
+
- update-ca-certificates
|
|
14
|
+
- gem install rake
|
|
15
|
+
- mkdir -p config dist
|
|
16
|
+
- echo "$WARBLE_CONFIG" > config/warble.rb
|
|
17
|
+
script:
|
|
18
|
+
- bundle install
|
|
19
|
+
- bundle exec rake jar
|
|
20
|
+
- VERSION=${CI_COMMIT_TAG:-$CI_COMMIT_SHORT_SHA}
|
|
21
|
+
- 'curl --fail --verbose --header "JOB-TOKEN: $CI_JOB_TOKEN" --upload-file dist/tapsoob.jar "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/tapsoob/${VERSION}/tapsoob-${VERSION}.jar"'
|
|
22
|
+
|
|
23
|
+
publish-gem:
|
|
24
|
+
stage: publish
|
|
25
|
+
image: ruby:3.3
|
|
26
|
+
tags:
|
|
27
|
+
- linux
|
|
28
|
+
- docker
|
|
29
|
+
before_script:
|
|
30
|
+
- apt-get update && apt-get install -y git ca-certificates
|
|
31
|
+
- update-ca-certificates
|
|
32
|
+
- mkdir -p ~/.gem
|
|
33
|
+
- |
|
|
34
|
+
cat > ~/.gem/credentials << EOF
|
|
35
|
+
---
|
|
36
|
+
:rubygems_api_key: ${RUBYGEMS_API_KEY}
|
|
37
|
+
EOF
|
|
38
|
+
- chmod 600 ~/.gem/credentials
|
|
39
|
+
script:
|
|
40
|
+
- gem build tapsoob.gemspec
|
|
41
|
+
- gem push tapsoob-*.gem
|
|
42
|
+
rules:
|
|
43
|
+
- if: $CI_COMMIT_TAG
|
|
44
|
+
|
|
45
|
+
publish-gem-jruby:
|
|
46
|
+
stage: publish
|
|
47
|
+
image: jruby:9.4.14.0
|
|
48
|
+
tags:
|
|
49
|
+
- linux
|
|
50
|
+
- docker
|
|
51
|
+
before_script:
|
|
52
|
+
- apt-get update && apt-get install -y git ca-certificates
|
|
53
|
+
- update-ca-certificates
|
|
54
|
+
- mkdir -p ~/.gem
|
|
55
|
+
- |
|
|
56
|
+
cat > ~/.gem/credentials << EOF
|
|
57
|
+
---
|
|
58
|
+
:rubygems_api_key: ${RUBYGEMS_API_KEY}
|
|
59
|
+
EOF
|
|
60
|
+
- chmod 600 ~/.gem/credentials
|
|
61
|
+
script:
|
|
62
|
+
- gem build tapsoob.gemspec
|
|
63
|
+
- gem push tapsoob-*.gem
|
|
64
|
+
rules:
|
|
65
|
+
- if: $CI_COMMIT_TAG
|
data/lib/tapsoob/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tapsoob
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Félix Bellanger
|
|
8
8
|
- Michael Chrisco
|
|
9
|
+
autorequire:
|
|
9
10
|
bindir: bin
|
|
10
11
|
cert_chain: []
|
|
11
|
-
date:
|
|
12
|
+
date: 2025-12-07 00:00:00.000000000 Z
|
|
12
13
|
dependencies:
|
|
13
14
|
- !ruby/object:Gem::Dependency
|
|
14
15
|
name: sequel
|
|
@@ -89,6 +90,7 @@ extensions: []
|
|
|
89
90
|
extra_rdoc_files: []
|
|
90
91
|
files:
|
|
91
92
|
- ".gitignore"
|
|
93
|
+
- ".gitlab-ci.yml"
|
|
92
94
|
- ".rspec"
|
|
93
95
|
- Gemfile
|
|
94
96
|
- README.md
|
|
@@ -131,6 +133,7 @@ homepage: https://github.com/Keeguon/tapsoob
|
|
|
131
133
|
licenses:
|
|
132
134
|
- MIT
|
|
133
135
|
metadata: {}
|
|
136
|
+
post_install_message:
|
|
134
137
|
rdoc_options: []
|
|
135
138
|
require_paths:
|
|
136
139
|
- lib
|
|
@@ -145,10 +148,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
145
148
|
- !ruby/object:Gem::Version
|
|
146
149
|
version: '0'
|
|
147
150
|
requirements: []
|
|
148
|
-
rubygems_version: 3.
|
|
151
|
+
rubygems_version: 3.5.22
|
|
152
|
+
signing_key:
|
|
149
153
|
specification_version: 4
|
|
150
154
|
summary: Simple tool to import/export databases.
|
|
151
|
-
test_files:
|
|
152
|
-
- spec/lib/tapsoob/chunksize_spec.rb
|
|
153
|
-
- spec/lib/tapsoob/version_spec.rb
|
|
154
|
-
- spec/spec_helper.rb
|
|
155
|
+
test_files: []
|