release_image 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/Gemfile.lock +1 -1
- data/README.md +5 -7
- data/lib/release_image/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 27c51fdd61727da0537fb7d6f22d28c3f6ebb0b0615191339b91a89cbab38fa7
|
4
|
+
data.tar.gz: 69563cd61288abb6e9eb00b68523c878ab38bfdd0df506aa0b05effdb8291c5d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 01c7a1f96d1c0689a17196d41aa772f90f67301fd769bb31334db291ac0e01b415c133b563ccaf9d74d650e5ed498ff0bffeb0c4be649895721c03babcb3a392
|
7
|
+
data.tar.gz: 9cfd5077ea69d8e95eb66696ac26c3b63308b09719ff19dbd8945da913823a896d037d915056ccd821a3c5ad2fd305491f6df48512f5e09c4133991fb7d82488
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -15,11 +15,11 @@ Enjoy creating eye-catching and unique cover images for your release posts with
|
|
15
15
|
|
16
16
|
## Installation
|
17
17
|
|
18
|
-
|
18
|
+
Add this line to your application's Gemfile:
|
19
19
|
|
20
|
-
|
21
|
-
|
22
|
-
|
20
|
+
```ruby
|
21
|
+
gem "release_image", require: false, group: :development
|
22
|
+
```
|
23
23
|
|
24
24
|
## Usage
|
25
25
|
|
@@ -86,14 +86,12 @@ ReleaseImage.generate(version: version, date: date, skip_download: true)
|
|
86
86
|
|
87
87
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `bundle exec rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
88
88
|
|
89
|
-
To install this gem onto your local machine, run `bundle exec rake install
|
90
|
-
|
89
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
91
90
|
|
92
91
|
## Contributing
|
93
92
|
|
94
93
|
Bug reports and pull requests are welcome on GitHub at https://github.com/EffectivaStudio/release_image. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/EffectivaStudio/release_image/blob/main/CODE_OF_CONDUCT.md).
|
95
94
|
|
96
|
-
|
97
95
|
## License
|
98
96
|
|
99
97
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|