appd 0.4.1 → 0.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f7a104221bd64cf99b9fe018c344127ef960ef7f
4
- data.tar.gz: 42c19cd15a2a59acbb59767cd7bb4866c768a2fa
3
+ metadata.gz: 0fcb149ad109bcb4088b78f6492306bd3317cc89
4
+ data.tar.gz: 7abb69049d7db3c378a102a8bf10a7e5d08783b4
5
5
  SHA512:
6
- metadata.gz: 7569ef56878954f6014cd513559b72a03dae47cecb7370ee14d3986c6ff592426810bcae190194cfc318654887e6ceb1c2e3f7d4aded0fcde0ce5cc88d823eb0
7
- data.tar.gz: 8f92698ff7e9c20f73fe59eb432a0d0a2b91bec4a0c4eaf5e7a5a2c130c909e2b88c4cf2ae272cbfb49686905bd513c1ca804edb2056e8cd48394122f8c7e4f2
6
+ metadata.gz: ae0e0bad213f4b4a3125728388934ccac6b13b64b2f98293d6a4c96666a369000996c0cbd7b2ae7792d2cb9caa4086d1ba8ed8f75efd2a469d0d2f922b05df31
7
+ data.tar.gz: 79012e7cc52b8b5aa9135db7b11a00ef12819db77ea15787482120b0380af7b6ccb5b6a7d722d6df569a57eef70c3b338a47fe211562342180704e998246c7ec
data/exe/appd CHANGED
@@ -6,7 +6,7 @@ Signal.trap("INT") { exit 1 }
6
6
  require "appd"
7
7
  require "appd/cli"
8
8
 
9
- if ARGV[0] != "help" && ARGV[0] != "select" && app = ARGV.shift
9
+ if ARGV[0] != "help" && app = ARGV.shift
10
10
  if app == "."
11
11
  ARGV << "--app-path"
12
12
  ARGV << Dir.pwd
data/lib/appd/cli.rb CHANGED
@@ -5,7 +5,6 @@ module Appd
5
5
  class_option :app_path, type: :string, hide: true
6
6
  class_option :app, type: :string, hide: true, required: ARGV.count > 0 &&
7
7
  ARGV[0] != 'help' &&
8
- ARGV[0] != "select" &&
9
8
  ARGV[0] != "."
10
9
 
11
10
  default_task :help
data/lib/appd/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Appd
2
- VERSION = "0.4.1"
2
+ VERSION = "0.4.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appd
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Morgan Showman
@@ -110,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
110
110
  version: '0'
111
111
  requirements: []
112
112
  rubyforge_project:
113
- rubygems_version: 2.5.1
113
+ rubygems_version: 2.4.5.1
114
114
  signing_key:
115
115
  specification_version: 4
116
116
  summary: Docker compose wrapper for managing containers.