prezjordan-toto 0.4.9
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitignore +5 -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 +52 -0
- data/lib/toto.rb +359 -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 +285 -0
- data/toto.gemspec +80 -0
- metadata +120 -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{prezjordan-toto}
|
8
|
+
s.version = "0.4.9"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["cloudhead"]
|
12
|
+
s.date = %q{2010-12-01}
|
13
|
+
s.description = %q{the tiniest blog-engine in Oz.}
|
14
|
+
s.email = %q{self@cloudhead.net}
|
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/cloudhead/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,120 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: prezjordan-toto
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.4.9
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- cloudhead
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2010-12-01 00:00:00.000000000Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: riot
|
16
|
+
requirement: &70146510230220 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *70146510230220
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: builder
|
27
|
+
requirement: &70146510229580 !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ! '>='
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *70146510229580
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: rack
|
38
|
+
requirement: &70146510228860 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ! '>='
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
44
|
+
type: :runtime
|
45
|
+
prerelease: false
|
46
|
+
version_requirements: *70146510228860
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: rdiscount
|
49
|
+
requirement: &70146510228220 !ruby/object:Gem::Requirement
|
50
|
+
none: false
|
51
|
+
requirements:
|
52
|
+
- - ! '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
type: :runtime
|
56
|
+
prerelease: false
|
57
|
+
version_requirements: *70146510228220
|
58
|
+
description: the tiniest blog-engine in Oz.
|
59
|
+
email: self@cloudhead.net
|
60
|
+
executables: []
|
61
|
+
extensions: []
|
62
|
+
extra_rdoc_files:
|
63
|
+
- LICENSE
|
64
|
+
- README.md
|
65
|
+
files:
|
66
|
+
- .document
|
67
|
+
- .gitignore
|
68
|
+
- LICENSE
|
69
|
+
- README.md
|
70
|
+
- Rakefile
|
71
|
+
- TODO
|
72
|
+
- VERSION
|
73
|
+
- lib/ext/ext.rb
|
74
|
+
- lib/toto.rb
|
75
|
+
- test/articles/1900-05-17-the-wonderful-wizard-of-oz.txt
|
76
|
+
- test/articles/2001-01-01-two-thousand-and-one.txt
|
77
|
+
- test/articles/2009-04-01-tilt-factor.txt
|
78
|
+
- test/articles/2009-12-04-some-random-article.txt
|
79
|
+
- test/articles/2009-12-11-the-dichotomy-of-design.txt
|
80
|
+
- test/autotest.rb
|
81
|
+
- test/templates/about.rhtml
|
82
|
+
- test/templates/archives.rhtml
|
83
|
+
- test/templates/article.rhtml
|
84
|
+
- test/templates/feed.builder
|
85
|
+
- test/templates/index.builder
|
86
|
+
- test/templates/index.rhtml
|
87
|
+
- test/templates/layout.rhtml
|
88
|
+
- test/templates/repo.rhtml
|
89
|
+
- test/test_helper.rb
|
90
|
+
- test/toto_test.rb
|
91
|
+
- toto.gemspec
|
92
|
+
homepage: http://github.com/cloudhead/toto
|
93
|
+
licenses: []
|
94
|
+
post_install_message:
|
95
|
+
rdoc_options:
|
96
|
+
- --charset=UTF-8
|
97
|
+
require_paths:
|
98
|
+
- lib
|
99
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
100
|
+
none: false
|
101
|
+
requirements:
|
102
|
+
- - ! '>='
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
|
+
none: false
|
107
|
+
requirements:
|
108
|
+
- - ! '>='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
requirements: []
|
112
|
+
rubyforge_project:
|
113
|
+
rubygems_version: 1.8.6
|
114
|
+
signing_key:
|
115
|
+
specification_version: 3
|
116
|
+
summary: the tiniest blog-engine in Oz
|
117
|
+
test_files:
|
118
|
+
- test/autotest.rb
|
119
|
+
- test/test_helper.rb
|
120
|
+
- test/toto_test.rb
|