resent 0.1.2 → 0.1.3

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/resent/version.rb +1 -1
  3. metadata +19 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: beecbef051467b8cf8e07c7a33dac9c092d7df5f88dd76bb966c2e1aabf08f60
4
- data.tar.gz: 9a15e7beb68f694753882c5d824be9e8f57c2cffc1f6a55b7a43aef71fab9b5a
3
+ metadata.gz: 55a5ad3f56b77564042e33b59387a42011ccdce16ee8381bcdfaa29b909ab605
4
+ data.tar.gz: b60f8a33b21adbf65a9f7829fd695c3a51f38991cf6b4edff50987cdc7dda813
5
5
  SHA512:
6
- metadata.gz: e9863944687e3c337c2e771335bf16a6997f2163f94302d3ee9f706a3317a381c57c05dd314166c965f3035ff2838c913da9fc169d298447e989212b73b7d3fd
7
- data.tar.gz: 0fc466eeeae52fd8aee0eaea90790da8b7b205b0f286134228a659a8dd7341c8a2787c249b9b3244473f0055d8eec807584dc526e1cf66c7932e39600989d677
6
+ metadata.gz: 68dbe8d75f37d2bd6c33be597a7efff198368e458c10e488188427d916af02230441b8a50b8e9b44d6ce2c771dd6bc4c08eeb707451b802e17f396057b0c6e1c
7
+ data.tar.gz: 430aef6786c993211c853b1544d39b8608e5f78b932899584eb7ddc215dd0127041ee823980150c874b517de64d27ce9ffb8ceba33185424ab2d4131ccf186d7
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Resent
4
- VERSION = "0.1.2"
4
+ VERSION = "0.1.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: resent
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Resent
@@ -11,12 +11,26 @@ cert_chain: []
11
11
  date: 2026-07-26 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |
14
- Official Ruby SDK for Resent transactional email.
14
+ Resent is the official Ruby client for resent.one — a transactional email API built for product and platform teams.
15
15
 
16
- gem install resent
17
- Then: Resent.new(ENV["RESENT_API_KEY"]).emails.send(...)
16
+ Install with: gem install resent (or add gem "resent" to your Gemfile).
17
+
18
+ Create an API key in the Resent dashboard, set RESENT_API_KEY, then send mail with a few lines of Ruby:
19
+
20
+ require "resent"
21
+ resent = Resent.new(ENV.fetch("RESENT_API_KEY"))
22
+ resent.emails.send(
23
+ from: "Acme <noreply@yourdomain.com>",
24
+ to: "you@example.com",
25
+ subject: "Hello World",
26
+ html: "<strong>It works!</strong>"
27
+ )
28
+
29
+ Uses only Ruby stdlib (Net::HTTP + JSON) — no extra runtime gems. Supports html and/or text bodies, plus cc, bcc, and reply_to.
18
30
 
19
31
  Docs: https://developers.resent.one/sdks/ruby
32
+ Dashboard: https://resent.one
33
+ Source: https://github.com/resentmail/resent-ruby
20
34
  email:
21
35
  - hello@resent.one
22
36
  executables: []
@@ -56,5 +70,5 @@ requirements: []
56
70
  rubygems_version: 3.0.3.1
57
71
  signing_key:
58
72
  specification_version: 4
59
- summary: Official Ruby SDK for Resent — send transactional email in a few lines
73
+ summary: Official Ruby SDK for Resent transactional email
60
74
  test_files: []