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 CHANGED
@@ -1,7 +1,7 @@
1
- ---
2
- SHA1:
3
- metadata.gz: b3b22c0ade1dd6e771d68b7f006e5e564a534ff7
4
- data.tar.gz: f796eecb84f2d3da35a2a00e2524b8ffdbb93152
5
- SHA512:
6
- metadata.gz: 31756b33ce51e8aad34121c71431460c901b8a4140e757f7ba0fd45210c15b7da8d3dc6741cdc8b9890ce6ff2035afcbd2caa691bdf1604d91007da870bbdd5c
7
- data.tar.gz: cc1d2b5ff38658d4d87cd64e5a2db24178375fd1628b34f2314eb1ffadab0ba252a906ad768ac9e33c0cc91bf665c8b5699f991390f03e02b8fafd6a93ce8a39
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
@@ -0,0 +1,19 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .DS_Store
6
+ coverage
7
+ InstalledFiles
8
+ lib/bundler/man
9
+ pkg
10
+ rdoc
11
+ spec/reports
12
+ test/tmp
13
+ test/version_tmp
14
+ tmp
15
+
16
+ # YARD artifacts
17
+ .yardoc
18
+ _yardoc
19
+ doc/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in homesteading.gemspec
4
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,17 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ homesteading (0.0.1)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ rake (10.4.0)
10
+
11
+ PLATFORMS
12
+ ruby
13
+
14
+ DEPENDENCIES
15
+ bundler (~> 1.7)
16
+ homesteading!
17
+ rake (~> 10.0)
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 &mdash; 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
- A personal publishing platform.
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
- gem install homesteading
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
- homesteading
39
+ ```bash
40
+ homesteading
41
+ ```
33
42
 
34
43
  You can alias `homesteading` to `hs` for shorter commands.
35
44
 
36
- alias hs="homesteading"
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. Get it running (see below)
48
- 3. Create your feature branch (`git checkout -b my-new-feature`)
49
- 4. Write your code and **specs**
50
- 5. Commit your changes (`git commit -am 'Add some feature'`)
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-tasks/issues).
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 Tasks is dedicated to the public domain
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 &mdash; CC0 1.0 Universal")
data/Rakefile CHANGED
@@ -1,9 +1,2 @@
1
- require "rubygems"
2
- require "hoe"
1
+ require "bundler/gem_tasks"
3
2
 
4
- Hoe.spec "homesteading" do
5
- developer("Shane Becker", "veganstraightedge@gmail.com")
6
-
7
- self.history_file = "History.md"
8
- self.readme_file = "README.md"
9
- end
data/bin/homesteading CHANGED
@@ -1,3 +1,30 @@
1
1
  #!/usr/bin/env ruby
2
+ require "homesteading/commands/help"
2
3
 
3
- puts "Homesteading..."
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
@@ -0,0 +1,3 @@
1
+ # TODO:
2
+
3
+ Usage: homesteading apps:create
@@ -0,0 +1,3 @@
1
+ # TODO:
2
+
3
+ Usage: homesteading apps:destroy
data/help/apps-info.md ADDED
@@ -0,0 +1,3 @@
1
+ # TODO:
2
+
3
+ Usage: homesteading apps:info
@@ -0,0 +1,3 @@
1
+ # TODO:
2
+
3
+ Usage: homesteading apps:rename
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
@@ -0,0 +1,7 @@
1
+ Creating a new Homesteading constellation?
2
+
3
+ homesteading help new
4
+
5
+ Starting up an existing Homesteading constellation?
6
+
7
+ homesteading help server
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
@@ -0,0 +1,3 @@
1
+ # TODO:
2
+
3
+ Usage: homesteading run
@@ -0,0 +1,3 @@
1
+ # TODO:
2
+
3
+ Usage: homesteading server:list
@@ -0,0 +1,3 @@
1
+ # TODO:
2
+
3
+ Usage: homesteading server:nonpublisher
@@ -0,0 +1,3 @@
1
+ # TODO:
2
+
3
+ Usage: homesteading server:publisher
@@ -0,0 +1,3 @@
1
+ # TODO:
2
+
3
+ Usage: homesteading server:stop
@@ -0,0 +1,3 @@
1
+ # TODO:
2
+
3
+ Usage: homesteading server:urls
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,2 @@
1
+ # TODO:
2
+
@@ -0,0 +1,2 @@
1
+ # TODO:
2
+
@@ -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,9 @@
1
+ Usage: homesteading version
2
+ homesteading -v
3
+
4
+ show homesteading client version
5
+
6
+ Example:
7
+
8
+ $ homesteading version
9
+ Homesteading 1.0.1, codename: Rooftop
@@ -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
@@ -1,3 +1,4 @@
1
- class Homesteading
2
- VERSION = '0.0.1'
1
+ require "homesteading/version"
2
+
3
+ module Homesteading
3
4
  end
@@ -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,10 @@
1
+ class Homesteading
2
+ class Run
3
+ class << self
4
+
5
+ def default(options=nil)
6
+ end
7
+
8
+ end
9
+ end
10
+ 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,18 @@
1
+ class Homesteading
2
+ class Update
3
+ class << self
4
+
5
+ def default(options=nil)
6
+ end
7
+
8
+ def nonpublisher(options=nil)
9
+ end
10
+
11
+ def publisher(options=nil)
12
+ end
13
+
14
+ def system(options=nil)
15
+ end
16
+ end
17
+ end
18
+ 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
@@ -0,0 +1,4 @@
1
+ module Homesteading
2
+ VERSION = "0.0.2"
3
+ CODENAME = "Rooftop"
4
+ 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.1
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
- date: 2013-03-30 00:00:00 Z
13
- dependencies:
14
- - !ruby/object:Gem::Dependency
15
- name: rdoc
16
- prerelease: false
17
- requirement: &id001 !ruby/object:Gem::Requirement
18
- requirements:
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
- requirement: &id002 !ruby/object:Gem::Requirement
28
- requirements:
29
- - - ~>
30
- - !ruby/object:Gem::Version
31
- version: "3.5"
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
- version_requirements: *id002
34
- description: A personal publishing platform.
35
- email:
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
- extra_rdoc_files:
42
- - Manifest.txt
43
- files:
44
- - History.md
45
- - Manifest.txt
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
- - test/test_homesteading.rb
51
- - .gemtest
52
- homepage: https://github.com/homesteading/homesteading
53
- licenses: []
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
- - --main
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
- - &id003
66
- - ">="
67
- - !ruby/object:Gem::Version
68
- version: "0"
69
- required_rubygems_version: !ruby/object:Gem::Requirement
70
- requirements:
71
- - *id003
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
- rubyforge_project: homesteading
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: A personal publishing platform.
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
@@ -1,6 +0,0 @@
1
- # 0.0.1 / 2013-03-29
2
-
3
- * 1 major enhancement
4
-
5
- * Birthday!
6
- * Just claiming the namespace
data/Manifest.txt DELETED
@@ -1,7 +0,0 @@
1
- History.md
2
- Manifest.txt
3
- README.md
4
- Rakefile
5
- bin/homesteading
6
- lib/homesteading.rb
7
- test/test_homesteading.rb
@@ -1,8 +0,0 @@
1
- require "test/unit"
2
- require "homesteading"
3
-
4
- class TestHomesteading < Test::Unit::TestCase
5
- def test_sanity
6
- puts "Hi!"
7
- end
8
- end