release_image 0.3.1 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 876de90416bb7a1f25b934f5dcfdc7e6a9b111742d04540bb0c1f001d6c71671
4
- data.tar.gz: 515ceb09324e5984b6e9f29b4716418f3e7bc3d7ac6b11ba9ae1e7096c26bcf6
3
+ metadata.gz: cbe29a7049aaaccf9b950feb6d583a176e1f9c673df173e6703361f98e5d266f
4
+ data.tar.gz: 20ff6818569476998e98cfffd67743b0c453cdc38bfb96e5613b2af03a038b46
5
5
  SHA512:
6
- metadata.gz: cc2c9b4d29e5fc7d0bb84c0adff43ab064d361f8ae9d81adf96c5dc91da6fdda8ff1b107695cf952419cba27d638a208dbbf74c299b44f6fb3ff6da10bc4811d
7
- data.tar.gz: 61ea6e716099efae97a2119b971dc53189df658bae349739730ff2614599c6f1f0d5203f6d5cd9ccfc0a7e00957cc8067080de68522c335e6e73d689548036d5
6
+ metadata.gz: 528566f1af1bb78521c64b6300d2e98eaa87576d8eb896899aa07f3b6c2c0bcac8235d6f4062d67ca4a7e2fa79106012305c1c72e54b8f33cc145b0e072f89c0
7
+ data.tar.gz: ae9aadd41154a04141c94dbbb728f513b6baa87e7834a8b47b8c98c8d70cd5d3b05a21bc0d1eb3f037b113720e022ee459ee6eac1f8ba378277b2c1577ccbfa1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.3.3] - 2024-03-22
4
+
5
+ - Update changelog URI in gemspec
6
+
7
+ ## [0.3.2] - 2024-03-22
8
+
9
+ - Update readme
10
+
11
+ ## [0.3.1] - 2024-03-22
12
+
13
+ - Moving to RubyGems
14
+
3
15
  ## [0.3.0] - 2023-11-21
4
16
 
5
17
  - Add option to use previously downloaded images
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- release_image (0.3.1)
4
+ release_image (0.3.3)
5
5
  down
6
6
  mini_magick
7
7
 
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  ![release_1_0_0](https://github.com/EffectivaStudio/release_image/assets/66572/e73724ee-3da7-4769-adcf-cdf26816d9d0)
4
4
 
5
+ [![Gem Version](https://badge.fury.io/rb/release_image.svg)](https://badge.fury.io/rb/release_image)
6
+
5
7
  The Release Image gem is a powerful tool designed specifically for creating captivating cover images for release posts or notices in your application. It streamlines the process of generating visually appealing images by seamlessly incorporating your app's logo, version, and release date. Additionally, it provides the ability to fetch random images from the extensive collection available on the [Unsplash](https://unsplash.com/) service.
6
8
 
7
9
  ## Features
@@ -15,11 +17,11 @@ Enjoy creating eye-catching and unique cover images for your release posts with
15
17
 
16
18
  ## Installation
17
19
 
18
- Install the gem and add it to the application's Gemfile by executing:
20
+ Add this line to your application's Gemfile:
19
21
 
20
- source "https://rubygems.pkg.github.com/effectivastudio" do
21
- gem "release_image", require: false
22
- end
22
+ ```ruby
23
+ gem "release_image", require: false, group: :development
24
+ ```
23
25
 
24
26
  ## Usage
25
27
 
@@ -86,14 +88,12 @@ ReleaseImage.generate(version: version, date: date, skip_download: true)
86
88
 
87
89
  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
90
 
89
- To install this gem onto your local machine, run `bundle exec rake install:local`. 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.pkg.github.com](https://rubygems.pkg.github.com/effectivastudio).
90
-
91
+ 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
92
 
92
93
  ## Contributing
93
94
 
94
95
  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
96
 
96
-
97
97
  ## License
98
98
 
99
99
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ReleaseImage
4
- VERSION = "0.3.1"
4
+ VERSION = "0.3.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: release_image
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Effectiva studio
@@ -61,7 +61,7 @@ licenses:
61
61
  metadata:
62
62
  homepage_uri: https://github.com/EffectivaStudio/release_image
63
63
  source_code_uri: https://github.com/EffectivaStudio/release_image
64
- changelog_uri: https://github.com/EffectivaStudio/release_image/blob/main/CHANGELOG
64
+ changelog_uri: https://github.com/EffectivaStudio/release_image/blob/main/CHANGELOG.md
65
65
  post_install_message:
66
66
  rdoc_options: []
67
67
  require_paths: