File tree 6 files changed +10
-89
lines changed
6 files changed +10
-89
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,11 @@ jobs:
11
11
runs-on : ubuntu-latest
12
12
strategy :
13
13
matrix :
14
- ruby-version : [ "3.0 .1", "2.6.7" ]
14
+ ruby-version : [ "3.4 .1", "2.6.7" ]
15
15
steps :
16
- - uses : actions/checkout@v2
16
+ - uses : actions/checkout@v4
17
17
- name : Set up Ruby ${{ matrix.ruby-version }}
18
- uses : ruby/setup-ruby@477b21f02be01bcb8030d50f37cfec92bfa615b6
18
+ uses : ruby/setup-ruby@v1
19
19
with :
20
20
ruby-version : ${{ matrix.ruby-version }}
21
21
- name : Install dependencies
Original file line number Diff line number Diff line change 3
3
coverage /
4
4
cuffsert- * .gem
5
5
.byebug_history
6
+ Gemfile.lock
Original file line number Diff line number Diff line change 1
- 3.1.0
1
+ 3.4.1
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -15,16 +15,18 @@ Gem::Specification.new do |spec|
15
15
16
16
spec . required_ruby_version = '>= 2.0.0'
17
17
18
- spec . add_runtime_dependency 'aws-sdk-cloudformation' , '~> 1.67.0 '
19
- spec . add_runtime_dependency 'aws-sdk-s3' , '~> 1.112.0 '
18
+ spec . add_runtime_dependency 'aws-sdk-cloudformation' , '~> 1.67'
19
+ spec . add_runtime_dependency 'aws-sdk-s3' , '~> 1.112'
20
20
spec . add_runtime_dependency 'colorize'
21
21
spec . add_runtime_dependency 'hashdiff' , '~> 1.0'
22
22
spec . add_runtime_dependency 'nokogiri'
23
23
spec . add_runtime_dependency 'ruby-termios'
24
24
spec . add_runtime_dependency 'rx'
25
25
26
+ spec . add_development_dependency 'base64'
26
27
spec . add_development_dependency 'bundler' , '~> 2.3'
27
28
spec . add_development_dependency 'byebug'
29
+ spec . add_development_dependency 'logger'
28
30
spec . add_development_dependency 'rspec' , '~> 3.0'
29
31
spec . add_development_dependency 'rx-rspec' , '~> 0.4.3'
30
32
spec . add_development_dependency 'simplecov'
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ def self.build_meta(cli_args)
84
84
85
85
def self . meta_defaults ( cli_args )
86
86
stack_path = ( cli_args [ :stack_path ] || [ ] ) [ 0 ]
87
- if stack_path && File . exists ?( stack_path )
87
+ if stack_path && File . exist ?( stack_path )
88
88
nil_params = CuffBase . empty_from_template ( open ( stack_path ) )
89
89
else
90
90
nil_params = { }
You can’t perform that action at this time.
0 commit comments