Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
artyomb committed Jul 29, 2024
1 parent b82cc36 commit 7881d30
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
dry-stack (0.1.5)
dry-stack (0.1.6)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This gem allows ...
cat simple_stack.drs | dry-stack -e to_compose | docker stack deploy -c - simple_stack
$ dry-stack
Version: 0.1.5
Version: 0.1.6
Usage:
dry-stack -s stackfile [options] COMMAND
cat stackfile | dry-stack COMMAND
Expand Down
2 changes: 2 additions & 0 deletions lib/dry-stack/command_line.rb
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ def run(args)

params.transform_keys!{_1.to_s.gsub('-','_').to_sym}
params[:traefik_tls] = true if params[:tls_domain]
params[:traefik] = true unless params.key? :traefik

Dry.cmd_params = params

raise 'Stack file not defined' if $stdin.tty? && !params[:stack]
Expand Down
2 changes: 1 addition & 1 deletion lib/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Dry
class Stack
VERSION = '0.1.5'
VERSION = '0.1.6'
end
end

0 comments on commit 7881d30

Please sign in to comment.