rails_courier 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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 8fc405f4c143317066a35d7bb0c865e15a40084a40f02f6866df4584b6c76963
4
+ data.tar.gz: 9b1935487743e5c5239b531c093e6f4548d903b5632a41570f98c3205cda5271
5
+ SHA512:
6
+ metadata.gz: 60e7aedf6dfa528f6f4c4689a0e4f454d05ae8ffa980c9698b7976a2b3bbe3f8234ba905ee1bd3e0cf3aa2864ad57f8abdd22c378f04c99ccbb4b07772cfcda0
7
+ data.tar.gz: dff2fbb59cc36034c04ed4a041a9e2ee0d95471af2feb4e5c135b5c83653fed7c756059d490f3ba0323a6465723fa8e64f4165823546f60452f7ea3ca06629fb
data/Gemfile ADDED
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in rails_courier.gemspec
6
+ gemspec
7
+
8
+ gem "irb"
9
+ gem "rake", "~> 13.0"
10
+
11
+ gem "minitest", "~> 5.16"
12
+
13
+ gem "standard", "~> 1.3"
data/Gemfile.lock ADDED
@@ -0,0 +1,87 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ rails_courier (0.2.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ ast (2.4.3)
10
+ date (3.4.1)
11
+ io-console (0.8.0)
12
+ irb (1.15.2)
13
+ pp (>= 0.6.0)
14
+ rdoc (>= 4.0.0)
15
+ reline (>= 0.4.2)
16
+ json (2.11.3)
17
+ language_server-protocol (3.17.0.4)
18
+ lint_roller (1.1.0)
19
+ minitest (5.25.5)
20
+ parallel (1.27.0)
21
+ parser (3.3.8.0)
22
+ ast (~> 2.4.1)
23
+ racc
24
+ pp (0.6.2)
25
+ prettyprint
26
+ prettyprint (0.2.0)
27
+ prism (1.4.0)
28
+ psych (5.2.3)
29
+ date
30
+ stringio
31
+ racc (1.8.1)
32
+ rainbow (3.1.1)
33
+ rake (13.2.1)
34
+ rdoc (6.13.1)
35
+ psych (>= 4.0.0)
36
+ regexp_parser (2.10.0)
37
+ reline (0.6.1)
38
+ io-console (~> 0.5)
39
+ rubocop (1.75.3)
40
+ json (~> 2.3)
41
+ language_server-protocol (~> 3.17.0.2)
42
+ lint_roller (~> 1.1.0)
43
+ parallel (~> 1.10)
44
+ parser (>= 3.3.0.2)
45
+ rainbow (>= 2.2.2, < 4.0)
46
+ regexp_parser (>= 2.9.3, < 3.0)
47
+ rubocop-ast (>= 1.44.0, < 2.0)
48
+ ruby-progressbar (~> 1.7)
49
+ unicode-display_width (>= 2.4.0, < 4.0)
50
+ rubocop-ast (1.44.1)
51
+ parser (>= 3.3.7.2)
52
+ prism (~> 1.4)
53
+ rubocop-performance (1.25.0)
54
+ lint_roller (~> 1.1)
55
+ rubocop (>= 1.75.0, < 2.0)
56
+ rubocop-ast (>= 1.38.0, < 2.0)
57
+ ruby-progressbar (1.13.0)
58
+ standard (1.49.0)
59
+ language_server-protocol (~> 3.17.0.2)
60
+ lint_roller (~> 1.0)
61
+ rubocop (~> 1.75.2)
62
+ standard-custom (~> 1.0.0)
63
+ standard-performance (~> 1.8)
64
+ standard-custom (1.0.2)
65
+ lint_roller (~> 1.0)
66
+ rubocop (~> 1.50)
67
+ standard-performance (1.8.0)
68
+ lint_roller (~> 1.1)
69
+ rubocop-performance (~> 1.25.0)
70
+ stringio (3.1.7)
71
+ unicode-display_width (3.1.4)
72
+ unicode-emoji (~> 4.0, >= 4.0.4)
73
+ unicode-emoji (4.0.4)
74
+
75
+ PLATFORMS
76
+ arm64-darwin-23
77
+ ruby
78
+
79
+ DEPENDENCIES
80
+ irb
81
+ minitest (~> 5.16)
82
+ rails_courier!
83
+ rake (~> 13.0)
84
+ standard (~> 1.3)
85
+
86
+ BUNDLED WITH
87
+ 2.6.8
data/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # RailsCourier
2
+
3
+ Modern, API-powered email delivery for Rails apps.
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "minitest/test_task"
5
+
6
+ Minitest::TestTask.create
7
+
8
+ require "standard/rake"
9
+
10
+ task default: %i[test standard]
data/bin/console ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "bundler/setup"
5
+ require "rails_courier"
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ require "irb"
11
+ IRB.start(__FILE__)
data/bin/release ADDED
@@ -0,0 +1,19 @@
1
+ #!/usr/bin/env bash
2
+
3
+ VERSION=$1
4
+
5
+ if [ -z "$VERSION" ]; then
6
+ echo "Error: The version number is required."
7
+ echo "Usage: $0 <version-number>"
8
+ exit 1
9
+ fi
10
+
11
+ printf "module RailsCourier\n VERSION = \"$VERSION\"\nend\n" > ./lib/rails_courier/version.rb
12
+ bundle
13
+ git add Gemfile.lock lib/rails_courier/version.rb
14
+ git commit -m "Bump version for $VERSION"
15
+ git push
16
+ git tag v$VERSION
17
+ git push --tags
18
+ gem build rails_courier.gemspec
19
+ gem push "rails_courier-$VERSION.gem"
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,3 @@
1
+ module RailsCourier
2
+ VERSION = "0.2.0"
3
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "rails_courier/version"
4
+
5
+ module RailsCourier
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/rails_courier/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "rails_courier"
7
+ spec.version = RailsCourier::VERSION
8
+ spec.authors = ["Rails Designer Developers"]
9
+ spec.email = ["devs@railsdesigner.com"]
10
+
11
+ spec.summary = "Modern, API-powered email delivery for Rails apps"
12
+ spec.description = "Modern, API-powered email delivery for Rails apps with support for Postmark, Mailgun, Mailpace and more."
13
+ spec.homepage = "https://railsdesigner.com/tools/"
14
+ spec.license = "MIT"
15
+
16
+ spec.metadata["homepage_uri"] = spec.homepage
17
+ spec.metadata["source_code_uri"] = "https://github.com/Rails-Designer/rails_courier/"
18
+
19
+ spec.files = Dir["{bin,app,config,db,lib,public}/**/*", "Rakefile", "README.md", "rails_courier.gemspec", "Gemfile", "Gemfile.lock"]
20
+
21
+ spec.required_ruby_version = ">= 3.1.0"
22
+ end
metadata ADDED
@@ -0,0 +1,53 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rails_courier
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Rails Designer Developers
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: Modern, API-powered email delivery for Rails apps with support for Postmark,
13
+ Mailgun, Mailpace and more.
14
+ email:
15
+ - devs@railsdesigner.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - Gemfile
21
+ - Gemfile.lock
22
+ - README.md
23
+ - Rakefile
24
+ - bin/console
25
+ - bin/release
26
+ - bin/setup
27
+ - lib/rails_courier.rb
28
+ - lib/rails_courier/version.rb
29
+ - rails_courier.gemspec
30
+ homepage: https://railsdesigner.com/tools/
31
+ licenses:
32
+ - MIT
33
+ metadata:
34
+ homepage_uri: https://railsdesigner.com/tools/
35
+ source_code_uri: https://github.com/Rails-Designer/rails_courier/
36
+ rdoc_options: []
37
+ require_paths:
38
+ - lib
39
+ required_ruby_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: 3.1.0
44
+ required_rubygems_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ requirements: []
50
+ rubygems_version: 3.6.8
51
+ specification_version: 4
52
+ summary: Modern, API-powered email delivery for Rails apps
53
+ test_files: []