forked from tablecheck/mail-ses
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from Teamtailor/standard-rb
Add Standard instead of Rubocop
- Loading branch information
Showing
15 changed files
with
172 additions
and
218 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
name: Standard | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
checks: write | ||
contents: write | ||
steps: | ||
- name: Standard Ruby | ||
uses: standardrb/standard-ruby-action@v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
source 'https://rubygems.org' | ||
source "https://rubygems.org" | ||
|
||
gemspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'aws-sdk-sesv2' | ||
require 'mail' | ||
require 'mail/ses' | ||
require "aws-sdk-sesv2" | ||
require "mail" | ||
require "mail/ses" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
|
||
module Mail | ||
class SES | ||
VERSION = '1.1.0' | ||
VERSION = "1.1.0" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
# frozen_string_literal: true | ||
|
||
$LOAD_PATH.push File.expand_path('lib', __dir__) | ||
require 'mail/ses/version' | ||
$LOAD_PATH.push File.expand_path("lib", __dir__) | ||
require "mail/ses/version" | ||
|
||
Gem::Specification.new do |s| | ||
s.name = 'mail-ses' | ||
s.version = Mail::SES::VERSION | ||
s.licenses = ['MIT'] | ||
s.summary = 'Ruby Mail delivery method handler for Amazon SES' | ||
s.description = 'Ruby Mail delivery method handler for Amazon SES' | ||
s.authors = ['Johnny Shields'] | ||
s.email = '[email protected]' | ||
s.files = Dir.glob('lib/**/*') + %w[CHANGELOG.md LICENSE README.md] | ||
s.homepage = 'https://github.com/tablecheck/mail-ses' | ||
s.required_ruby_version = '>= 2.6.0' | ||
s.name = "mail-ses" | ||
s.version = Mail::SES::VERSION | ||
s.licenses = ["MIT"] | ||
s.summary = "Ruby Mail delivery method handler for Amazon SES" | ||
s.description = "Ruby Mail delivery method handler for Amazon SES" | ||
s.authors = ["Johnny Shields"] | ||
s.email = "[email protected]" | ||
s.files = Dir.glob("lib/**/*") + %w[CHANGELOG.md LICENSE README.md] | ||
s.homepage = "https://github.com/tablecheck/mail-ses" | ||
s.required_ruby_version = ">= 3.0.0" | ||
|
||
s.add_dependency('aws-sdk-sesv2', '>= 1.27') | ||
s.add_dependency('mail', '>= 2.8.1') | ||
s.add_development_dependency('net-smtp') | ||
s.add_development_dependency('nokogiri') | ||
s.add_development_dependency('rake', '>= 1') | ||
s.add_development_dependency('rspec', '>= 3.8') | ||
s.add_development_dependency('rubocop', '~> 1.30.1') | ||
s.add_dependency("aws-sdk-sesv2", ">= 1.27") | ||
s.add_dependency("mail", ">= 2.8.1") | ||
s.add_development_dependency("net-smtp") | ||
s.add_development_dependency("nokogiri") | ||
s.add_development_dependency("rake", ">= 1") | ||
s.add_development_dependency("rspec", ">= 3.8") | ||
s.add_development_dependency("standard", "1.41.1") | ||
|
||
s.metadata['rubygems_mfa_required'] = 'true' | ||
s.metadata["rubygems_mfa_required"] = "true" | ||
end |
Oops, something went wrong.