title |
---|
Appendix - Hello, Hoe! Sample Sources |
Full source code listings for the hellohoe
gem:
| README.txt
| History.txt
| Manifest.txt
| Rakefile
|
\---lib/
hellohoe.rb
= hellohoe
* https://github.com/planetruby/hellohoe
== DESCRIPTION:
Sample on how to use Hoe Rake tasks to build, package and publish gems.
== LICENSE:
The hellohoe sources are dedicated to the public domain. Use it as you please with no restrictions whatsoever.
=== 0.1 / 2018-03-05
* Everything is new. First release.
History.txt
Manifest.txt
README.txt
Rakefile
lib/hellohoe.rb
require 'hoe'
require './lib/hellohoe.rb'
Hoe.spec 'hellohoe' do
self.version = HelloHoe::VERSION
self.author = 'Gerald Bauer'
self.email = '[email protected]'
end
class HelloHoe
VERSION = '0.3'
# your code here
end