dockland 0.2.0 → 0.2.1

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: c4aacb5b87342f2c03fafff0f6e2c92fd7231a3c
4
- data.tar.gz: 328eb74242dcabc1200ec275068becec660cbf03
3
+ metadata.gz: 2b9bfb5ab117236b8679489b2b76b388ac4f4c76
4
+ data.tar.gz: a094fb0a6a909738f0e045e43ba4e6ca18074bfa
5
5
  SHA512:
6
- metadata.gz: 8ffdd4fe449d8e7576b8344a44df1b8d2cb37be971e91e5d01322b7f3329eebbfdff59429f1c544b8d9e295c773908239fde62142b7c28a6f533b2a51d4b1f35
7
- data.tar.gz: 0fed6ecc2b3d0630294ca5326adc9ffc75fc779723df2aaec89ea2d66c9e75414b458c4e15f8831c8c2d34935c57afdd613157960046a66e772edf687d4b5dfc
6
+ metadata.gz: 7796816cd21e85a43ef076c453a9c931ed3795c8625fac4baadf56149119112f2776ad13e82afd31029a60ecd03d1b1b3186edb2788bb122f92839beb9c85384
7
+ data.tar.gz: da2b0d940fe3d5482fd88e91c84150038f6e3f055252c9f5efe39ec14222cf1cc8c2399f4abfc4724e9614882d68fdc8683049263265e990d926fc233b8ab312
data/README.md CHANGED
@@ -1,6 +1,9 @@
1
1
  # Dockland
2
2
 
3
- dokku pipeline
3
+ [![Gem Version](https://badge.fury.io/rb/dockland.svg)](http://badge.fury.io/rb/dockland)
4
+ [![Dependency Status](https://gemnasium.com/oame/dockland.svg)](https://gemnasium.com/oame/dockland)
5
+
6
+ Dockland provides `dokku` command for your machine.
4
7
 
5
8
  ## Installation
6
9
 
@@ -11,18 +14,16 @@ $ gem install dockland
11
14
  ## Usage
12
15
 
13
16
  ```bash
14
- $ cd dokku-ready-project
15
- $ git config remote.dokku.url
16
- dokku@example.com:dokku-ready-project
17
+ $ cd sushi-app # Move to dokku-ready-project folder
17
18
  $ dockland config:add KEY1=VALUE
18
- -----> Setting config vars and restarting dokku-ready-project
19
+ -----> Setting config vars and restarting sushi-app
19
20
  KEY1: VALUE
20
- -----> Releasing dokku-ready-project ...
21
+ -----> Releasing sushi-app ...
21
22
  -----> Release complete!
22
- -----> Deploying dokku-ready-project ...
23
+ -----> Deploying sushi-app ...
23
24
  -----> Deploy complete!
24
25
  $ dockland config
25
- === dokku-ready-project config vars ===
26
+ === sushi-app config vars ===
26
27
  KEY1: VALUE
27
28
  ```
28
29
 
@@ -8,9 +8,9 @@ Gem::Specification.new do |spec|
8
8
  spec.version = Dockland::VERSION
9
9
  spec.authors = ["oame"]
10
10
  spec.email = ["oame@oameya.com"]
11
- spec.summary = %q{dokku pipeline}
12
- spec.description = %q{dokku pipeline}
13
- spec.homepage = ""
11
+ spec.summary = %q{dokku command on local machine.}
12
+ spec.description = %q{Dockland provides `dokku` command for your machine.}
13
+ spec.homepage = "https://github.com/oame/dockland"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files -z`.split("\x0")
@@ -1,3 +1,3 @@
1
1
  module Dockland
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dockland
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - oame
@@ -52,7 +52,7 @@ dependencies:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
- description: dokku pipeline
55
+ description: Dockland provides `dokku` command for your machine.
56
56
  email:
57
57
  - oame@oameya.com
58
58
  executables:
@@ -71,7 +71,7 @@ files:
71
71
  - lib/dockland.rb
72
72
  - lib/dockland/cli.rb
73
73
  - lib/dockland/version.rb
74
- homepage: ''
74
+ homepage: https://github.com/oame/dockland
75
75
  licenses:
76
76
  - MIT
77
77
  metadata: {}
@@ -94,5 +94,5 @@ rubyforge_project:
94
94
  rubygems_version: 2.2.2
95
95
  signing_key:
96
96
  specification_version: 4
97
- summary: dokku pipeline
97
+ summary: dokku command on local machine.
98
98
  test_files: []