camping 1.2 → 1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +33 -0
- data/README +64 -7
- data/bin/camping +63 -0
- data/examples/blog/blog.rb +44 -14
- data/examples/campsh/campsh.rb +631 -0
- data/examples/serve +77 -26
- data/examples/tepee/tepee.rb +11 -6
- data/extras/Camping.gif +0 -0
- data/extras/flipbook_rdoc.rb +480 -0
- data/lib/camping-unabridged.rb +190 -55
- data/lib/camping.rb +36 -32
- metadata +24 -13
- data/examples/blog/styles.css +0 -10
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.11
|
|
3
3
|
specification_version: 1
|
4
4
|
name: camping
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: "1.
|
7
|
-
date: 2006-
|
6
|
+
version: "1.3"
|
7
|
+
date: 2006-02-08 00:00:00 -07:00
|
8
8
|
summary: miniature rails for stay-at-home moms
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -12,7 +12,7 @@ email: why@ruby-lang.org
|
|
12
12
|
homepage: http://code.whytheluckystiff.net/camping/
|
13
13
|
rubyforge_project: camping
|
14
14
|
description:
|
15
|
-
autorequire:
|
15
|
+
autorequire:
|
16
16
|
default_executable:
|
17
17
|
bindir: bin
|
18
18
|
has_rdoc: true
|
@@ -29,39 +29,50 @@ authors:
|
|
29
29
|
- why the lucky stiff
|
30
30
|
files:
|
31
31
|
- README
|
32
|
+
- CHANGELOG
|
32
33
|
- examples/tepee
|
33
34
|
- examples/blog
|
34
35
|
- examples/charts
|
36
|
+
- examples/campsh
|
35
37
|
- examples/serve
|
36
38
|
- examples/tepee/tepee.rb
|
37
39
|
- examples/tepee/start
|
38
|
-
- examples/blog/styles.css
|
39
|
-
- examples/blog/blog.rb
|
40
40
|
- examples/blog/blog.sqlite3
|
41
|
+
- examples/blog/blog.rb
|
41
42
|
- examples/blog/start
|
42
43
|
- examples/charts/charts
|
43
44
|
- examples/charts/pie.rb
|
44
45
|
- examples/charts/charts.rb
|
45
46
|
- examples/charts/start
|
47
|
+
- examples/campsh/campsh.rb
|
46
48
|
- lib/camping.rb
|
47
49
|
- lib/camping-unabridged.rb
|
50
|
+
- bin/camping
|
51
|
+
- extras/flipbook_rdoc.rb
|
52
|
+
- extras/Camping.gif
|
48
53
|
test_files: []
|
49
54
|
|
50
55
|
rdoc_options:
|
56
|
+
- --quiet
|
51
57
|
- --title
|
52
|
-
- Camping Documentation
|
58
|
+
- Camping, the Documentation
|
59
|
+
- --template
|
60
|
+
- extras/flipbook_rdoc.rb
|
61
|
+
- --opname
|
62
|
+
- index.html
|
53
63
|
- --line-numbers
|
54
|
-
- --inline-source
|
55
64
|
- --main
|
56
65
|
- README
|
66
|
+
- --inline-source
|
57
67
|
- --exclude
|
58
|
-
- ^examples/
|
68
|
+
- ^(examples|extras)/
|
59
69
|
- --exclude
|
60
70
|
- lib/camping.rb
|
61
71
|
extra_rdoc_files:
|
62
72
|
- README
|
63
|
-
|
64
|
-
|
73
|
+
- CHANGELOG
|
74
|
+
executables:
|
75
|
+
- camping
|
65
76
|
extensions: []
|
66
77
|
|
67
78
|
requirements: []
|
@@ -72,9 +83,9 @@ dependencies:
|
|
72
83
|
version_requirement:
|
73
84
|
version_requirements: !ruby/object:Gem::Version::Requirement
|
74
85
|
requirements:
|
75
|
-
- - "
|
86
|
+
- - ">="
|
76
87
|
- !ruby/object:Gem::Version
|
77
|
-
version:
|
88
|
+
version: "1.13"
|
78
89
|
version:
|
79
90
|
- !ruby/object:Gem::Dependency
|
80
91
|
name: markaby
|
@@ -83,7 +94,7 @@ dependencies:
|
|
83
94
|
requirements:
|
84
95
|
- - ">"
|
85
96
|
- !ruby/object:Gem::Version
|
86
|
-
version: 0.
|
97
|
+
version: "0.2"
|
87
98
|
version:
|
88
99
|
- !ruby/object:Gem::Dependency
|
89
100
|
name: metaid
|