Skip to content

Commit

Permalink
Fix some errors and warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mullermp committed Jul 22, 2024
1 parent ccdb0c6 commit 936b8e6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ RuboCop::RakeTask.new
RSpec::Core::RakeTask.new(:spec)

task :db_migrate do
ENV['RAILS_ENV'] = 'test'
Dir.chdir('spec/dummy') do
`rake db:migrate`
end
Expand Down
8 changes: 4 additions & 4 deletions aws-sdk-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Gem::Specification.new do |spec|
spec.executables = ['aws_sqs_active_job']

spec.add_dependency('aws-record', '~> 2') # for Aws::Record integration
spec.add_dependency('aws-sessionstore-dynamodb', '~> 2') # includes DynamoDB

# Require these versions for user_agent_framework configs
spec.add_dependency('aws-sdk-s3', '~> 1', '>= 1.123.0')
Expand All @@ -27,10 +28,9 @@ Gem::Specification.new do |spec|
spec.add_dependency('aws-sdk-sns', '~> 1', '>= 1.61.0') # for ActionMailbox
spec.add_dependency('aws-sdk-sqs', '~> 1', '>= 1.56.0') # for ActiveJob

spec.add_dependency('actionmailbox', '>= 7.0.0') # for SES ActionMailbox
spec.add_dependency('aws-sessionstore-dynamodb', '~> 2') # includes DynamoDB
spec.add_dependency('concurrent-ruby', '>= 1.3.1') # Utilities for concurrent processing
spec.add_dependency('railties', '>= 7.0.0') # Minimum supported Rails version
spec.add_dependency('actionmailbox', '~> 7.0', '>= 7.0.0') # for SES ActionMailbox
spec.add_dependency('concurrent-ruby', '~> 1.3', '>= 1.3.1') # Utilities for concurrent processing
spec.add_dependency('railties', '~> 7.0', '>= 7.0.0') # Minimum supported Rails version

spec.required_ruby_version = '>= 2.7'
end

0 comments on commit 936b8e6

Please sign in to comment.