forever_version 0.0.1 → 0.0.4
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/Gemfile.lock +1 -1
- data/lib/forever_version/version.rb +1 -1
- metadata +1 -2
- data/README.md +0 -63
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4c9a06c2400cf6837ad24c4f2cbdaffdea5d677abfe5f8b7a658c4f13382d2d2
|
|
4
|
+
data.tar.gz: 2698cf9e28b6442f286e93ce09ba435f843e7e99fa0e6ee6613f1e67d1bdb4cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b736a75deab70925eb68a8200902ae3ea9259612c17e5823c59de50bce42096093716ca82f589c3a6d7af6f59211888fc94f3b52c0913ece8ae6d5f53d80537c
|
|
7
|
+
data.tar.gz: fc023c0f0542205b49b10e28944b0804eece3bd08a39f37ae799b3fb3decbdfdbc8e498afd22749ae835b4239d16838d2f1af7aee70c158962aa35022b419b34
|
data/Gemfile.lock
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: forever_version
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- kinduff
|
|
@@ -20,7 +20,6 @@ files:
|
|
|
20
20
|
- Gemfile
|
|
21
21
|
- Gemfile.lock
|
|
22
22
|
- LICENSE.txt
|
|
23
|
-
- README.md
|
|
24
23
|
- Rakefile
|
|
25
24
|
- forever_version.gemspec
|
|
26
25
|
- lib/forever_version.rb
|
data/README.md
DELETED
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
# ForeverVersion
|
|
2
|
-
|
|
3
|
-
A minimal Ruby gem that demonstrates automated semantic versioning through GitHub Actions.
|
|
4
|
-
|
|
5
|
-
## What is this?
|
|
6
|
-
|
|
7
|
-
This gem intentionally provides no functionality. It serves as a demonstration of automated semantic versioning using GitHub Actions with randomized release schedules:
|
|
8
|
-
|
|
9
|
-
- **Major versions**: Released weekly (with randomization)
|
|
10
|
-
- **Minor versions**: Released approximately daily (with randomization)
|
|
11
|
-
- **Patch versions**: Released approximately every 12 hours (with randomization)
|
|
12
|
-
|
|
13
|
-
The randomization ensures a more organic release pattern with varying frequencies of different version types.
|
|
14
|
-
|
|
15
|
-
## Installation
|
|
16
|
-
|
|
17
|
-
Add this line to your application's Gemfile:
|
|
18
|
-
|
|
19
|
-
```ruby
|
|
20
|
-
gem 'forever_version'
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
And then execute:
|
|
24
|
-
|
|
25
|
-
$ bundle install
|
|
26
|
-
|
|
27
|
-
Or install it yourself as:
|
|
28
|
-
|
|
29
|
-
$ gem install forever_version
|
|
30
|
-
|
|
31
|
-
## Usage
|
|
32
|
-
|
|
33
|
-
This gem doesn't provide any functionality - it's purely for demonstration purposes:
|
|
34
|
-
|
|
35
|
-
```ruby
|
|
36
|
-
require 'forever_version'
|
|
37
|
-
|
|
38
|
-
ForeverVersion::VERSION
|
|
39
|
-
# => "1.2.3"
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
## Automated Versioning
|
|
43
|
-
|
|
44
|
-
This gem uses GitHub Actions to automatically:
|
|
45
|
-
|
|
46
|
-
1. Create new releases with semantic versioning on randomized schedules
|
|
47
|
-
2. Publish releases to RubyGems automatically
|
|
48
|
-
|
|
49
|
-
The version numbers follow semantic versioning principles and are incremented automatically on scheduled intervals.
|
|
50
|
-
|
|
51
|
-
## Development
|
|
52
|
-
|
|
53
|
-
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt.
|
|
54
|
-
|
|
55
|
-
To install this gem onto your local machine, run `bundle exec rake install`. Manual releases are not recommended as the gem uses automated versioning.
|
|
56
|
-
|
|
57
|
-
## Contributing
|
|
58
|
-
|
|
59
|
-
This gem serves as a demonstration of automated versioning. Contributions to improve the automation workflows or documentation are welcome via GitHub issues and pull requests.
|
|
60
|
-
|
|
61
|
-
## License
|
|
62
|
-
|
|
63
|
-
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|