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 +4 -4
- data/README.md +26 -1
- data/lib/gettive_mailer/configuration.rb +1 -1
- data/lib/gettive_mailer/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d671d622e0b633fdf0948b2180bc2e99272681cca9cbee17cc805059b78742fa
|
|
4
|
+
data.tar.gz: 5abe04062559c6720c4a7062e2ac4195883e36e73136c3f0d59129e54ffdb89c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e5bc9aa260fd0527950c7b8392ef5b442e3b084d9a6f7a92d5391e13706b7b06f63d5a02def15e00a49178ba993bc534fb1d0f0af04f9a9f985f4dd1e72051e
|
|
7
|
+
data.tar.gz: 0f3979ec0034e656f455c814418e9389787a3754fc3da2e7f456af829b74a400ad1a9ef22f5bca79d9e0c0bd51a23509e81dd44da096c1c517f10d72b6865fcb
|
data/README.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# Set up
|
|
2
|
-
|
|
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.
|
|
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.
|
|
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.
|
|
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-
|
|
11
|
+
date: 2026-07-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|