homesteading-tasks 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/.autotest ADDED
@@ -0,0 +1,21 @@
1
+ require 'autotest/restart'
2
+
3
+ # Autotest.add_hook :initialize do |at|
4
+ # at.extra_files << "../some/external/dependency.rb"
5
+ #
6
+ # at.libs << ":../some/external"
7
+ #
8
+ # at.add_exception 'vendor'
9
+ #
10
+ # at.add_mapping(/dependency.rb/) do |f, _|
11
+ # at.files_matching(/test_.*rb$/)
12
+ # end
13
+ #
14
+ # %w(TestA TestB).each do |klass|
15
+ # at.extra_class_map[klass] = "test/test_misc.rb"
16
+ # end
17
+ # end
18
+
19
+ # Autotest.add_hook :run_command do |at|
20
+ # system "rake build"
21
+ # end
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
+ * rake hs:server:start
data/Manifest.txt ADDED
@@ -0,0 +1,8 @@
1
+ .autotest
2
+ History.md
3
+ Manifest.txt
4
+ README.md
5
+ Rakefile
6
+ lib/homesteading_tasks.rb
7
+ lib/server.rake
8
+ test/test_homesteading_tasks.rb
data/README.md ADDED
@@ -0,0 +1,75 @@
1
+ # Homesteading Tasks
2
+
3
+ https://github.com/homesteading/homesteading-tasks
4
+
5
+
6
+ ## Description
7
+
8
+ A collection of rake tasks shared by [Homesteading](https://github.com/homesteading/homesteading) apps.
9
+
10
+
11
+ ## Current Version
12
+
13
+ 0.0.1
14
+
15
+
16
+ ## Requirements
17
+
18
+ - [rake](https://github.com/jimweirich/rake)
19
+ - [puma](http://puma.io "A Modern, Concurrent Web Server for Ruby - Puma")
20
+
21
+
22
+ ## Installation
23
+
24
+ Add this line to your application's Gemfile:
25
+
26
+ gem "homesteading-tasks"
27
+
28
+ And then execute:
29
+
30
+ bundle
31
+
32
+ Or install it yourself as:
33
+
34
+ gem install homesteading-tasks
35
+
36
+
37
+ ## Usage
38
+
39
+ Currently, one task:
40
+
41
+ rake hs:server:start
42
+
43
+ That will start `puma` on port `3000`.
44
+
45
+
46
+ ## Authors
47
+
48
+ * Shane Becker / [@veganstraightedge](https:github.com/veganstraightedge)
49
+
50
+
51
+ ## Contributions
52
+
53
+ 1. Fork it
54
+ 2. Get it running (see below)
55
+ 3. Create your feature branch (`git checkout -b my-new-feature`)
56
+ 4. Write your code and **specs**
57
+ 5. Commit your changes (`git commit -am 'Add some feature'`)
58
+ 6. Push to the branch (`git push origin my-new-feature`)
59
+ 7. Create new Pull Request
60
+
61
+ If you find bugs, have feature requests or questions, please
62
+ [file an issue](https://github.com/homesteading/homesteading-tasks/issues).
63
+
64
+
65
+ ## License
66
+
67
+ **PUBLIC DOMAIN**
68
+
69
+ Your heart is as free as the air you breathe. <br>
70
+ The ground you stand on is liberated territory.
71
+
72
+ In legal text, Homesteading Tasks is dedicated to the public domain
73
+ using Creative Commons -- CC0 1.0 Universal.
74
+
75
+ [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,11 @@
1
+ # -*- ruby -*-
2
+
3
+ require "rubygems"
4
+ require "hoe"
5
+
6
+ Hoe.spec "homesteading-tasks" do
7
+ developer("Shane Becker", "veganstraightedge@gmail.com")
8
+
9
+ self.history_file = "History.md"
10
+ self.readme_file = "README.md"
11
+ end
@@ -0,0 +1,3 @@
1
+ class HomesteadingTasks
2
+ VERSION = '0.0.1'
3
+ end
data/lib/server.rake ADDED
@@ -0,0 +1,9 @@
1
+ namespace :hs do
2
+ namespace :server do
3
+
4
+ task :start do
5
+ sh "puma -p 3000"
6
+ end
7
+
8
+ end
9
+ end
@@ -0,0 +1,8 @@
1
+ require "test/unit"
2
+ require "homesteading_tasks"
3
+
4
+ class TestHomesteadingTasks < Test::Unit::TestCase
5
+ def test_sanity
6
+ puts "Hi!"
7
+ end
8
+ end
metadata ADDED
@@ -0,0 +1,92 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: homesteading-tasks
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Shane Becker
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-03-30 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rdoc
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '3.10'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: '3.10'
30
+ - !ruby/object:Gem::Dependency
31
+ name: hoe
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: '3.5'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: '3.5'
46
+ description: A collection of rake tasks shared by [Homesteading](https://github.com/homesteading/homesteading)
47
+ apps.
48
+ email:
49
+ - veganstraightedge@gmail.com
50
+ executables: []
51
+ extensions: []
52
+ extra_rdoc_files:
53
+ - Manifest.txt
54
+ files:
55
+ - .autotest
56
+ - History.md
57
+ - Manifest.txt
58
+ - README.md
59
+ - Rakefile
60
+ - lib/homesteading_tasks.rb
61
+ - lib/server.rake
62
+ - test/test_homesteading_tasks.rb
63
+ - .gemtest
64
+ homepage: https://github.com/homesteading/homesteading-tasks
65
+ licenses: []
66
+ post_install_message:
67
+ rdoc_options:
68
+ - --main
69
+ - README.md
70
+ require_paths:
71
+ - lib
72
+ required_ruby_version: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ required_rubygems_version: !ruby/object:Gem::Requirement
79
+ none: false
80
+ requirements:
81
+ - - ! '>='
82
+ - !ruby/object:Gem::Version
83
+ version: '0'
84
+ requirements: []
85
+ rubyforge_project: homesteading-tasks
86
+ rubygems_version: 1.8.25
87
+ signing_key:
88
+ specification_version: 3
89
+ summary: A collection of rake tasks shared by [Homesteading](https://github.com/homesteading/homesteading)
90
+ apps.
91
+ test_files:
92
+ - test/test_homesteading_tasks.rb