Skip to content

Commit

Permalink
Merge branch 'master' into change/yes-rollback
Browse files Browse the repository at this point in the history
  • Loading branch information
TeslaDethray committed Sep 16, 2016
2 parents cf83c95 + 57a0568 commit 25945e8
Show file tree
Hide file tree
Showing 34 changed files with 522 additions and 226 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#Change Log
All notable changes to this project starting with the 0.6.0 release will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org)

## MASTER
## [0.13.0] - 2016-09-15
### Added
- New rocket art available using `art rocket`. (#1148)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ composer require pantheon-systems/terminus

Run this in this in your terminal client:
```bash
curl https://github.com/pantheon-systems/terminus/releases/download/0.12.0/terminus.phar -L -o /usr/local/bin/terminus && chmod +x /usr/local/bin/terminus
curl https://github.com/pantheon-systems/terminus/releases/download/0.13.0/terminus.phar -L -o /usr/local/bin/terminus && chmod +x /usr/local/bin/terminus
```

####Installing with [Homebrew](http://brew.sh/)(for Macs)
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"bin": [
"bin/terminus.bat", "bin/terminus"
],
"minimum-stability": "beta",
"require": {
"php": ">=5.5.9",
"consolidation/robo": "dev-master",
Expand Down
73 changes: 37 additions & 36 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion config/constants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
---

# App
TERMINUS_VERSION: '0.12.0'
TERMINUS_VERSION: '0.13.0'

# Connectivity
TERMINUS_HOST: 'terminus.pantheon.io'
Expand Down
4 changes: 4 additions & 0 deletions docs/Helpers/InputHelper.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,8 @@

##### Parameters:
[array] $arg_options Elements as follow:
-array args Parameters from the command line
-string key Key to look for in args
-string message Message to give at prompt
-mixed default Returned if user does not select a valid option

Expand All @@ -242,6 +244,8 @@

##### Parameters:
[array] $arg_options Elements as follow:
-array args Parameters from the command line
-string key Key to look for in args
-string message Message to give at prompt
-mixed default Returned if user does not select a valid option

Expand Down
5 changes: 1 addition & 4 deletions docs/Models/Auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@

##### Parameters:
[object] $attributes Attributes of this model
[array] $options Options to set as $this->key

##### Return:
[Auth]
[array] $options Options with which to configure this model

---

Expand Down
10 changes: 10 additions & 0 deletions docs/Models/Backup.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Terminus\Models\Backup

### __construct
##### Description:
Object constructor

##### Parameters:
[object] $attributes Attributes of this model
[array] $options Options with which to configure this model

---

### backupIsFinished
##### Description:
Determines whether the backup has been completed or not
Expand Down
26 changes: 21 additions & 5 deletions docs/Models/Environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

##### Parameters:
[object] $attributes Attributes of this model
[array] $options Options to set as $this->key
[array] $options Options with which to configure this model

---

Expand Down Expand Up @@ -36,7 +36,7 @@
Clones database from this environment to another

##### Parameters:
[string] $to_env Environment to clone into
[string] $from_env Name of the environment to clone

##### Return:
[Workflow]
Expand All @@ -48,7 +48,7 @@
Clones files from this environment to another

##### Parameters:
[string] $to_env Environment to clone into
[string] $from_env Name of the environment to clone

##### Return:
[Workflow]
Expand Down Expand Up @@ -186,6 +186,18 @@

---

### import
##### Description:
Imports a site archive onto Pantheon

##### Parameters:
[string] $url URL of the archive to import

##### Return:
[Workflow]

---

### importFiles
##### Description:
Imports a file archive
Expand Down Expand Up @@ -247,7 +259,9 @@
Enable HTTP Basic Access authentication on the web environment

##### Parameters:
[array] $options Parameters to override defaults
[array] $params Elements as follow:
-string username
-string password

##### Return:
[Workflow]
Expand Down Expand Up @@ -280,10 +294,12 @@

### mergeToDev
##### Description:
Merge code from this Multidev Environment into the Dev Environment
Merge code from a multidev environment into the dev environment

##### Parameters:
[array] $options Parameters to override defaults
-string from_environment Name of the multidev environment to merge
-boolean updatedb True to update DB with merge

##### Return:
[Workflow]
Expand Down
19 changes: 19 additions & 0 deletions docs/Models/Hostname.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Terminus\Models\Hostname

### __construct
##### Description:
Object constructor

##### Parameters:
[object] $attributes Attributes of this model
[array] $options Options with which to configure this model

---

### delete
##### Description:
Delete a hostname from an environment
Expand All @@ -9,3 +19,12 @@

---

### serialize
##### Description:
Formats Hostname object into an associative array for output

##### Return:
[array] $data associative array of data for output

---

10 changes: 10 additions & 0 deletions docs/Models/MachineToken.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Terminus\Models\MachineToken

### __construct
##### Description:
Object constructor

##### Parameters:
[object] $attributes Attributes of this model
[array] $options Options with which to configure this model

---

### delete
##### Description:
Deletes machine token
Expand Down

0 comments on commit 25945e8

Please sign in to comment.