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 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
@@ -0,0 +1,6 @@
1
+ # 0.0.1 / 2013-03-29
2
+
3
+ * 1 major enhancement
4
+
5
+ * Birthday!
6
+ * Just claiming the namespace
data/Manifest.txt ADDED
@@ -0,0 +1,7 @@
1
+ History.md
2
+ Manifest.txt
3
+ README.md
4
+ Rakefile
5
+ bin/homesteading
6
+ lib/homesteading.rb
7
+ test/test_homesteading.rb
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 &mdash; CC0 1.0 Universal")
data/Rakefile ADDED
@@ -0,0 +1,9 @@
1
+ require "rubygems"
2
+ require "hoe"
3
+
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 ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ puts "Homesteading..."
@@ -0,0 +1,3 @@
1
+ class Homesteading
2
+ VERSION = '0.0.1'
3
+ end
@@ -0,0 +1,8 @@
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
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