toto_prerelease 0.4.7prerelease
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/.document +5 -0
- data/.gitignore +6 -0
- data/LICENSE +20 -0
- data/README.md +162 -0
- data/Rakefile +35 -0
- data/TODO +2 -0
- data/VERSION +1 -0
- data/lib/ext/ext.rb +46 -0
- data/lib/toto.rb +358 -0
- data/test/articles/1900-05-17-the-wonderful-wizard-of-oz.txt +5 -0
- data/test/articles/2001-01-01-two-thousand-and-one.txt +5 -0
- data/test/articles/2009-04-01-tilt-factor.txt +5 -0
- data/test/articles/2009-12-04-some-random-article.txt +5 -0
- data/test/articles/2009-12-11-the-dichotomy-of-design.txt +5 -0
- data/test/autotest.rb +34 -0
- data/test/templates/about.rhtml +1 -0
- data/test/templates/archives.rhtml +5 -0
- data/test/templates/article.rhtml +4 -0
- data/test/templates/feed.builder +21 -0
- data/test/templates/index.builder +21 -0
- data/test/templates/index.rhtml +13 -0
- data/test/templates/layout.rhtml +4 -0
- data/test/templates/repo.rhtml +1 -0
- data/test/test_helper.rb +44 -0
- data/test/toto_test.rb +286 -0
- data/toto.gemspec +80 -0
- metadata +151 -0
data/toto.gemspec
ADDED
@@ -0,0 +1,80 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{toto_prerelease}
|
8
|
+
s.version = "0.4.7prerelease"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["cloudhead", "Sven Kräuter"]
|
12
|
+
s.date = %q{2010-05-11}
|
13
|
+
s.description = %q{the tiniest blog-engine in Oz.}
|
14
|
+
s.email = %q{self@cloudhead.net, mail@5v3n.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.md"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.md",
|
24
|
+
"Rakefile",
|
25
|
+
"TODO",
|
26
|
+
"VERSION",
|
27
|
+
"lib/ext/ext.rb",
|
28
|
+
"lib/toto.rb",
|
29
|
+
"test/articles/1900-05-17-the-wonderful-wizard-of-oz.txt",
|
30
|
+
"test/articles/2001-01-01-two-thousand-and-one.txt",
|
31
|
+
"test/articles/2009-04-01-tilt-factor.txt",
|
32
|
+
"test/articles/2009-12-04-some-random-article.txt",
|
33
|
+
"test/articles/2009-12-11-the-dichotomy-of-design.txt",
|
34
|
+
"test/autotest.rb",
|
35
|
+
"test/templates/about.rhtml",
|
36
|
+
"test/templates/archives.rhtml",
|
37
|
+
"test/templates/article.rhtml",
|
38
|
+
"test/templates/feed.builder",
|
39
|
+
"test/templates/index.builder",
|
40
|
+
"test/templates/index.rhtml",
|
41
|
+
"test/templates/layout.rhtml",
|
42
|
+
"test/templates/repo.rhtml",
|
43
|
+
"test/test_helper.rb",
|
44
|
+
"test/toto_test.rb",
|
45
|
+
"toto.gemspec"
|
46
|
+
]
|
47
|
+
s.homepage = %q{http://github.com/5v3n/toto}
|
48
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
49
|
+
s.require_paths = ["lib"]
|
50
|
+
s.rubygems_version = %q{1.3.5}
|
51
|
+
s.summary = %q{the tiniest blog-engine in Oz}
|
52
|
+
s.test_files = [
|
53
|
+
"test/autotest.rb",
|
54
|
+
"test/test_helper.rb",
|
55
|
+
"test/toto_test.rb"
|
56
|
+
]
|
57
|
+
|
58
|
+
if s.respond_to? :specification_version then
|
59
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
60
|
+
s.specification_version = 3
|
61
|
+
|
62
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
63
|
+
s.add_development_dependency(%q<riot>, [">= 0"])
|
64
|
+
s.add_runtime_dependency(%q<builder>, [">= 0"])
|
65
|
+
s.add_runtime_dependency(%q<rack>, [">= 0"])
|
66
|
+
s.add_runtime_dependency(%q<rdiscount>, [">= 0"])
|
67
|
+
else
|
68
|
+
s.add_dependency(%q<riot>, [">= 0"])
|
69
|
+
s.add_dependency(%q<builder>, [">= 0"])
|
70
|
+
s.add_dependency(%q<rack>, [">= 0"])
|
71
|
+
s.add_dependency(%q<rdiscount>, [">= 0"])
|
72
|
+
end
|
73
|
+
else
|
74
|
+
s.add_dependency(%q<riot>, [">= 0"])
|
75
|
+
s.add_dependency(%q<builder>, [">= 0"])
|
76
|
+
s.add_dependency(%q<rack>, [">= 0"])
|
77
|
+
s.add_dependency(%q<rdiscount>, [">= 0"])
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
metadata
ADDED
@@ -0,0 +1,151 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: toto_prerelease
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 1279964606
|
5
|
+
prerelease: true
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 4
|
9
|
+
- 7prerelease
|
10
|
+
version: 0.4.7prerelease
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- cloudhead
|
14
|
+
- "Sven Kr\xC3\xA4uter"
|
15
|
+
autorequire:
|
16
|
+
bindir: bin
|
17
|
+
cert_chain: []
|
18
|
+
|
19
|
+
date: 2010-05-11 00:00:00 +02:00
|
20
|
+
default_executable:
|
21
|
+
dependencies:
|
22
|
+
- !ruby/object:Gem::Dependency
|
23
|
+
name: riot
|
24
|
+
prerelease: false
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
27
|
+
requirements:
|
28
|
+
- - ">="
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
hash: 3
|
31
|
+
segments:
|
32
|
+
- 0
|
33
|
+
version: "0"
|
34
|
+
type: :development
|
35
|
+
version_requirements: *id001
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: builder
|
38
|
+
prerelease: false
|
39
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
hash: 3
|
45
|
+
segments:
|
46
|
+
- 0
|
47
|
+
version: "0"
|
48
|
+
type: :runtime
|
49
|
+
version_requirements: *id002
|
50
|
+
- !ruby/object:Gem::Dependency
|
51
|
+
name: rack
|
52
|
+
prerelease: false
|
53
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
hash: 3
|
59
|
+
segments:
|
60
|
+
- 0
|
61
|
+
version: "0"
|
62
|
+
type: :runtime
|
63
|
+
version_requirements: *id003
|
64
|
+
- !ruby/object:Gem::Dependency
|
65
|
+
name: rdiscount
|
66
|
+
prerelease: false
|
67
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
68
|
+
none: false
|
69
|
+
requirements:
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
hash: 3
|
73
|
+
segments:
|
74
|
+
- 0
|
75
|
+
version: "0"
|
76
|
+
type: :runtime
|
77
|
+
version_requirements: *id004
|
78
|
+
description: the tiniest blog-engine in Oz.
|
79
|
+
email: self@cloudhead.net, mail@5v3n.com
|
80
|
+
executables: []
|
81
|
+
|
82
|
+
extensions: []
|
83
|
+
|
84
|
+
extra_rdoc_files:
|
85
|
+
- LICENSE
|
86
|
+
- README.md
|
87
|
+
files:
|
88
|
+
- .document
|
89
|
+
- .gitignore
|
90
|
+
- LICENSE
|
91
|
+
- README.md
|
92
|
+
- Rakefile
|
93
|
+
- TODO
|
94
|
+
- VERSION
|
95
|
+
- lib/ext/ext.rb
|
96
|
+
- lib/toto.rb
|
97
|
+
- test/articles/1900-05-17-the-wonderful-wizard-of-oz.txt
|
98
|
+
- test/articles/2001-01-01-two-thousand-and-one.txt
|
99
|
+
- test/articles/2009-04-01-tilt-factor.txt
|
100
|
+
- test/articles/2009-12-04-some-random-article.txt
|
101
|
+
- test/articles/2009-12-11-the-dichotomy-of-design.txt
|
102
|
+
- test/autotest.rb
|
103
|
+
- test/templates/about.rhtml
|
104
|
+
- test/templates/archives.rhtml
|
105
|
+
- test/templates/article.rhtml
|
106
|
+
- test/templates/feed.builder
|
107
|
+
- test/templates/index.builder
|
108
|
+
- test/templates/index.rhtml
|
109
|
+
- test/templates/layout.rhtml
|
110
|
+
- test/templates/repo.rhtml
|
111
|
+
- test/test_helper.rb
|
112
|
+
- test/toto_test.rb
|
113
|
+
- toto.gemspec
|
114
|
+
has_rdoc: true
|
115
|
+
homepage: http://github.com/5v3n/toto
|
116
|
+
licenses: []
|
117
|
+
|
118
|
+
post_install_message:
|
119
|
+
rdoc_options:
|
120
|
+
- --charset=UTF-8
|
121
|
+
require_paths:
|
122
|
+
- lib
|
123
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
124
|
+
none: false
|
125
|
+
requirements:
|
126
|
+
- - ">="
|
127
|
+
- !ruby/object:Gem::Version
|
128
|
+
hash: 3
|
129
|
+
segments:
|
130
|
+
- 0
|
131
|
+
version: "0"
|
132
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
133
|
+
none: false
|
134
|
+
requirements:
|
135
|
+
- - ">="
|
136
|
+
- !ruby/object:Gem::Version
|
137
|
+
hash: 3
|
138
|
+
segments:
|
139
|
+
- 0
|
140
|
+
version: "0"
|
141
|
+
requirements: []
|
142
|
+
|
143
|
+
rubyforge_project:
|
144
|
+
rubygems_version: 1.3.7
|
145
|
+
signing_key:
|
146
|
+
specification_version: 3
|
147
|
+
summary: the tiniest blog-engine in Oz
|
148
|
+
test_files:
|
149
|
+
- test/autotest.rb
|
150
|
+
- test/test_helper.rb
|
151
|
+
- test/toto_test.rb
|