-
Notifications
You must be signed in to change notification settings - Fork 18
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 #15 from ssunday/update-and-s3-download
Bring up to date, add s3 download flow from Rails PR, Github Actions
- Loading branch information
Showing
23 changed files
with
407 additions
and
206 deletions.
There are no files selected for viewing
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,18 @@ | ||
name: 'CI' | ||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Install Ruby and gems | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
bundler-cache: true | ||
- name: Run tests | ||
run: make |
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 +1 @@ | ||
2.5.3 | ||
3.2.3 |
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 |
---|---|---|
|
@@ -9,29 +9,21 @@ Gem::Specification.new do |spec| | |
spec.version = ActionMailboxAmazonIngress::VERSION | ||
spec.authors = ['Bob Farrell'] | ||
spec.email = ['[email protected]'] | ||
spec.required_ruby_version = '>= 2.5' | ||
spec.required_ruby_version = '>= 3.2' | ||
|
||
spec.summary = 'Amazon SES ingress for Rails ActionMailbox' | ||
spec.description = 'Integrate Amazon SES with ActionMailbox' | ||
spec.homepage = 'https://github.com/bobf/action_mailbox_amazon_ingress' | ||
spec.license = 'MIT' | ||
|
||
spec.metadata = { 'rubygems_mfa_required' => 'true' } | ||
spec.files = Dir.chdir(File.expand_path(__dir__)) do | ||
`git ls-files -z`.split("\x0").reject do |f| | ||
f.match(%r{^(test|spec|features)/}) | ||
end | ||
end | ||
spec.require_paths = ['lib'] | ||
|
||
spec.add_runtime_dependency 'aws-sdk-sns', '~> 1.23' | ||
spec.add_dependency 'actionmailbox', '>= 6.0' | ||
|
||
spec.add_development_dependency 'devpack', '~> 0.3.3' | ||
spec.add_development_dependency 'rake', '~> 13.0' | ||
spec.add_development_dependency 'rspec-its', '~> 1.3' | ||
spec.add_development_dependency 'rspec-rails', '~> 4.0' | ||
spec.add_development_dependency 'rubocop', '~> 0.90.0' | ||
spec.add_development_dependency 'sqlite3', '~> 1.4' | ||
spec.add_development_dependency 'strong_versions', '~> 0.4.5' | ||
spec.add_development_dependency 'webmock', '~> 3.8' | ||
spec.add_runtime_dependency 'aws-sdk-s3', '~> 1.151' | ||
spec.add_runtime_dependency 'aws-sdk-sns', '~> 1.75' | ||
spec.add_dependency 'actionmailbox', '~> 7.1' | ||
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
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
Oops, something went wrong.