time-beat 0.1.0 → 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: 041bbaf6af9c0895f4dc1412ecc7d34d99a8c2d1fc4629bae24d0bfa7b3cb6b7
4
- data.tar.gz: 804390afa2d7e0ac94907adf26a8b564fa499ca59b31477047ad230da2d6096b
3
+ metadata.gz: ada814020bca162df130910df630fbf2db5bdc891f305ccabf58907c57ba01da
4
+ data.tar.gz: '06260525299f71b51c111eb859b75265ce89a1d33d2e181974e933c0bb3fb5a5'
5
5
  SHA512:
6
- metadata.gz: d8fa41e7ee3a2d4dddebb54306d66b5ce3158af0a6bfbe28c9b3b5f1ffa97a749c903494a7c4ed4ccd2eafb5baa52343c1d617e03f9203db687c27cbfce72012
7
- data.tar.gz: 124fd668f15b8448c3dc86d6b95f846cd1a56692cb8610fe44aead66b174ad811f334a4a0c86168e66b773a80874250d6171dd564822e6ef815244316a25fa35
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/LICENSE.txt ADDED
@@ -0,0 +1,7 @@
1
+ Copyright 2026 packrat386
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -33,12 +33,17 @@ 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
38
- [rubygems.org](https://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][].
39
39
 
40
40
  ## Contributing
41
41
 
42
42
  Bug reports and pull requests are welcome at: https://codeberg.org/packrat386/time-beat
43
43
 
44
+ ## License
45
+
46
+ See LICENSE.txt, tl;dr it's MIT.
47
+
44
48
  [Internet Time]: https://gwil.garden/internet-time/
49
+ [rubygems.org]: https://rubygems.org/gems/time-beat
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.0"
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.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aidan Coyle
@@ -44,6 +44,9 @@ executables: []
44
44
  extensions: []
45
45
  extra_rdoc_files: []
46
46
  files:
47
+ - ".woodpecker/release.yaml"
48
+ - ".woodpecker/test.yaml"
49
+ - LICENSE.txt
47
50
  - README.md
48
51
  - Rakefile
49
52
  - lib/time/beat.rb