Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #48

Merged
merged 4 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [ "3.0.1", "2.6.7" ]
ruby-version: [ "3.4.1", "2.6.7" ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@477b21f02be01bcb8030d50f37cfec92bfa615b6
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ vendor/
coverage/
cuffsert-*.gem
.byebug_history
Gemfile.lock
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.0
3.4.1
82 changes: 0 additions & 82 deletions Gemfile.lock

This file was deleted.

6 changes: 4 additions & 2 deletions cuffsert.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,18 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = '>= 2.0.0'

spec.add_runtime_dependency 'aws-sdk-cloudformation', '~> 1.67.0'
spec.add_runtime_dependency 'aws-sdk-s3', '~> 1.112.0'
spec.add_runtime_dependency 'aws-sdk-cloudformation', '~> 1.67'
spec.add_runtime_dependency 'aws-sdk-s3', '~> 1.112'
spec.add_runtime_dependency 'colorize'
spec.add_runtime_dependency 'hashdiff', '~> 1.0'
spec.add_runtime_dependency 'nokogiri'
spec.add_runtime_dependency 'ruby-termios'
spec.add_runtime_dependency 'rx'

spec.add_development_dependency 'base64'
spec.add_development_dependency 'bundler', '~> 2.3'
spec.add_development_dependency 'byebug'
spec.add_development_dependency 'logger'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rx-rspec', '~> 0.4.3'
spec.add_development_dependency 'simplecov'
Expand Down
2 changes: 1 addition & 1 deletion lib/cuffsert/metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def self.build_meta(cli_args)

def self.meta_defaults(cli_args)
stack_path = (cli_args[:stack_path] || [])[0]
if stack_path && File.exists?(stack_path)
if stack_path && File.exist?(stack_path)
nil_params = CuffBase.empty_from_template(open(stack_path))
else
nil_params = {}
Expand Down
Loading