gettive_mailer 0.1.0 → 0.2.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: cf7e35a4f1df3c837879cc0c3b12a6306c1b2466cb928bf8c417a41f2da07b5f
4
- data.tar.gz: 60086bbd333f1fdb3d07112a22acb2e65e88c805551900076202de31923cb506
3
+ metadata.gz: d671d622e0b633fdf0948b2180bc2e99272681cca9cbee17cc805059b78742fa
4
+ data.tar.gz: 5abe04062559c6720c4a7062e2ac4195883e36e73136c3f0d59129e54ffdb89c
5
5
  SHA512:
6
- metadata.gz: 6b02fc7e81407313225b7e5026031d6a2f91c4d608bc4c81fad9bbba1b836f45bb5e97a374517c671f57800b7d1ad3da0ecbc1551fb4f06b574f3af6b00fe527
7
- data.tar.gz: a60c57d2e72b4cce6620f022ae53abcc2924cc24c0adbbd60b5d118260225bd29069fddce9cefcc1a9fa6fb54f1a22b61852520ef861af1f7a4d5023dfdf2875
6
+ metadata.gz: 6e5bc9aa260fd0527950c7b8392ef5b442e3b084d9a6f7a92d5391e13706b7b06f63d5a02def15e00a49178ba993bc534fb1d0f0af04f9a9f985f4dd1e72051e
7
+ data.tar.gz: 0f3979ec0034e656f455c814418e9389787a3754fc3da2e7f456af829b74a400ad1a9ef22f5bca79d9e0c0bd51a23509e81dd44da096c1c517f10d72b6865fcb
data/README.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # Set up
2
- Add the following to your GemFile to have it installed from GitHub; `gem "gettive_mailer", git: "https://github.com/gettive/mailer.git"`, then `bundle install`
2
+
3
+ ## Compiling
4
+
5
+ Run the following commands
6
+ ```
7
+ gem signin
8
+ ```
9
+
10
+ Follow all the steps for signin in. Once completed, run the following
11
+ ```
12
+ gem build gettive_mailer.gemspec
13
+ ```
14
+
15
+ This will create a file with its name in the following form *gettive_mailer-*<VERSION>*.gem*. Push that file to ruygems repository using the command shown below;
16
+ ```
17
+ gem push gettive_mailer<VERSION>.gem
18
+ ```
19
+
20
+ ## Setting up this Gem in your project
21
+
22
+ Add the following to your GemFile
23
+ ```
24
+ gem "gettive_mailer"
25
+ ```
26
+
27
+ Afterward, run `bundle install` to have it installed
3
28
 
4
29
  Create *gettive_mailer.rb* inside the initializers directory, and add this; it will be loaded when the server is started
5
30
  ```
@@ -3,7 +3,7 @@ module GettiveMailer
3
3
  attr_accessor :api_key, :endpoint
4
4
 
5
5
  def initialize
6
- @endpoint = ENV.fetch("GETTIVE_MAILER_ENDPOINT", "https://api.mailer.gettive.com")
6
+ @endpoint = ENV.fetch("GETTIVE_MAILER_ENDPOINT", "https://tuqfgkz924.execute-api.us-east-1.amazonaws.com/send-mail")
7
7
  end
8
8
  end
9
9
  end
@@ -1,3 +1,3 @@
1
1
  module GettiveMailer
2
- VERSION = "0.1.0"
3
- end
2
+ VERSION = "0.2.0"
3
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gettive_mailer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vincent Makokha
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-07-16 00:00:00.000000000 Z
11
+ date: 2026-07-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails