appd 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 82ecb74fbf2cc316d1d9c77467142f03fc671f8d
4
- data.tar.gz: 11f2b8d9c912a2f554bba5b0facf4eaa5f553b25
3
+ metadata.gz: fe94687a20020314445e934d7176dd00295d0cab
4
+ data.tar.gz: 62dc09b194ec930a1f84250e8d95920c1fe7dcc1
5
5
  SHA512:
6
- metadata.gz: 8e0a8055a6abfed7b034d6cc2326abd1a6d1a67c38c49c3163b4a75ad015b773f56d61298ec67d70962b07446b4ff513e230310e44d1483b2dbb3615c44a8d94
7
- data.tar.gz: 0668bef6d4e5d662d69bd8b98b1c6908b3e1929f635ebad014e511f248de7bac818679627c32fff94ca68429a43861b0f813117199bf64e7713964611f484390
6
+ metadata.gz: 1336d432ea91ab64ccb7b17464b6a4034ebe064ae8ca07ef57ea8dbc8f5f9645f2bc7f3c9d7c61339fe99ded8cdf8a84f428c685851ef5803e14fda5cd150292
7
+ data.tar.gz: 3596612c844f9dc5c020c0e42f1ec6d42f14d3ef348110e12c7ce3843605685fe3cb716a5bee75a1183148aba04ff2f60c9ccb028b7ed8da82a51be80f2aee0d
data/README.md CHANGED
@@ -2,8 +2,13 @@
2
2
 
3
3
  Docker compose wrapper to manage multiple apps.
4
4
 
5
+ Appd uses [direnv](http://direnv.net/) to execute docker-compose
6
+ commands in isolation while using the app's own environment.
7
+
5
8
  ## Installation
6
9
 
10
+ Install [direnv](http://direnv.net/) if you haven't already.
11
+
7
12
  Add this line to your application's Gemfile:
8
13
 
9
14
  ```ruby
@@ -21,6 +26,10 @@ Or install it yourself as:
21
26
  ## Usage
22
27
 
23
28
  ```sh
29
+ # Setup $APP_PATH
30
+ export APP_PATH /path/to/your/apps
31
+
32
+ # See help
24
33
  appd help
25
34
  ```
26
35
 
data/lib/appd/cli.rb CHANGED
@@ -12,6 +12,7 @@ module Appd
12
12
  puts " appd APPNAME command\n\n"
13
13
  puts "Commands:"
14
14
  self.class.commands.each { |_, command| printf "%-30s %s\n", " #{command.usage} ", "# #{command.description}" }
15
+ puts "\nNote: appd looks for apps in the $APP_PATH directory."
15
16
  end
16
17
 
17
18
  desc "ps", "List containers"
data/lib/appd/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Appd
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.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.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Morgan Showman