eco-rake 0.1.3 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2267520b8e3a96d2a5f0c6b44aafb129f7d75592b090991d9738f0824f4a397e
4
- data.tar.gz: 75d8139d6dbe8be2a853b083cab99d98f6145b1b5e3ad73620b4569579ae7952
3
+ metadata.gz: 074016c49dcad11008927bbd2463b93b5f8f8b9fd78735c74ec5b1d67f8091a3
4
+ data.tar.gz: 42793537149d86f4c5761cc74370a47c7fa1943259ec32426d26db6feb20d64f
5
5
  SHA512:
6
- metadata.gz: a5724ff6fd5ab51f0851783bd04850b972ca5a01f58674e4c02adef49b5c17d30b379d5644a4a2d66925ffa028094c28c727a651b4e22271f295c382c137ed8c
7
- data.tar.gz: edd52995662c0346519bdc764a7241c55213349c9b5d32355333320ea4812496587090a88a041927cf715c082c041e717ec33ff170eb0f51e46b48fef08323da
6
+ metadata.gz: f4f737b509802574d297f50494f2998c2babfb496d23a5b1420e3f00342f8ea49439f59b74e8c3644b048e99a871b3e93b225a1cedeb9baf5982e49cecac5854
7
+ data.tar.gz: 7b6240f0d0e6206051767b957d3b83fbe9673e96aed98e07584508fda034fde4849cc8a2df8c6d1e56e75feaf90a5c13252dbaf32d24f3540f60e2e933aa40c4
data/CHANGELOG.md CHANGED
@@ -1,14 +1,14 @@
1
1
  # Change Log
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
- ## [0.1.3] - 2023-06-xx
4
+ ## [0.1.4] - 2023-07-xx
5
5
 
6
6
  ### Added
7
7
  ### Fixed
8
8
 
9
9
  ### Changed
10
10
 
11
- ## [0.1.4] - 2023-06-xx
11
+ ## [0.1.4] - 2023-07-23
12
12
 
13
13
  ### Fixed
14
14
  - Type in `EcoRake::Utils::Mailing#email`
@@ -7,8 +7,8 @@ class EcoRake
7
7
  end
8
8
 
9
9
  def email(subject:, body:, to:, enviro: nil)
10
- has_enviro = subject && subject.downcase.include?(enviro.downcase)
11
- subject = "#{enviro.upcase} - #{subject}" unless !enviro && has_enviro
10
+ has_enviro = enviro && subject && subject.downcase.include?(enviro.downcase)
11
+ subject = "#{enviro.upcase} - #{subject}" if enviro && !has_enviro
12
12
  mailer.mail(**{
13
13
  to: to,
14
14
  subject: subject,
@@ -1,5 +1,5 @@
1
1
  require 'rake-commander'
2
2
 
3
3
  class EcoRake < RakeCommander
4
- VERSION = '0.1.3'.freeze
4
+ VERSION = '0.1.4'.freeze
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eco-rake
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oscar Segura Samper