time-beat 0.1.1 → 1.0.0
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/.woodpecker/release.yaml +17 -0
- data/.woodpecker/test.yaml +11 -0
- data/README.md +3 -2
- data/Rakefile +2 -0
- data/lib/time/beat/version.rb +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ada814020bca162df130910df630fbf2db5bdc891f305ccabf58907c57ba01da
|
|
4
|
+
data.tar.gz: '06260525299f71b51c111eb859b75265ce89a1d33d2e181974e933c0bb3fb5a5'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7fefdb1c345f588dc3e6cbee067df9d47e973c120ff77538141db535dee4aa4d4457a1b09795d308a94f16d6e1150bae5423fb8bce98f2e8a1af7e1e93366bf9
|
|
7
|
+
data.tar.gz: e0a72548679838e8a782542442b9e7a46b980d1aa80db77585c1ac15def31e6adf7b32f7e117724a26755ed164279d1454adcf217d95664e2d6d0f8ad0702f3f
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
when:
|
|
2
|
+
- event: ["tag", "manual"]
|
|
3
|
+
|
|
4
|
+
steps:
|
|
5
|
+
- name: "release"
|
|
6
|
+
image: "ruby:4.0-alpine"
|
|
7
|
+
environment:
|
|
8
|
+
GEM_HOST_API_KEY:
|
|
9
|
+
from_secret: woodpecker_pat_rubygems_org
|
|
10
|
+
RUBYGEMS_HOST: https://rubygems.org
|
|
11
|
+
commands:
|
|
12
|
+
- "apk add git build-base yaml yaml-dev"
|
|
13
|
+
- "bundle install"
|
|
14
|
+
- "bundle exec rake"
|
|
15
|
+
- "bundle exec rake build"
|
|
16
|
+
- "bundle exec rake release:guard_clean"
|
|
17
|
+
- "bundle exec rake release:rubygem_push"
|
data/README.md
CHANGED
|
@@ -33,8 +33,9 @@ interactive prompt that will allow you to experiment.
|
|
|
33
33
|
|
|
34
34
|
To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
35
35
|
release a new version, update the version number in `version.rb`, and then run
|
|
36
|
-
`bundle exec rake
|
|
37
|
-
git commits and the created tag
|
|
36
|
+
`bundle exec rake cut_release`, which will create a git tag for the versionand
|
|
37
|
+
push git commits and the created tag to codeberg. The CI system will acutally
|
|
38
|
+
push the `.gem` to [rubygems.org][].
|
|
38
39
|
|
|
39
40
|
## Contributing
|
|
40
41
|
|
data/Rakefile
CHANGED
data/lib/time/beat/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: time-beat
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Aidan Coyle
|
|
@@ -44,6 +44,8 @@ executables: []
|
|
|
44
44
|
extensions: []
|
|
45
45
|
extra_rdoc_files: []
|
|
46
46
|
files:
|
|
47
|
+
- ".woodpecker/release.yaml"
|
|
48
|
+
- ".woodpecker/test.yaml"
|
|
47
49
|
- LICENSE.txt
|
|
48
50
|
- README.md
|
|
49
51
|
- Rakefile
|