pakman 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.markdown +3 -0
- data/Manifest.txt +5 -0
- data/README.markdown +27 -0
- data/Rakefile +20 -0
- data/lib/pakman.rb +3 -0
- metadata +99 -0
data/History.markdown
ADDED
data/Manifest.txt
ADDED
data/README.markdown
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
## `pakman` - Template Pack Manager in Ruby
|
|
2
|
+
|
|
3
|
+
* [geraldb.github.com/pakman](http://geraldb.github.com/pakman)
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
TBD
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## Install
|
|
11
|
+
|
|
12
|
+
Just install the gem:
|
|
13
|
+
|
|
14
|
+
$ gem install pakman
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## Real World Usage
|
|
18
|
+
|
|
19
|
+
The [`slideshow`](http://slideshow.rubyforge.org) (also known as Slide Show (S9)) gem
|
|
20
|
+
that lets you create slide shows
|
|
21
|
+
and author slides in plain text using a wiki-style markup language that's easy-to-write and easy-to-read.
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
## License
|
|
25
|
+
|
|
26
|
+
The `pakman` scripts are dedicated to the public domain.
|
|
27
|
+
Use it as you please with no restrictions whatsoever.
|
data/Rakefile
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
require 'hoe'
|
|
2
|
+
require './lib/pakman.rb'
|
|
3
|
+
|
|
4
|
+
Hoe.spec 'pakman' do
|
|
5
|
+
|
|
6
|
+
self.version = Pakman::VERSION
|
|
7
|
+
|
|
8
|
+
self.summary = 'pakman - Template Pack Manager'
|
|
9
|
+
self.description = summary
|
|
10
|
+
|
|
11
|
+
self.urls = ['http://geraldb.github.com/pakman']
|
|
12
|
+
|
|
13
|
+
self.author = 'Gerald Bauer'
|
|
14
|
+
self.email = 'webslideshow@googlegroups.com'
|
|
15
|
+
|
|
16
|
+
# switch extension to .rdoc for gihub formatting
|
|
17
|
+
self.readme_file = 'README.markdown'
|
|
18
|
+
self.history_file = 'History.markdown'
|
|
19
|
+
|
|
20
|
+
end
|
data/lib/pakman.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: pakman
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 29
|
|
5
|
+
prerelease:
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 0
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.0.1
|
|
11
|
+
platform: ruby
|
|
12
|
+
authors:
|
|
13
|
+
- Gerald Bauer
|
|
14
|
+
autorequire:
|
|
15
|
+
bindir: bin
|
|
16
|
+
cert_chain: []
|
|
17
|
+
|
|
18
|
+
date: 2012-06-17 00:00:00 Z
|
|
19
|
+
dependencies:
|
|
20
|
+
- !ruby/object:Gem::Dependency
|
|
21
|
+
name: rdoc
|
|
22
|
+
prerelease: false
|
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
24
|
+
none: false
|
|
25
|
+
requirements:
|
|
26
|
+
- - ~>
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
hash: 19
|
|
29
|
+
segments:
|
|
30
|
+
- 3
|
|
31
|
+
- 10
|
|
32
|
+
version: "3.10"
|
|
33
|
+
type: :development
|
|
34
|
+
version_requirements: *id001
|
|
35
|
+
- !ruby/object:Gem::Dependency
|
|
36
|
+
name: hoe
|
|
37
|
+
prerelease: false
|
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
39
|
+
none: false
|
|
40
|
+
requirements:
|
|
41
|
+
- - ~>
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
hash: 7
|
|
44
|
+
segments:
|
|
45
|
+
- 3
|
|
46
|
+
- 0
|
|
47
|
+
version: "3.0"
|
|
48
|
+
type: :development
|
|
49
|
+
version_requirements: *id002
|
|
50
|
+
description: pakman - Template Pack Manager
|
|
51
|
+
email: webslideshow@googlegroups.com
|
|
52
|
+
executables: []
|
|
53
|
+
|
|
54
|
+
extensions: []
|
|
55
|
+
|
|
56
|
+
extra_rdoc_files:
|
|
57
|
+
- Manifest.txt
|
|
58
|
+
files:
|
|
59
|
+
- History.markdown
|
|
60
|
+
- Manifest.txt
|
|
61
|
+
- README.markdown
|
|
62
|
+
- Rakefile
|
|
63
|
+
- lib/pakman.rb
|
|
64
|
+
homepage: http://geraldb.github.com/pakman
|
|
65
|
+
licenses: []
|
|
66
|
+
|
|
67
|
+
post_install_message:
|
|
68
|
+
rdoc_options:
|
|
69
|
+
- --main
|
|
70
|
+
- README.markdown
|
|
71
|
+
require_paths:
|
|
72
|
+
- lib
|
|
73
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
74
|
+
none: false
|
|
75
|
+
requirements:
|
|
76
|
+
- - ">="
|
|
77
|
+
- !ruby/object:Gem::Version
|
|
78
|
+
hash: 3
|
|
79
|
+
segments:
|
|
80
|
+
- 0
|
|
81
|
+
version: "0"
|
|
82
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
|
+
none: false
|
|
84
|
+
requirements:
|
|
85
|
+
- - ">="
|
|
86
|
+
- !ruby/object:Gem::Version
|
|
87
|
+
hash: 3
|
|
88
|
+
segments:
|
|
89
|
+
- 0
|
|
90
|
+
version: "0"
|
|
91
|
+
requirements: []
|
|
92
|
+
|
|
93
|
+
rubyforge_project: pakman
|
|
94
|
+
rubygems_version: 1.8.24
|
|
95
|
+
signing_key:
|
|
96
|
+
specification_version: 3
|
|
97
|
+
summary: pakman - Template Pack Manager
|
|
98
|
+
test_files: []
|
|
99
|
+
|