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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 27b7ae2e2ab8ee231359b3cfdf67213a67553e29ce5f32898062b9d3ce49a944
4
- data.tar.gz: 7cb4f239a680d2b374834fb5da412c61326e53157596c13a979b687d3f4c2aa6
3
+ metadata.gz: ada814020bca162df130910df630fbf2db5bdc891f305ccabf58907c57ba01da
4
+ data.tar.gz: '06260525299f71b51c111eb859b75265ce89a1d33d2e181974e933c0bb3fb5a5'
5
5
  SHA512:
6
- metadata.gz: 4515568a8dcb59e861472e942ba2986ce0e706cb1005e9c01594de3a81bad4f11a3c63846f70172cd58ae1b68acb27d774576c10c09b6687c0a0b0627645c482
7
- data.tar.gz: c21d23c6df6c3723b23e623f57f582166e184b7e48a4f4a233d51b6828a579d1abbbfc48d880728e1ed83e324abfbff943f5a40d652e2fbeb4a39da3321493c0
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"
@@ -0,0 +1,11 @@
1
+ when:
2
+ - event: ["push", "pull_request"]
3
+
4
+ steps:
5
+ - name: "test"
6
+ image: "ruby:4.0-alpine"
7
+ commands:
8
+ - "apk add git build-base yaml yaml-dev"
9
+ - "bundle install"
10
+ - "bundle exec rake"
11
+ - "bundle exec rake build"
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 release`, which will create a git tag for the version, push
37
- git commits and the created tag, and push the `.gem` file to [rubygems.org][].
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
@@ -7,4 +7,6 @@ Minitest::TestTask.create
7
7
 
8
8
  require "standard/rake"
9
9
 
10
+ task cut_release: %i[build release:guard_clean release:source_control_push]
11
+
10
12
  task default: %i[test standard]
@@ -2,6 +2,6 @@
2
2
 
3
3
  class Time
4
4
  class Beat
5
- VERSION = "0.1.1"
5
+ VERSION = "1.0.0"
6
6
  end
7
7
  end
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.1.1
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