hybook 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.
data/History.md ADDED
@@ -0,0 +1,3 @@
1
+ ### 0.0.1 / 2014-02-16
2
+
3
+ * Everything is new. First release.
data/Manifest.txt ADDED
@@ -0,0 +1,6 @@
1
+ History.md
2
+ Manifest.txt
3
+ README.md
4
+ Rakefile
5
+ lib/hybook.rb
6
+ lib/hybook/version.rb
data/README.md ADDED
@@ -0,0 +1,26 @@
1
+ # hybook
2
+
3
+ hybook gem - hypertext book generator
4
+
5
+ * home :: [github.com/rubylibs/hybook](https://github.com/rubylibs/hybook)
6
+ * bugs :: [github.com/rubylibs/hybook/issues](https://github.com/rubylibs/hybook/issues)
7
+ * gem :: [rubygems.org/gems/hybook](https://rubygems.org/gems/hybook)
8
+ * rdoc :: [rubydoc.info/gems/hybook](http://rubydoc.info/gems/hybook)
9
+
10
+ ## Usage
11
+
12
+ TBD
13
+
14
+ ## Alternatives
15
+
16
+ ### EPub, Mobi Kindle Book Generator
17
+
18
+ - [Kitabu](https://github.com/fnando/kitabu)
19
+ - [Bookshop](https://github.com/blueheadpublishing/bookshop)
20
+
21
+
22
+
23
+ ## License
24
+
25
+ The `hybook` scripts are dedicated to the public domain.
26
+ Use it as you please with no restrictions whatsoever.
data/Rakefile ADDED
@@ -0,0 +1,27 @@
1
+ require 'hoe'
2
+ require './lib/hybook/version.rb'
3
+
4
+ Hoe.spec 'hybook' do
5
+
6
+ self.version = HyBook::VERSION
7
+
8
+ self.summary = 'hybook - hypertext boook generator'
9
+ self.description = summary
10
+
11
+ self.urls = ['https://github.com/hybook/hybook']
12
+
13
+ self.author = 'Gerald Bauer'
14
+ self.email = 'webslideshow@googlegroups.com'
15
+
16
+ # switch extension to .markdown for gihub formatting
17
+ self.readme_file = 'README.md'
18
+ self.history_file = 'History.md'
19
+
20
+ self.licenses = ['Public Domain']
21
+
22
+ self.spec_extras = {
23
+ :required_ruby_version => '>= 1.9.2'
24
+ }
25
+
26
+
27
+ end
@@ -0,0 +1,6 @@
1
+
2
+ module HyBook
3
+ VERSION = '0.0.1'
4
+ end
5
+
6
+
data/lib/hybook.rb ADDED
@@ -0,0 +1,20 @@
1
+
2
+
3
+ require 'hybook/version' # let it always go first
4
+
5
+
6
+ module HyBook
7
+
8
+ def self.banner
9
+ "hybook #{VERSION} on Ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]"
10
+ end
11
+
12
+ def self.root
13
+ "#{File.expand_path( File.dirname(File.dirname(__FILE__)) )}"
14
+ end
15
+
16
+ end # module HyBook
17
+
18
+
19
+ puts HyBook.banner # say hello
20
+
metadata ADDED
@@ -0,0 +1,78 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hybook
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Gerald Bauer
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-02-16 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rdoc
16
+ requirement: &21243936 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '4.0'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: *21243936
25
+ - !ruby/object:Gem::Dependency
26
+ name: hoe
27
+ requirement: &21243576 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ~>
31
+ - !ruby/object:Gem::Version
32
+ version: '3.7'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: *21243576
36
+ description: hybook - hypertext boook generator
37
+ email: webslideshow@googlegroups.com
38
+ executables: []
39
+ extensions: []
40
+ extra_rdoc_files:
41
+ - History.md
42
+ - Manifest.txt
43
+ - README.md
44
+ files:
45
+ - History.md
46
+ - Manifest.txt
47
+ - README.md
48
+ - Rakefile
49
+ - lib/hybook.rb
50
+ - lib/hybook/version.rb
51
+ homepage: https://github.com/hybook/hybook
52
+ licenses:
53
+ - Public Domain
54
+ post_install_message:
55
+ rdoc_options:
56
+ - --main
57
+ - README.md
58
+ require_paths:
59
+ - lib
60
+ required_ruby_version: !ruby/object:Gem::Requirement
61
+ none: false
62
+ requirements:
63
+ - - ! '>='
64
+ - !ruby/object:Gem::Version
65
+ version: 1.9.2
66
+ required_rubygems_version: !ruby/object:Gem::Requirement
67
+ none: false
68
+ requirements:
69
+ - - ! '>='
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ requirements: []
73
+ rubyforge_project: hybook
74
+ rubygems_version: 1.8.16
75
+ signing_key:
76
+ specification_version: 3
77
+ summary: hybook - hypertext boook generator
78
+ test_files: []