homesteading 0.0.1 → 0.0.2
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 +7 -7
- data/.gitignore +19 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +17 -0
- data/LICENSE.md +9 -0
- data/README.md +21 -12
- data/Rakefile +1 -8
- data/bin/homesteading +28 -1
- data/help/README.md +14 -0
- data/help/apps-create.md +3 -0
- data/help/apps-destroy.md +3 -0
- data/help/apps-info.md +3 -0
- data/help/apps-rename.md +3 -0
- data/help/apps.md +28 -0
- data/help/blank.md +7 -0
- data/help/new.md +29 -0
- data/help/run.md +3 -0
- data/help/server-list.md +3 -0
- data/help/server-nonpublisher.md +3 -0
- data/help/server-publisher.md +3 -0
- data/help/server-stop.md +3 -0
- data/help/server-urls.md +3 -0
- data/help/server.md +27 -0
- data/help/update-nonpublisher.md +2 -0
- data/help/update-publisher.md +2 -0
- data/help/update-system.md +18 -0
- data/help/update.md +27 -0
- data/help/version.md +9 -0
- data/homesteading.gemspec +23 -0
- data/lib/homesteading.rb +3 -2
- data/lib/homesteading/commands/apps.rb +22 -0
- data/lib/homesteading/commands/help.rb +37 -0
- data/lib/homesteading/commands/new.rb +18 -0
- data/lib/homesteading/commands/run.rb +10 -0
- data/lib/homesteading/commands/server.rb +25 -0
- data/lib/homesteading/commands/update.rb +18 -0
- data/lib/homesteading/commands/version.rb +13 -0
- data/lib/homesteading/version.rb +4 -0
- metadata +88 -58
- data/.gemtest +0 -0
- data/History.md +0 -6
- data/Manifest.txt +0 -7
- data/test/test_homesteading.rb +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
5
|
-
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 65f34332df0b79a0f22c7438f17888604bc7cb57
|
4
|
+
data.tar.gz: 04017f8c42ebad38c3532ffb562bb542bba5597d
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 43515816ff0a39ccafda8571eb58bcac0a12eaafd09c5430026ba88115ca05840e3663ccbebcf1355c8ca7fcf41307e8428b3cd88fce358bd952b3695d796c21
|
7
|
+
data.tar.gz: a4589c83df3712043f78ff89c843fb1381926a447542d42fe74e663c05b0443eeb932da1938b5999444b33afee81b3712022c9c360c3f4bb07441b831e7e6b77
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
data/LICENSE.md
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
**PUBLIC DOMAIN**
|
2
|
+
|
3
|
+
Your heart is as free as the air you breathe. <br>
|
4
|
+
The ground you stand on is liberated territory.
|
5
|
+
|
6
|
+
In legal text, Homesteading is dedicated to the public domain
|
7
|
+
using Creative Commons -- CC0 1.0 Universal.
|
8
|
+
|
9
|
+
[http://creativecommons.org/publicdomain/zero/1.0](http://creativecommons.org/publicdomain/zero/1.0 "Creative Commons — CC0 1.0 Universal")
|
data/README.md
CHANGED
@@ -5,7 +5,9 @@ https://github.com/homesteading/homesteading
|
|
5
5
|
|
6
6
|
## Description
|
7
7
|
|
8
|
-
|
8
|
+
The Homesteading CLI is used to manage Homesteading apps from the command line.
|
9
|
+
|
10
|
+
See the [/help](https://github.com/homesteading/homesteading/tree/master/help) directory for more.
|
9
11
|
|
10
12
|
|
11
13
|
## Current Version
|
@@ -17,23 +19,32 @@ A personal publishing platform.
|
|
17
19
|
|
18
20
|
- [ruby](http://www.ruby-lang.org/en/ "Ruby Programming Language")
|
19
21
|
- [rubygems](https://rubygems.org)
|
22
|
+
- [bundler](http://bundler.io)
|
20
23
|
- [rake](https://github.com/jimweirich/rake)
|
21
24
|
|
22
25
|
|
23
26
|
## Installation
|
24
27
|
|
25
|
-
|
28
|
+
```ruby
|
29
|
+
gem install homesteading
|
30
|
+
```
|
26
31
|
|
27
32
|
|
28
33
|
## Usage
|
29
34
|
|
35
|
+
**TODO**
|
36
|
+
|
30
37
|
Currently, only one command:
|
31
38
|
|
32
|
-
|
39
|
+
```bash
|
40
|
+
homesteading
|
41
|
+
```
|
33
42
|
|
34
43
|
You can alias `homesteading` to `hs` for shorter commands.
|
35
44
|
|
36
|
-
|
45
|
+
```bash
|
46
|
+
alias hs="homesteading"
|
47
|
+
```
|
37
48
|
|
38
49
|
|
39
50
|
## Authors
|
@@ -44,15 +55,13 @@ You can alias `homesteading` to `hs` for shorter commands.
|
|
44
55
|
## Contributions
|
45
56
|
|
46
57
|
1. Fork it
|
47
|
-
2.
|
48
|
-
3.
|
49
|
-
4.
|
50
|
-
5.
|
51
|
-
6. Push to the branch (`git push origin my-new-feature`)
|
52
|
-
7. Create new Pull Request
|
58
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
59
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
60
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
61
|
+
5. Create new Pull Request
|
53
62
|
|
54
63
|
If you find bugs, have feature requests or questions, please
|
55
|
-
[file an issue](https://github.com/homesteading/homesteading
|
64
|
+
[file an issue](https://github.com/homesteading/homesteading/issues).
|
56
65
|
|
57
66
|
|
58
67
|
## License
|
@@ -62,7 +71,7 @@ If you find bugs, have feature requests or questions, please
|
|
62
71
|
Your heart is as free as the air you breathe. <br>
|
63
72
|
The ground you stand on is liberated territory.
|
64
73
|
|
65
|
-
In legal text, Homesteading
|
74
|
+
In legal text, Homesteading is dedicated to the public domain
|
66
75
|
using Creative Commons -- CC0 1.0 Universal.
|
67
76
|
|
68
77
|
[http://creativecommons.org/publicdomain/zero/1.0](http://creativecommons.org/publicdomain/zero/1.0 "Creative Commons — CC0 1.0 Universal")
|
data/Rakefile
CHANGED
data/bin/homesteading
CHANGED
@@ -1,3 +1,30 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
require "homesteading/commands/help"
|
2
3
|
|
3
|
-
|
4
|
+
if ARGV.empty?
|
5
|
+
name_space = "Help"
|
6
|
+
task = "default"
|
7
|
+
Homesteading::Help.print("blank")
|
8
|
+
else
|
9
|
+
# special case for `hs -v` alias for `hs version`
|
10
|
+
if ARGV.first.match(/^\s*-[vV]\s*$/)
|
11
|
+
name_space = "Version"
|
12
|
+
task = "default"
|
13
|
+
else
|
14
|
+
name_spaced_task = ARGV.shift.match(/^(\w+)(:*)(\w*)$/)
|
15
|
+
name_space = name_spaced_task[1].capitalize
|
16
|
+
|
17
|
+
if name_spaced_task[2] == ":"
|
18
|
+
task = name_spaced_task[3]
|
19
|
+
else
|
20
|
+
task = "default"
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
require "homesteading/commands/#{name_space.downcase}"
|
26
|
+
if ARGV.empty?
|
27
|
+
Homesteading.const_get(name_space).send(task.to_sym)
|
28
|
+
else
|
29
|
+
Homesteading.const_get(name_space).send(task.to_sym, ARGV)
|
30
|
+
end
|
data/help/README.md
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
Usage: homesteading COMMAND [--app APP] [command-specific-options]
|
2
|
+
|
3
|
+
Primary help topics, type "homesteading help TOPIC" for more details:
|
4
|
+
|
5
|
+
* new : create a new constellation of homesteading apps
|
6
|
+
* apps : manage constellation of apps (create, destroy, list, update)
|
7
|
+
* run : run one-off commands (console, rake)
|
8
|
+
* server : run constellation of apps (start, stop)
|
9
|
+
|
10
|
+
Additional help topics:
|
11
|
+
|
12
|
+
* help : list commands and display help
|
13
|
+
* version : display version
|
14
|
+
* update : update constellation of apps or this homesteading client
|
data/help/apps-create.md
ADDED
data/help/apps-info.md
ADDED
data/help/apps-rename.md
ADDED
data/help/apps.md
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
Usage: homesteading apps
|
2
|
+
|
3
|
+
list your installed homesteading apps
|
4
|
+
|
5
|
+
* -n, --nonpublisher : list running homesteading non-publisher apps (hub, router, etc)
|
6
|
+
* -p, --publisher : list running homesteading publisher apps (note, photo, etc)
|
7
|
+
|
8
|
+
Example:
|
9
|
+
|
10
|
+
$ homesteading apps
|
11
|
+
=== Publisher Apps
|
12
|
+
article
|
13
|
+
note
|
14
|
+
photo
|
15
|
+
video
|
16
|
+
|
17
|
+
=== Non-Publisher Apps
|
18
|
+
hub
|
19
|
+
router
|
20
|
+
syndicator
|
21
|
+
|
22
|
+
Additional commands, type "homesteading help COMMAND" for more details:
|
23
|
+
|
24
|
+
* apps:create --type HS_APP : create a new app from @homesteading on GitHub
|
25
|
+
* apps:create --url URL : create a new app from a URL
|
26
|
+
* apps:destroy --app APP : permanently destroy an app
|
27
|
+
* apps:info --app APP : show detailed app information (from app.json)
|
28
|
+
* apps:rename NEWNAME --app APP : rename the app
|
data/help/blank.md
ADDED
data/help/new.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# TODO:
|
2
|
+
|
3
|
+
Usage: homesteading new /path/to/constellation [options]
|
4
|
+
|
5
|
+
create a constellation of homesteading apps
|
6
|
+
|
7
|
+
Example:
|
8
|
+
|
9
|
+
$ homesteading new sbbme
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
---
|
14
|
+
|
15
|
+
TODO
|
16
|
+
|
17
|
+
-t, --type APP_NAME_FROM_GITHUB
|
18
|
+
-u, --url URL_OF_HS_APP
|
19
|
+
-e, --except APPS_TO_SKIP
|
20
|
+
-o, --only APPS_TO_CREATE
|
21
|
+
|
22
|
+
-f, [--force] # Overwrite apps that already exist
|
23
|
+
-p, [--pretend] # Run but do not make any changes
|
24
|
+
-q, [--quiet] # Suppress status output
|
25
|
+
-s, [--skip] # Skip apps that already exist
|
26
|
+
|
27
|
+
Example:
|
28
|
+
|
29
|
+
homesteading new --app note
|
data/help/run.md
ADDED
data/help/server-list.md
ADDED
data/help/server-stop.md
ADDED
data/help/server-urls.md
ADDED
data/help/server.md
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
Usage: homesteading server
|
2
|
+
|
3
|
+
start a server for constellation of homesteading apps
|
4
|
+
|
5
|
+
* -p, --port # run homesteading site on a specific port (default: 3000)
|
6
|
+
|
7
|
+
Example:
|
8
|
+
|
9
|
+
$ homesteading server
|
10
|
+
Homesteading starting...
|
11
|
+
|
12
|
+
* Homesteading: 1.0.1, codename: Rooftop
|
13
|
+
* Puma: 2.10.2 (ruby 2.1.5-p273), codename: Robots on Comets
|
14
|
+
* Ruby: 2.1.5p273 (2014-11-13 revision 48405) [x86_64-darwin14.0]
|
15
|
+
* Environment: development
|
16
|
+
* Running on: http://0.0.0.0:3000
|
17
|
+
|
18
|
+
Use Ctrl-C to stop
|
19
|
+
|
20
|
+
|
21
|
+
Additional commands, type "homesteading help COMMAND" for more details:
|
22
|
+
|
23
|
+
* server:list # list the currently running homesteading apps
|
24
|
+
* server:nonpublisher # start a only non-publisher apps
|
25
|
+
* server:publisher # start a only publisher apps
|
26
|
+
* server:stop [--app APP] # stop a constellation or a specific app
|
27
|
+
* server:urls [--app APP] # list the urls of running apps
|
@@ -0,0 +1,18 @@
|
|
1
|
+
Usage: homesteading update:system
|
2
|
+
|
3
|
+
update the homesteading client
|
4
|
+
|
5
|
+
Example:
|
6
|
+
|
7
|
+
$ homesteading update:system
|
8
|
+
Updating... done, 1.0.0 updated to 1.0.3
|
9
|
+
|
10
|
+
|
11
|
+
Usage: homesteading update:system --beta
|
12
|
+
|
13
|
+
update to the latest beta client
|
14
|
+
|
15
|
+
Example:
|
16
|
+
|
17
|
+
$ homesteading update:system --beta
|
18
|
+
Updating... done, v2.3.1 updated to v2.3.4.pre
|
data/help/update.md
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
Usage: homesteading update
|
2
|
+
|
3
|
+
update a constellation of homesteading apps
|
4
|
+
|
5
|
+
Example:
|
6
|
+
|
7
|
+
$ homesteading update
|
8
|
+
Updating article... done.
|
9
|
+
Updating bookmark... done.
|
10
|
+
Updating event... done.
|
11
|
+
Updating feed... done.
|
12
|
+
Updating hub... done.
|
13
|
+
Updating note... done.
|
14
|
+
Updating photo... done.
|
15
|
+
Updating router... done.
|
16
|
+
Updating sound... done.
|
17
|
+
Updating syndicator... done.
|
18
|
+
Updating video... done.
|
19
|
+
Updating walk... done.
|
20
|
+
Updating weight... done.
|
21
|
+
|
22
|
+
|
23
|
+
Additional commands, type "homesteading help COMMAND" for more details:
|
24
|
+
|
25
|
+
* update:nonpublisher : update only non-publisher apps
|
26
|
+
* update:publisher : update only publisher apps
|
27
|
+
* update:system : update the homesteading client
|
data/help/version.md
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "homesteading/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "homesteading"
|
8
|
+
spec.version = Homesteading::VERSION
|
9
|
+
spec.authors = ["Shane Becker"]
|
10
|
+
spec.email = ["veganstraightedge@gmail.com"]
|
11
|
+
spec.summary = "Client library and command-line tool to deploy and manage Homesteading apps"
|
12
|
+
spec.description = ""
|
13
|
+
spec.homepage = "http://homesteading.io"
|
14
|
+
spec.license = "Public Domain, CC0"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.7"
|
22
|
+
spec.add_development_dependency "rake", "~> 10.4"
|
23
|
+
end
|
data/lib/homesteading.rb
CHANGED
@@ -0,0 +1,22 @@
|
|
1
|
+
class Homesteading
|
2
|
+
class Apps
|
3
|
+
class << self
|
4
|
+
|
5
|
+
def default(options=nil)
|
6
|
+
end
|
7
|
+
|
8
|
+
def create(options=nil)
|
9
|
+
end
|
10
|
+
|
11
|
+
def destroy(options=nil)
|
12
|
+
end
|
13
|
+
|
14
|
+
def info(options=nil)
|
15
|
+
end
|
16
|
+
|
17
|
+
def rename(options=nil)
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
class Homesteading
|
2
|
+
class Help
|
3
|
+
class << self
|
4
|
+
DEFAULT_HELP_DOC = "README"
|
5
|
+
|
6
|
+
def default(options=nil)
|
7
|
+
if options.nil?
|
8
|
+
help_doc_path = DEFAULT_HELP_DOC
|
9
|
+
elsif options.first.match(/:/)
|
10
|
+
first, last = options.first.split(":")
|
11
|
+
help_doc_path = first + "-" + last
|
12
|
+
else
|
13
|
+
help_doc_path = options.first
|
14
|
+
end
|
15
|
+
|
16
|
+
print(help_doc_path)
|
17
|
+
end
|
18
|
+
|
19
|
+
def print(path)
|
20
|
+
# TODO better way?
|
21
|
+
help_dir = File.expand_path("../../../../help/", __FILE__)
|
22
|
+
file = "#{help_dir}/#{path}.md"
|
23
|
+
|
24
|
+
puts
|
25
|
+
unless File.exist?(file)
|
26
|
+
file = "#{help_dir}/#{DEFAULT_HELP_DOC}.md"
|
27
|
+
puts "Unknown command. No help docs about that."
|
28
|
+
puts
|
29
|
+
end
|
30
|
+
|
31
|
+
puts File.read(file)
|
32
|
+
puts
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
class Homesteading
|
2
|
+
class New
|
3
|
+
class << self
|
4
|
+
PUBLISHER_APPS = ["article", "bookmark", "event", "note", "photo", "sound", "video", "walk", "weight"]
|
5
|
+
NONPUBLISHER_APPS = ["hub", "router-rack"] # TODO "syndicator"
|
6
|
+
|
7
|
+
def default(options=nil)
|
8
|
+
constellation_dir = options.first
|
9
|
+
system("mkdir -p #{constellation_dir}")
|
10
|
+
|
11
|
+
[NONPUBLISHER_APPS, PUBLISHER_APPS].flatten.each do |app|
|
12
|
+
system("cd #{constellation_dir} && git clone git@github.com:homesteading/homesteading-#{app}.git")
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
class Homesteading
|
2
|
+
class Server
|
3
|
+
class << self
|
4
|
+
|
5
|
+
def default(options=nil)
|
6
|
+
end
|
7
|
+
|
8
|
+
def list(options=nil)
|
9
|
+
end
|
10
|
+
|
11
|
+
def nonpublisher(options=nil)
|
12
|
+
end
|
13
|
+
|
14
|
+
def publisher(options=nil)
|
15
|
+
end
|
16
|
+
|
17
|
+
def stop(options=nil)
|
18
|
+
end
|
19
|
+
|
20
|
+
def urls(options=nil)
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
class Homesteading
|
2
|
+
class Version
|
3
|
+
class << self
|
4
|
+
|
5
|
+
def default(options=nil)
|
6
|
+
# TODO load in *actual* VERSION and CODENAME from homesteading/version
|
7
|
+
# puts "Homesteading #{Homesteading::VERSION}, codename: #{Homesteading::CODENAME}"
|
8
|
+
puts "Homesteading 0.0.1, codename: Rooftop"
|
9
|
+
end
|
10
|
+
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
CHANGED
@@ -1,80 +1,110 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: homesteading
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
|
-
authors:
|
6
|
+
authors:
|
7
7
|
- Shane Becker
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
version: "3.10"
|
11
|
+
date: 2014-12-01 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.7'
|
22
20
|
type: :development
|
23
|
-
version_requirements: *id001
|
24
|
-
- !ruby/object:Gem::Dependency
|
25
|
-
name: hoe
|
26
21
|
prerelease: false
|
27
|
-
|
28
|
-
requirements:
|
29
|
-
- - ~>
|
30
|
-
- !ruby/object:Gem::Version
|
31
|
-
version:
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.7'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.4'
|
32
34
|
type: :development
|
33
|
-
|
34
|
-
|
35
|
-
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.4'
|
41
|
+
description: ''
|
42
|
+
email:
|
36
43
|
- veganstraightedge@gmail.com
|
37
|
-
executables:
|
44
|
+
executables:
|
38
45
|
- homesteading
|
39
46
|
extensions: []
|
40
|
-
|
41
|
-
|
42
|
-
-
|
43
|
-
|
44
|
-
-
|
45
|
-
-
|
47
|
+
extra_rdoc_files: []
|
48
|
+
files:
|
49
|
+
- ".gitignore"
|
50
|
+
- Gemfile
|
51
|
+
- Gemfile.lock
|
52
|
+
- LICENSE.md
|
46
53
|
- README.md
|
47
54
|
- Rakefile
|
48
55
|
- bin/homesteading
|
56
|
+
- help/README.md
|
57
|
+
- help/apps-create.md
|
58
|
+
- help/apps-destroy.md
|
59
|
+
- help/apps-info.md
|
60
|
+
- help/apps-rename.md
|
61
|
+
- help/apps.md
|
62
|
+
- help/blank.md
|
63
|
+
- help/new.md
|
64
|
+
- help/run.md
|
65
|
+
- help/server-list.md
|
66
|
+
- help/server-nonpublisher.md
|
67
|
+
- help/server-publisher.md
|
68
|
+
- help/server-stop.md
|
69
|
+
- help/server-urls.md
|
70
|
+
- help/server.md
|
71
|
+
- help/update-nonpublisher.md
|
72
|
+
- help/update-publisher.md
|
73
|
+
- help/update-system.md
|
74
|
+
- help/update.md
|
75
|
+
- help/version.md
|
76
|
+
- homesteading.gemspec
|
49
77
|
- lib/homesteading.rb
|
50
|
-
-
|
51
|
-
- .
|
52
|
-
|
53
|
-
|
54
|
-
|
78
|
+
- lib/homesteading/commands/apps.rb
|
79
|
+
- lib/homesteading/commands/help.rb
|
80
|
+
- lib/homesteading/commands/new.rb
|
81
|
+
- lib/homesteading/commands/run.rb
|
82
|
+
- lib/homesteading/commands/server.rb
|
83
|
+
- lib/homesteading/commands/update.rb
|
84
|
+
- lib/homesteading/commands/version.rb
|
85
|
+
- lib/homesteading/version.rb
|
86
|
+
homepage: http://homesteading.io
|
87
|
+
licenses:
|
88
|
+
- Public Domain, CC0
|
55
89
|
metadata: {}
|
56
|
-
|
57
90
|
post_install_message:
|
58
|
-
rdoc_options:
|
59
|
-
|
60
|
-
- README.md
|
61
|
-
require_paths:
|
91
|
+
rdoc_options: []
|
92
|
+
require_paths:
|
62
93
|
- lib
|
63
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
64
|
-
requirements:
|
65
|
-
-
|
66
|
-
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
94
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
95
|
+
requirements:
|
96
|
+
- - ">="
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '0'
|
99
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
72
104
|
requirements: []
|
73
|
-
|
74
|
-
|
75
|
-
rubygems_version: 2.0.3
|
105
|
+
rubyforge_project:
|
106
|
+
rubygems_version: 2.2.2
|
76
107
|
signing_key:
|
77
108
|
specification_version: 4
|
78
|
-
summary:
|
79
|
-
test_files:
|
80
|
-
- test/test_homesteading.rb
|
109
|
+
summary: Client library and command-line tool to deploy and manage Homesteading apps
|
110
|
+
test_files: []
|
data/.gemtest
DELETED
File without changes
|
data/History.md
DELETED
data/Manifest.txt
DELETED