emailfuse 0.4.0 → 0.5.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: 95e460dac394b050198748d8bcf17d0a4fbde9cc156b0cb97673333643ecd2fd
4
- data.tar.gz: 1ceb84e8a454d12446341a089ad8ea6dfb35854f558b06cc5cc8861b29bf577a
3
+ metadata.gz: a4d41f39235c93099f575bced3cfd4b7ace3d435203a18254283cdc619e1653a
4
+ data.tar.gz: 455aca02129cd39754fb796a9b65f8cabb22ef8812b2a27d110080fc2989af7e
5
5
  SHA512:
6
- metadata.gz: 531f9a3ed512b565b69a3955f7ac2150fcca4ad022ee4e20692981cd0115e85745d779ef8cd89e70420957cdd7e26f160ed2d9ef16accbbd43f8dbcafcdbc378
7
- data.tar.gz: ed1494b912d08b60f709d8ff69ebf06021b01a58044a8672ff0c1d5f0752cfb30e18106e42b030a840f0c2d17e56c0ca32ccdd5e732bd464bc2dede1dff1249f
6
+ metadata.gz: 251cfa3744d492defeb83f5bac791a9d73fdd17b189608786dfff821e0ed23546b84cff1d02bc1a64be5588504a1465fc72aef48fbf5a9e4c7b5ace6e6d2c7b5
7
+ data.tar.gz: f5bcfe2747ab4592e73e20310157a423184ae99511ef209687afe7d9a882cc13ad2273bbeb82e7908fcae1cca737278716eef686688521fb7255647deb5346a5
data/README.md CHANGED
@@ -71,7 +71,7 @@ Create or update your mailer initializer file:
71
71
  # /config/initializers/emailfuse.rb
72
72
  EmailFuse.configure do |config|
73
73
  config.api_key = ENV["EMAILFUSE_API_KEY"]
74
- config.base_url = "https://emailfuse.voupe.com" # optional, defaults to https://emailfuse.voupe.com
74
+ config.base_url = "https://api.emailfuse.net" # optional, defaults to https://api.emailfuse.net
75
75
  end
76
76
  ```
77
77
 
@@ -84,7 +84,7 @@ Configure directly in your environment file:
84
84
  config.action_mailer.delivery_method = :emailfuse
85
85
  config.action_mailer.emailfuse_settings = {
86
86
  api_key: ENV["EMAILFUSE_API_KEY"],
87
- host: "https://emailfuse.voupe.com" # optional
87
+ host: "https://api.emailfuse.net" # optional
88
88
  }
89
89
  ```
90
90
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EmailFuse
4
- VERSION = "0.4.0"
4
+ VERSION = "0.5.0"
5
5
  end
data/lib/email_fuse.rb CHANGED
@@ -39,7 +39,7 @@ module EmailFuse
39
39
  alias config configure
40
40
 
41
41
  def base_url
42
- @base_url ||= "https://emailfuse.voupe.com"
42
+ @base_url ||= "https://api.emailfuse.net"
43
43
  end
44
44
  end
45
45
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: emailfuse
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dean Perry
@@ -77,7 +77,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
77
77
  - !ruby/object:Gem::Version
78
78
  version: '0'
79
79
  requirements: []
80
- rubygems_version: 4.0.3
80
+ rubygems_version: 4.0.7
81
81
  specification_version: 4
82
82
  summary: The Ruby and Rails SDK for EmailFuse
83
83
  test_files: []