bookman 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 +7 -0
- data/HISTORY.md +4 -0
- data/Manifest.txt +6 -0
- data/README.md +22 -0
- data/Rakefile +35 -0
- data/lib/bookman/version.rb +17 -0
- data/lib/bookman.rb +13 -0
- metadata +138 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: db792b49944fae5b0ecaf4c3c1c810f43dc97df0
|
|
4
|
+
data.tar.gz: 9d9f7477a68f3c12941fa88ccfe7dfa1af33535d
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: c7fed455ecf278b4380c6e8dded7fc86477e0a57de66b4074e0f6a7ba7308c1a6903606a4a991a5a22626d3e876151f234d4592cc5cb5a4b1d8179b82c0ddeac
|
|
7
|
+
data.tar.gz: c886fe2c7cbf24985e53ac49444df546d72b61b4a663c1c6bcb2ff7f2779ea71f618229adbc3427a7fcc84cfd6da0540aee1a3caa6af37541dcc0c175b8bfd57
|
data/HISTORY.md
ADDED
data/Manifest.txt
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# bookman - Yet Another Book Builder
|
|
2
|
+
|
|
3
|
+
bookman gem - yet another book builder
|
|
4
|
+
|
|
5
|
+
* home :: [github.com/hybook/bookman](https://github.com/hybook/bookman)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
|
|
10
|
+
to be done
|
|
11
|
+
|
|
12
|
+
## License
|
|
13
|
+
|
|
14
|
+
The `bookman` scripts are dedicated to the public domain.
|
|
15
|
+
Use it as you please with no restrictions whatsoever.
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## Questions? Comments?
|
|
19
|
+
|
|
20
|
+
Send them along to the
|
|
21
|
+
[Free Web Slide Show Alternatives (S5, S6, S9, Slidy And Friends) Forum/Mailing List](http://groups.google.com/group/webslideshow).
|
|
22
|
+
Thanks!
|
data/Rakefile
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
require 'hoe'
|
|
2
|
+
require './lib/bookman/version.rb'
|
|
3
|
+
|
|
4
|
+
Hoe.spec 'bookman' do
|
|
5
|
+
|
|
6
|
+
self.version = Bookman::VERSION
|
|
7
|
+
|
|
8
|
+
self.summary = 'bookman - yet another builder for books'
|
|
9
|
+
self.description = summary
|
|
10
|
+
|
|
11
|
+
self.urls = ['https://github.com/hybook/bookman']
|
|
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.extra_deps = [
|
|
23
|
+
['hybook'], # settings / prop(ertie)s / env / INI
|
|
24
|
+
['bookfile'], # logging
|
|
25
|
+
['fetcher'], ## todo: check if included in ??
|
|
26
|
+
['rubyzip'], ## todo: check if included in ??
|
|
27
|
+
### todo: add datafile ???
|
|
28
|
+
]
|
|
29
|
+
|
|
30
|
+
self.spec_extras = {
|
|
31
|
+
required_ruby_version: '>= 1.9.2'
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
end
|
|
35
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# encoding: utf-8
|
|
2
|
+
|
|
3
|
+
module Bookman
|
|
4
|
+
VERSION = '0.0.1'
|
|
5
|
+
|
|
6
|
+
def self.banner
|
|
7
|
+
"bookman/#{VERSION} on Ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]"
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
def self.root
|
|
11
|
+
"#{File.expand_path( File.dirname(File.dirname(File.dirname(__FILE__))) )}"
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
## add module alias
|
|
16
|
+
BookMan = Bookman
|
|
17
|
+
|
data/lib/bookman.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: bookman
|
|
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: 2015-04-02 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: hybook
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: bookfile
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: fetcher
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - ">="
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '0'
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">="
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: rubyzip
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - ">="
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
type: :runtime
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: rdoc
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - "~>"
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '4.0'
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - "~>"
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '4.0'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: hoe
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '3.13'
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - "~>"
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '3.13'
|
|
97
|
+
description: bookman - yet another builder for books
|
|
98
|
+
email: webslideshow@googlegroups.com
|
|
99
|
+
executables: []
|
|
100
|
+
extensions: []
|
|
101
|
+
extra_rdoc_files:
|
|
102
|
+
- HISTORY.md
|
|
103
|
+
- Manifest.txt
|
|
104
|
+
- README.md
|
|
105
|
+
files:
|
|
106
|
+
- HISTORY.md
|
|
107
|
+
- Manifest.txt
|
|
108
|
+
- README.md
|
|
109
|
+
- Rakefile
|
|
110
|
+
- lib/bookman.rb
|
|
111
|
+
- lib/bookman/version.rb
|
|
112
|
+
homepage: https://github.com/hybook/bookman
|
|
113
|
+
licenses:
|
|
114
|
+
- Public Domain
|
|
115
|
+
metadata: {}
|
|
116
|
+
post_install_message:
|
|
117
|
+
rdoc_options:
|
|
118
|
+
- "--main"
|
|
119
|
+
- README.md
|
|
120
|
+
require_paths:
|
|
121
|
+
- lib
|
|
122
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
123
|
+
requirements:
|
|
124
|
+
- - ">="
|
|
125
|
+
- !ruby/object:Gem::Version
|
|
126
|
+
version: 1.9.2
|
|
127
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
128
|
+
requirements:
|
|
129
|
+
- - ">="
|
|
130
|
+
- !ruby/object:Gem::Version
|
|
131
|
+
version: '0'
|
|
132
|
+
requirements: []
|
|
133
|
+
rubyforge_project:
|
|
134
|
+
rubygems_version: 2.4.2
|
|
135
|
+
signing_key:
|
|
136
|
+
specification_version: 4
|
|
137
|
+
summary: bookman - yet another builder for books
|
|
138
|
+
test_files: []
|