vzcdn 0.2.3 → 0.2.4
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 +4 -4
- data/README.md +27 -11
- data/lib/vzcdn/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e4477daa71318b347bb96feac083385bc4815d3b
|
4
|
+
data.tar.gz: f53afcd7068ae2e686eb0fbee66b696c9be9f60f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 09c76a7a0b62443d984511074be19b3aa5bc0e789a8321ba893cd4fb878e74d9d09f3320b251a914994df1694e942e822c855c1dd06d9af549d91ccd4c38dfae
|
7
|
+
data.tar.gz: 0c5d619160c686c2755778fce973c5ad38a17722b9e57eac4c0a680aae40af96eb2a503b8187053bd7970db98206134baf0865d48962d778c1e9ea17e08f0763
|
data/README.md
CHANGED
@@ -2,37 +2,56 @@
|
|
2
2
|
|
3
3
|
Commandline UI for Edgecast API
|
4
4
|
|
5
|
+
## Usage
|
6
|
+
[Video Tutorial](http://youtu.be/y8MnWYxZiiA "CLUI")
|
7
|
+
|
8
|
+
**Setting up an account:**
|
9
|
+
To set up an account, the command is '*ec config init <account-num> <token>*' where <account-num> is Edgecast account number, and <token> is web-services REST API Token which you can get from my.edgecast.com ==> My Settings ==> Web Service REST API Token. (If you don't see 'Web Service REST API Token' section, please contact account-admin to get 'API-Access' for MCC Endpoint).
|
10
|
+
|
11
|
+
**Navigation through CLUI:**
|
12
|
+
Command structure for CLUI is self-explanatory, and contextual help is available at each step. Once you install the gem, you can start by typing 'vzcdn' or 'ec' on command prompt. Once you type 'ec' on command prompt, you would be given usage details
|
13
|
+
$ ec
|
14
|
+
ec - (vzcdn or ec) EdgeCast command line interface
|
15
|
+
Usage:
|
16
|
+
ec zone
|
17
|
+
ec config
|
18
|
+
Options:
|
19
|
+
-h or --help
|
20
|
+
-v or --version
|
21
|
+
-d or --debug
|
22
|
+
|
5
23
|
##RELEASE NOTES
|
6
|
-
2014/05/
|
24
|
+
2014/05/22 0.2.4
|
7
25
|
* Testcases added.
|
26
|
+
* Updated documentation
|
8
27
|
|
9
|
-
2014/05/15 0.2.2
|
28
|
+
2014/05/15 0.2.2
|
10
29
|
* Bug fix: pull command would fail if zones directory does not exists.
|
11
30
|
|
12
|
-
2014/05/12 0.2.1
|
31
|
+
2014/05/12 0.2.1
|
13
32
|
* CSV format support (ec zone <zname> print -t csv)
|
14
33
|
* Column Customization (ec zone <zname> print -c DomainName,ZoneId)
|
15
34
|
* IP address validations, 'diff' command, bind-file-to-add-zone script etc
|
16
35
|
|
17
|
-
2014/05/02 0.2.0
|
36
|
+
2014/05/02 0.2.0
|
18
37
|
* Add/Update/Delete for groups/records/health-checks in zone.
|
19
38
|
* Zone-list with local status
|
20
39
|
|
21
|
-
2014/04/22 0.1.9
|
40
|
+
2014/04/22 0.1.9
|
22
41
|
* Create zone support
|
23
42
|
* Add record support
|
24
43
|
|
25
|
-
2014/04/17 0.1.7
|
44
|
+
2014/04/17 0.1.7
|
26
45
|
* Default action - print
|
27
46
|
* Presentation changes for zone display ( <object> to "...", array elements to [num] etc)
|
28
47
|
* Column customization in display
|
29
48
|
* directory structure changes
|
30
49
|
* bash script demonstrating vzcdn usage
|
31
50
|
|
32
|
-
2014/04/09 0.1.4
|
51
|
+
2014/04/09 0.1.4
|
33
52
|
* Bug fix for "ec zone <id> pull"
|
34
53
|
|
35
|
-
2014/04/08 0.1.3
|
54
|
+
2014/04/08 0.1.3
|
36
55
|
* Enabled command "ec zone <id> pull"
|
37
56
|
* Supported command "ec zone <id> push"
|
38
57
|
* Abbreviation support for "ec zone <id> print"
|
@@ -52,9 +71,6 @@ Or install it yourself as:
|
|
52
71
|
|
53
72
|
$ gem install vzcdn
|
54
73
|
|
55
|
-
## Usage
|
56
|
-
http://youtu.be/y8MnWYxZiiA
|
57
|
-
|
58
74
|
## Contributing
|
59
75
|
|
60
76
|
1. Fork it ( http://github.com/<my-github-username>/vzcdn/fork )
|
data/lib/vzcdn/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vzcdn
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steve Preston
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2014-05-
|
13
|
+
date: 2014-05-22 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: bundler
|