octobook 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/HISTORY.md +3 -0
- data/Manifest.txt +6 -0
- data/README.md +35 -0
- data/Rakefile +29 -0
- data/lib/octobook.rb +11 -0
- data/lib/octobook/version.rb +23 -0
- metadata +82 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 13c5487d2b7153db0d73fb742a028bc969b23203
|
4
|
+
data.tar.gz: 41087a321d087ebf46c42c15ecdc91ae50ffdd72
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 6bdf59bfe110fc990de4eb0e540f7b1e6ddaaa22b3b1d0ba7f6d87a7323937039906ba71f4a36c39d818fc5ced6b68dcec462971eaa0096809862a46e7b17a4a
|
7
|
+
data.tar.gz: 4455089b1f38c737512050d9af1945e420a275d113a106a97d9239e01f1898c852da0e040721615aeae1d8d6739c6f78871d8c08039a4b038d54b8bbb39cbcbf
|
data/HISTORY.md
ADDED
data/Manifest.txt
ADDED
data/README.md
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
# octobook
|
2
|
+
|
3
|
+
book publishing tool for jekyll
|
4
|
+
|
5
|
+
* home :: [github.com/octobook/octobook](https://github.com/octobook/octobook)
|
6
|
+
* bugs :: [github.com/octobook/octobook/issues](https://github.com/octobook/octobook/issues)
|
7
|
+
* gem :: [rubygems.org/gems/octobook](https://rubygems.org/gems/octobook)
|
8
|
+
* rdoc :: [rubydoc.info/gems/octobook](http://rubydoc.info/gems/octobook)
|
9
|
+
* forum :: [wwwmake](http://groups.google.com/group/wwwmake)
|
10
|
+
|
11
|
+
|
12
|
+
## Usage
|
13
|
+
|
14
|
+
to be done
|
15
|
+
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
## Install
|
20
|
+
|
21
|
+
Just install the gem:
|
22
|
+
|
23
|
+
$ gem install octobook
|
24
|
+
|
25
|
+
|
26
|
+
## License
|
27
|
+
|
28
|
+
The `octobook` scripts are dedicated to the public domain.
|
29
|
+
Use it as you please with no restrictions whatsoever.
|
30
|
+
|
31
|
+
|
32
|
+
## Questions? Comments?
|
33
|
+
|
34
|
+
Send them along to the [wwwmake forum](http://groups.google.com/group/wwwmake).
|
35
|
+
Thanks!
|
data/Rakefile
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'hoe'
|
2
|
+
require './lib/octobook/version.rb'
|
3
|
+
|
4
|
+
Hoe.spec 'octobook' do
|
5
|
+
|
6
|
+
self.version = Octobook::VERSION
|
7
|
+
|
8
|
+
self.summary = "octobok - book publishing tool for jekyll"
|
9
|
+
self.description = summary
|
10
|
+
|
11
|
+
self.urls = ['https://github.com/octobook/octobook']
|
12
|
+
|
13
|
+
self.author = 'Gerald Bauer'
|
14
|
+
self.email = 'wwwmake@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.extra_deps = [
|
21
|
+
]
|
22
|
+
|
23
|
+
self.licenses = ['Public Domain']
|
24
|
+
|
25
|
+
self.spec_extras = {
|
26
|
+
required_ruby_version: '>= 1.9.2'
|
27
|
+
}
|
28
|
+
|
29
|
+
end
|
data/lib/octobook.rb
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
|
4
|
+
module Octobook
|
5
|
+
|
6
|
+
MAJOR = 0
|
7
|
+
MINOR = 0
|
8
|
+
PATCH = 1
|
9
|
+
VERSION = [MAJOR,MINOR,PATCH].join('.')
|
10
|
+
|
11
|
+
def self.version
|
12
|
+
VERSION
|
13
|
+
end
|
14
|
+
|
15
|
+
def self.banner
|
16
|
+
"octobook/#{VERSION} on Ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]"
|
17
|
+
end
|
18
|
+
|
19
|
+
def self.root
|
20
|
+
"#{File.expand_path( File.dirname(File.dirname(File.dirname(__FILE__))) )}"
|
21
|
+
end
|
22
|
+
|
23
|
+
end # module Octobook
|
metadata
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: octobook
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Gerald Bauer
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-06-05 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rdoc
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '4.0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: hoe
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '3.14'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '3.14'
|
41
|
+
description: octobok - book publishing tool for jekyll
|
42
|
+
email: wwwmake@googlegroups.com
|
43
|
+
executables: []
|
44
|
+
extensions: []
|
45
|
+
extra_rdoc_files:
|
46
|
+
- HISTORY.md
|
47
|
+
- Manifest.txt
|
48
|
+
- README.md
|
49
|
+
files:
|
50
|
+
- HISTORY.md
|
51
|
+
- Manifest.txt
|
52
|
+
- README.md
|
53
|
+
- Rakefile
|
54
|
+
- lib/octobook.rb
|
55
|
+
- lib/octobook/version.rb
|
56
|
+
homepage: https://github.com/octobook/octobook
|
57
|
+
licenses:
|
58
|
+
- Public Domain
|
59
|
+
metadata: {}
|
60
|
+
post_install_message:
|
61
|
+
rdoc_options:
|
62
|
+
- "--main"
|
63
|
+
- README.md
|
64
|
+
require_paths:
|
65
|
+
- lib
|
66
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: 1.9.2
|
71
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
requirements: []
|
77
|
+
rubyforge_project:
|
78
|
+
rubygems_version: 2.2.3
|
79
|
+
signing_key:
|
80
|
+
specification_version: 4
|
81
|
+
summary: octobok - book publishing tool for jekyll
|
82
|
+
test_files: []
|