homesteading 0.5.6 → 0.6.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 +4 -4
- data/.travis.yml +6 -1
- data/README.md +3 -3
- data/help/apps-create.md +4 -4
- data/help/apps-destroy.md +5 -5
- data/help/apps-info.md +1 -1
- data/help/apps-rename.md +2 -2
- data/help/apps-reroute.md +2 -2
- data/help/init.md +9 -9
- data/help/new.md +18 -18
- data/help/open.md +1 -1
- data/help/routes-push.md +1 -1
- data/help/routes.md +11 -11
- data/help/run.md +5 -5
- data/help/server-stop.md +1 -1
- data/help/server.md +10 -10
- data/help/update.md +10 -14
- data/help/version.md +1 -1
- data/lib/homesteading/commands/apps.rb +1 -1
- data/lib/homesteading/commands/init.rb +1 -0
- data/lib/homesteading/commands/new.rb +2 -1
- data/lib/homesteading/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3e4ac284ff3400db0f7407f3a4f367da08aa9656
|
|
4
|
+
data.tar.gz: d864acdb39e48c134fb344573e8ead6c16e46344
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6dda63678d6ac44f993c56b22dd0be6e6cc8e0d3a891b1a9f96a048d26c51691b3e586979fbf00f49de022481eba624619aeeae6702dc58f7b57f5af610e5e48
|
|
7
|
+
data.tar.gz: cf161f236d5189a1f457bd859082d744003a8e6d9c6da7906ca8e3083b6b67be4cbcc5493000e3ede7d8293897a7966e1ae6f625d97cb08c59dd762e325410dc
|
data/.travis.yml
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
language: ruby
|
|
2
2
|
rvm:
|
|
3
|
-
- 2.1.
|
|
3
|
+
- 2.1.5
|
|
4
|
+
notifications:
|
|
5
|
+
email: false
|
|
4
6
|
env:
|
|
5
7
|
secure: P/xMGPxQb2TkNGEvGcczPMiXtlq/T+5I9TMXsAQUTXsn8fdBx7sTcC7DG4HUgS3eqdTcUV2NNG9oyQdWDcYj99QDsambIHTwNDCc5iGWMPWTaThO8krbW2lJYHC3RWE21iGQEG5aGjGZ706rWoLxwKtaGQxCkGXsDkQ+aG1hBvE=
|
|
8
|
+
notifications:
|
|
9
|
+
slack:
|
|
10
|
+
secure: IiJp8CB8g7aAj1kzH7n5OvMe8woGhqPzBi7q1u4CLLaUqf1/7mg3+JB++o2wKXjt7rlCbwdikpbkwyQjyXxZcwEJBa6YfS71U5R2HJGA+pqk5agY+qlysQMjpBIFn976U1964kzAtr4C/aiuITYvnS+dCu7De+XSMtvorPjyur0=
|
data/README.md
CHANGED
|
@@ -12,15 +12,15 @@ See the [/help](https://github.com/homesteading/homesteading/tree/master/help) d
|
|
|
12
12
|
|
|
13
13
|
## Current Version
|
|
14
14
|
|
|
15
|
-
0.
|
|
15
|
+
0.6.1
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
## Code Status
|
|
19
19
|
|
|
20
|
-
[](https://travis-ci.org/homesteading/homesteading)
|
|
21
|
-
[](https://codeclimate.com/github/homesteading/homesteading)
|
|
22
20
|
[](http://badge.fury.io/rb/homesteading)
|
|
23
21
|
[](https://gemnasium.com/homesteading/homesteading)
|
|
22
|
+
[](https://travis-ci.org/homesteading/homesteading)
|
|
23
|
+
[](https://codeclimate.com/github/homesteading/homesteading)
|
|
24
24
|
|
|
25
25
|
|
|
26
26
|
## Requirements
|
data/help/apps-create.md
CHANGED
|
@@ -9,10 +9,10 @@ Usage: homesteading apps:create
|
|
|
9
9
|
|
|
10
10
|
Example:
|
|
11
11
|
|
|
12
|
-
$ homesteading apps:create --app note
|
|
13
|
-
* Cloning homesteading app from GitHub: note
|
|
12
|
+
$ homesteading apps:create --app publisher-note
|
|
13
|
+
* Cloning homesteading app from GitHub: publisher-note
|
|
14
14
|
|
|
15
15
|
Example:
|
|
16
16
|
|
|
17
|
-
$ homesteading apps:create --url git@github.com:homesteading/homesteading-note.git
|
|
18
|
-
* Cloning from: git@github.com:homesteading/homesteading-note.git
|
|
17
|
+
$ homesteading apps:create --url git@github.com:homesteading/homesteading-publisher-note.git
|
|
18
|
+
* Cloning from: git@github.com:homesteading/homesteading-publisher-note.git
|
data/help/apps-destroy.md
CHANGED
|
@@ -6,10 +6,10 @@ Usage: homesteading apps:destroy
|
|
|
6
6
|
|
|
7
7
|
Example:
|
|
8
8
|
|
|
9
|
-
$ homesteading apps:destory --app note
|
|
9
|
+
$ homesteading apps:destory --app publisher-note
|
|
10
10
|
! WARNING: Potentially Destructive Action
|
|
11
|
-
! This command will destroy note
|
|
12
|
-
! To proceed, type 'note' or re-run this command with '--confirm note'
|
|
11
|
+
! This command will destroy publisher-note
|
|
12
|
+
! To proceed, type 'note' or re-run this command with '--confirm publisher-note'
|
|
13
13
|
|
|
14
14
|
note
|
|
15
15
|
|
|
@@ -18,7 +18,7 @@ Example:
|
|
|
18
18
|
|
|
19
19
|
Example:
|
|
20
20
|
|
|
21
|
-
$ homesteading apps:destory --app note --confirm note
|
|
21
|
+
$ homesteading apps:destory --app note --confirm publisher-note
|
|
22
22
|
|
|
23
|
-
* Destroying note permananently...
|
|
23
|
+
* Destroying publisher-note permananently...
|
|
24
24
|
* ...done
|
data/help/apps-info.md
CHANGED
|
@@ -16,7 +16,7 @@ Example:
|
|
|
16
16
|
- hs:publisher
|
|
17
17
|
- hs:note
|
|
18
18
|
website: http://homesteading.io
|
|
19
|
-
repository: https://github.com/homesteading/homesteading-note
|
|
19
|
+
repository: https://github.com/homesteading/homesteading-publisher-note
|
|
20
20
|
logo: http://homesteading.io/logo.png
|
|
21
21
|
success_url: "/settings"
|
|
22
22
|
scripts:
|
data/help/apps-rename.md
CHANGED
data/help/apps-reroute.md
CHANGED
data/help/init.md
CHANGED
|
@@ -9,24 +9,24 @@ Example:
|
|
|
9
9
|
|
|
10
10
|
* Setting up all apps
|
|
11
11
|
|
|
12
|
-
* Setting up: article
|
|
12
|
+
* Setting up: publisher-article
|
|
13
13
|
* Copying database config file
|
|
14
14
|
cp config/database.example.yml config/database.yml
|
|
15
|
-
* Running postdeploy command on article:
|
|
15
|
+
* Running postdeploy command on publisher-article:
|
|
16
16
|
[...]
|
|
17
|
-
* Setup up complete for: article
|
|
17
|
+
* Setup up complete for: publisher-article
|
|
18
18
|
|
|
19
|
-
* Setting up: note
|
|
19
|
+
* Setting up: publisher-note
|
|
20
20
|
* Copying database config file
|
|
21
21
|
cp config/database.example.yml config/database.yml
|
|
22
|
-
* Running postdeploy command on note:
|
|
22
|
+
* Running postdeploy command on publisher-note:
|
|
23
23
|
[...]
|
|
24
|
-
* Setup up complete for: note
|
|
24
|
+
* Setup up complete for: publisher-note
|
|
25
25
|
|
|
26
|
-
* Setting up: photo
|
|
26
|
+
* Setting up: publisher-photo
|
|
27
27
|
* Copying database config file
|
|
28
28
|
cp config/database.example.yml config/database.yml
|
|
29
|
-
* Running postdeploy command on photo:
|
|
29
|
+
* Running postdeploy command on publisher-photo:
|
|
30
30
|
[...]
|
|
31
|
-
* Setup up complete for: photo
|
|
31
|
+
* Setup up complete for: publisher-photo
|
|
32
32
|
|
data/help/new.md
CHANGED
|
@@ -17,27 +17,27 @@ Example:
|
|
|
17
17
|
* Creating homesteading directory: my-site
|
|
18
18
|
* Cloning homesteading app from GitHub: hub
|
|
19
19
|
* Cloning homesteading app from GitHub: router-rack
|
|
20
|
-
* Cloning homesteading app from GitHub: article
|
|
21
|
-
* Cloning homesteading app from GitHub: bookmark
|
|
22
|
-
* Cloning homesteading app from GitHub: event
|
|
23
|
-
* Cloning homesteading app from GitHub: note
|
|
24
|
-
* Cloning homesteading app from GitHub: photo
|
|
25
|
-
* Cloning homesteading app from GitHub: sound
|
|
26
|
-
* Cloning homesteading app from GitHub: video
|
|
27
|
-
* Cloning homesteading app from GitHub: walk
|
|
28
|
-
* Cloning homesteading app from GitHub: weight
|
|
20
|
+
* Cloning homesteading app from GitHub: publisher-article
|
|
21
|
+
* Cloning homesteading app from GitHub: publisher-bookmark
|
|
22
|
+
* Cloning homesteading app from GitHub: publisher-event
|
|
23
|
+
* Cloning homesteading app from GitHub: publisher-note
|
|
24
|
+
* Cloning homesteading app from GitHub: publisher-photo
|
|
25
|
+
* Cloning homesteading app from GitHub: publisher-sound
|
|
26
|
+
* Cloning homesteading app from GitHub: publisher-video
|
|
27
|
+
* Cloning homesteading app from GitHub: publisher-walk
|
|
28
|
+
* Cloning homesteading app from GitHub: publisher-weight
|
|
29
29
|
|
|
30
30
|
* Setting up: hub
|
|
31
31
|
* Setting up: router-rack
|
|
32
|
-
* Setting up: article
|
|
33
|
-
* Setting up: bookmark
|
|
34
|
-
* Setting up: event
|
|
35
|
-
* Setting up: note
|
|
36
|
-
* Setting up: photo
|
|
37
|
-
* Setting up: sound
|
|
38
|
-
* Setting up: video
|
|
39
|
-
* Setting up: walk
|
|
40
|
-
* Setting up: weight
|
|
32
|
+
* Setting up: publisher-article
|
|
33
|
+
* Setting up: publisher-bookmark
|
|
34
|
+
* Setting up: publisher-event
|
|
35
|
+
* Setting up: publisher-note
|
|
36
|
+
* Setting up: publisher-photo
|
|
37
|
+
* Setting up: publisher-sound
|
|
38
|
+
* Setting up: publisher-video
|
|
39
|
+
* Setting up: publisher-walk
|
|
40
|
+
* Setting up: publisher-weight
|
|
41
41
|
|
|
42
42
|
* Next up, do this:
|
|
43
43
|
cd my-site
|
data/help/open.md
CHANGED
data/help/routes-push.md
CHANGED
data/help/routes.md
CHANGED
|
@@ -6,17 +6,17 @@ Example:
|
|
|
6
6
|
|
|
7
7
|
$ homesteading routes
|
|
8
8
|
|
|
9
|
-
* article : myprefix-article.herokuapp.com
|
|
10
|
-
* bookmark : myprefix-bookmark.herokuapp.com
|
|
11
|
-
* event : myprefix-event.herokuapp.com
|
|
12
|
-
* feed : myprefix-feed.herokuapp.com
|
|
13
|
-
* hub : myprefix-hub.herokuapp.com
|
|
14
|
-
* note : myprefix-note.herokuapp.com
|
|
15
|
-
* photo : myprefix-photo.herokuapp.com
|
|
16
|
-
* sound : myprefix-sound.herokuapp.com
|
|
17
|
-
* video : myprefix-video.herokuapp.com
|
|
18
|
-
* walk : myprefix-walk.herokuapp.com
|
|
19
|
-
* weight : myprefix-weight.herokuapp.com
|
|
9
|
+
* publisher-article : myprefix-article.herokuapp.com
|
|
10
|
+
* publisher-bookmark : myprefix-bookmark.herokuapp.com
|
|
11
|
+
* publisher-event : myprefix-event.herokuapp.com
|
|
12
|
+
* publisher-feed : myprefix-feed.herokuapp.com
|
|
13
|
+
* publisher-hub : myprefix-hub.herokuapp.com
|
|
14
|
+
* publisher-note : myprefix-note.herokuapp.com
|
|
15
|
+
* publisher-photo : myprefix-photo.herokuapp.com
|
|
16
|
+
* publisher-sound : myprefix-sound.herokuapp.com
|
|
17
|
+
* publisher-video : myprefix-video.herokuapp.com
|
|
18
|
+
* publisher-walk : myprefix-walk.herokuapp.com
|
|
19
|
+
* publisher-weight : myprefix-weight.herokuapp.com
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
Additional commands, type "homesteading help COMMAND" for more details:
|
data/help/run.md
CHANGED
|
@@ -4,9 +4,9 @@ Usage: homesteading run
|
|
|
4
4
|
|
|
5
5
|
Example:
|
|
6
6
|
|
|
7
|
-
$ homesteading run rake db:migrate --app note
|
|
7
|
+
$ homesteading run rake db:migrate --app publisher-note
|
|
8
8
|
|
|
9
|
-
* Running command on note:
|
|
9
|
+
* Running command on publisher-note:
|
|
10
10
|
rake db:migrate
|
|
11
11
|
|
|
12
12
|
== 20131005070716 CreatePosts: migrating ======================================
|
|
@@ -18,12 +18,12 @@ Example:
|
|
|
18
18
|
|
|
19
19
|
$ homesteading run rake db:migrate
|
|
20
20
|
|
|
21
|
-
* Running command on article:
|
|
21
|
+
* Running command on publisher-article:
|
|
22
22
|
rake db:migrate
|
|
23
23
|
[...]
|
|
24
|
-
* Running command on note:
|
|
24
|
+
* Running command on publisher-note:
|
|
25
25
|
rake db:migrate
|
|
26
26
|
[...]
|
|
27
|
-
* Running command on photo:
|
|
27
|
+
* Running command on publisher-photo:
|
|
28
28
|
rake db:migrate
|
|
29
29
|
[...]
|
data/help/server-stop.md
CHANGED
data/help/server.md
CHANGED
|
@@ -16,16 +16,16 @@ Example:
|
|
|
16
16
|
|
|
17
17
|
* Homesteading servers starting...
|
|
18
18
|
|
|
19
|
-
* Starting on port 3002 : article
|
|
20
|
-
* Starting on port 3003 : bookmark
|
|
21
|
-
* Starting on port 3004 : event
|
|
22
|
-
* Starting on port 3005 : feed
|
|
23
|
-
* Starting on port 3006 : note
|
|
24
|
-
* Starting on port 3007 : photo
|
|
25
|
-
* Starting on port 3009 : sound
|
|
26
|
-
* Starting on port 3010 : video
|
|
27
|
-
* Starting on port 3011 : walk
|
|
28
|
-
* Starting on port 3012 : weight
|
|
19
|
+
* Starting on port 3002 : publisher-article
|
|
20
|
+
* Starting on port 3003 : publisher-bookmark
|
|
21
|
+
* Starting on port 3004 : publisher-event
|
|
22
|
+
* Starting on port 3005 : publisher-feed
|
|
23
|
+
* Starting on port 3006 : publisher-note
|
|
24
|
+
* Starting on port 3007 : publisher-photo
|
|
25
|
+
* Starting on port 3009 : publisher-sound
|
|
26
|
+
* Starting on port 3010 : publisher-video
|
|
27
|
+
* Starting on port 3011 : publisher-walk
|
|
28
|
+
* Starting on port 3012 : publisher-weight
|
|
29
29
|
|
|
30
30
|
* To stop Homesteading servers:
|
|
31
31
|
ctrl-c
|
data/help/update.md
CHANGED
|
@@ -6,31 +6,27 @@ Example:
|
|
|
6
6
|
|
|
7
7
|
$ homesteading update
|
|
8
8
|
|
|
9
|
-
* Updating article...
|
|
9
|
+
* Updating publisher-article...
|
|
10
10
|
* ...done
|
|
11
|
-
* Updating bookmark...
|
|
11
|
+
* Updating publisher-bookmark...
|
|
12
12
|
* ...done
|
|
13
|
-
* Updating event...
|
|
13
|
+
* Updating publisher-event...
|
|
14
14
|
* ...done
|
|
15
|
-
* Updating feed...
|
|
15
|
+
* Updating subscriber-feed...
|
|
16
16
|
* ...done
|
|
17
|
-
* Updating
|
|
17
|
+
* Updating publisher-note...
|
|
18
18
|
* ...done
|
|
19
|
-
* Updating
|
|
20
|
-
* ...done
|
|
21
|
-
* Updating photo...
|
|
19
|
+
* Updating publisher-photo...
|
|
22
20
|
* ...done
|
|
23
21
|
* Updating router...
|
|
24
22
|
* ...done
|
|
25
|
-
* Updating sound...
|
|
26
|
-
* ...done
|
|
27
|
-
* Updating syndicator...
|
|
23
|
+
* Updating publisher-sound...
|
|
28
24
|
* ...done
|
|
29
|
-
* Updating video...
|
|
25
|
+
* Updating publisher-video...
|
|
30
26
|
* ...done
|
|
31
|
-
* Updating walk...
|
|
27
|
+
* Updating publisher-walk...
|
|
32
28
|
* ...done
|
|
33
|
-
* Updating weight...
|
|
29
|
+
* Updating publisher-weight...
|
|
34
30
|
* ...done
|
|
35
31
|
|
|
36
32
|
|
data/help/version.md
CHANGED
|
@@ -54,7 +54,7 @@ module Homesteading
|
|
|
54
54
|
puts "* This requires an '--app' or '--url'"
|
|
55
55
|
puts "* Example:"
|
|
56
56
|
puts " homesteading apps:create --app note"
|
|
57
|
-
puts " homesteading apps:create --url git@github.com:homesteading/homesteading-note.git"
|
|
57
|
+
puts " homesteading apps:create --url git@github.com:homesteading/homesteading-publisher-note.git"
|
|
58
58
|
puts
|
|
59
59
|
exit
|
|
60
60
|
end
|
|
@@ -5,7 +5,8 @@ module Homesteading
|
|
|
5
5
|
class New < Command
|
|
6
6
|
register "new"
|
|
7
7
|
|
|
8
|
-
PUBLISHER_APPS = ["article", "bookmark", "event", "note", "photo", "sound", "video", "walk", "weight"]
|
|
8
|
+
# PUBLISHER_APPS = ["article", "bookmark", "event", "note", "photo", "sound", "video", "walk", "weight"]
|
|
9
|
+
PUBLISHER_APPS = ["publisher-note"]
|
|
9
10
|
NONPUBLISHER_APPS = ["router-rack"] # TODO "hub", "syndicator"
|
|
10
11
|
|
|
11
12
|
def default
|
data/lib/homesteading/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: homesteading
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shane Becker
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2015-
|
|
12
|
+
date: 2015-03-21 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: git
|
|
@@ -119,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
119
119
|
version: '0'
|
|
120
120
|
requirements: []
|
|
121
121
|
rubyforge_project:
|
|
122
|
-
rubygems_version: 2.
|
|
122
|
+
rubygems_version: 2.4.5
|
|
123
123
|
signing_key:
|
|
124
124
|
specification_version: 4
|
|
125
125
|
summary: Client library and command-line tool to deploy and manage Homesteading apps
|
|
@@ -129,4 +129,3 @@ test_files:
|
|
|
129
129
|
- spec/homesteading_spec.rb
|
|
130
130
|
- spec/spec_helper.rb
|
|
131
131
|
- spec/support/test_command.rb
|
|
132
|
-
has_rdoc:
|