homesteading 0.0.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 +7 -0
- data/.gemtest +0 -0
- data/History.md +6 -0
- data/Manifest.txt +7 -0
- data/README.md +68 -0
- data/Rakefile +9 -0
- data/bin/homesteading +3 -0
- data/lib/homesteading.rb +3 -0
- data/test/test_homesteading.rb +8 -0
- metadata +80 -0
checksums.yaml
ADDED
|
@@ -0,0 +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
|
data/.gemtest
ADDED
|
File without changes
|
data/History.md
ADDED
data/Manifest.txt
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# Homesteading
|
|
2
|
+
|
|
3
|
+
https://github.com/homesteading/homesteading
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
## Description
|
|
7
|
+
|
|
8
|
+
A personal publishing platform.
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
## Current Version
|
|
12
|
+
|
|
13
|
+
0.0.1
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## Requirements
|
|
17
|
+
|
|
18
|
+
- [ruby](http://www.ruby-lang.org/en/ "Ruby Programming Language")
|
|
19
|
+
- [rubygems](https://rubygems.org)
|
|
20
|
+
- [rake](https://github.com/jimweirich/rake)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
## Installation
|
|
24
|
+
|
|
25
|
+
gem install homesteading
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
## Usage
|
|
29
|
+
|
|
30
|
+
Currently, only one command:
|
|
31
|
+
|
|
32
|
+
homesteading
|
|
33
|
+
|
|
34
|
+
You can alias `homesteading` to `hs` for shorter commands.
|
|
35
|
+
|
|
36
|
+
alias hs="homesteading"
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
## Authors
|
|
40
|
+
|
|
41
|
+
* Shane Becker / [@veganstraightedge](https:github.com/veganstraightedge)
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
## Contributions
|
|
45
|
+
|
|
46
|
+
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
|
|
53
|
+
|
|
54
|
+
If you find bugs, have feature requests or questions, please
|
|
55
|
+
[file an issue](https://github.com/homesteading/homesteading-tasks/issues).
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
## License
|
|
59
|
+
|
|
60
|
+
**PUBLIC DOMAIN**
|
|
61
|
+
|
|
62
|
+
Your heart is as free as the air you breathe. <br>
|
|
63
|
+
The ground you stand on is liberated territory.
|
|
64
|
+
|
|
65
|
+
In legal text, Homesteading Tasks is dedicated to the public domain
|
|
66
|
+
using Creative Commons -- CC0 1.0 Universal.
|
|
67
|
+
|
|
68
|
+
[http://creativecommons.org/publicdomain/zero/1.0](http://creativecommons.org/publicdomain/zero/1.0 "Creative Commons — CC0 1.0 Universal")
|
data/Rakefile
ADDED
data/bin/homesteading
ADDED
data/lib/homesteading.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: homesteading
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Shane Becker
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
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"
|
|
22
|
+
type: :development
|
|
23
|
+
version_requirements: *id001
|
|
24
|
+
- !ruby/object:Gem::Dependency
|
|
25
|
+
name: hoe
|
|
26
|
+
prerelease: false
|
|
27
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
28
|
+
requirements:
|
|
29
|
+
- - ~>
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: "3.5"
|
|
32
|
+
type: :development
|
|
33
|
+
version_requirements: *id002
|
|
34
|
+
description: A personal publishing platform.
|
|
35
|
+
email:
|
|
36
|
+
- veganstraightedge@gmail.com
|
|
37
|
+
executables:
|
|
38
|
+
- homesteading
|
|
39
|
+
extensions: []
|
|
40
|
+
|
|
41
|
+
extra_rdoc_files:
|
|
42
|
+
- Manifest.txt
|
|
43
|
+
files:
|
|
44
|
+
- History.md
|
|
45
|
+
- Manifest.txt
|
|
46
|
+
- README.md
|
|
47
|
+
- Rakefile
|
|
48
|
+
- bin/homesteading
|
|
49
|
+
- lib/homesteading.rb
|
|
50
|
+
- test/test_homesteading.rb
|
|
51
|
+
- .gemtest
|
|
52
|
+
homepage: https://github.com/homesteading/homesteading
|
|
53
|
+
licenses: []
|
|
54
|
+
|
|
55
|
+
metadata: {}
|
|
56
|
+
|
|
57
|
+
post_install_message:
|
|
58
|
+
rdoc_options:
|
|
59
|
+
- --main
|
|
60
|
+
- README.md
|
|
61
|
+
require_paths:
|
|
62
|
+
- 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
|
|
72
|
+
requirements: []
|
|
73
|
+
|
|
74
|
+
rubyforge_project: homesteading
|
|
75
|
+
rubygems_version: 2.0.3
|
|
76
|
+
signing_key:
|
|
77
|
+
specification_version: 4
|
|
78
|
+
summary: A personal publishing platform.
|
|
79
|
+
test_files:
|
|
80
|
+
- test/test_homesteading.rb
|