TwP-webby 0.9.4 → 0.9.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. data/History.txt +21 -3
  2. data/Rakefile +11 -5
  3. data/examples/blog/content/css/blueprint/ie.css +26 -0
  4. data/examples/blog/content/css/blueprint/plugins/buttons/icons/cross.png +0 -0
  5. data/examples/blog/content/css/blueprint/plugins/buttons/icons/key.png +0 -0
  6. data/examples/blog/content/css/blueprint/plugins/buttons/icons/tick.png +0 -0
  7. data/examples/blog/content/css/blueprint/plugins/buttons/readme.txt +32 -0
  8. data/examples/blog/content/css/blueprint/plugins/buttons/screen.css +97 -0
  9. data/examples/blog/content/css/blueprint/plugins/fancy-type/readme.txt +14 -0
  10. data/examples/blog/content/css/blueprint/plugins/fancy-type/screen.css +71 -0
  11. data/examples/blog/content/css/blueprint/plugins/link-icons/icons/doc.png +0 -0
  12. data/examples/blog/content/css/blueprint/plugins/link-icons/icons/email.png +0 -0
  13. data/examples/blog/content/css/blueprint/plugins/link-icons/icons/external.png +0 -0
  14. data/examples/blog/content/css/blueprint/plugins/link-icons/icons/feed.png +0 -0
  15. data/examples/blog/content/css/blueprint/plugins/link-icons/icons/im.png +0 -0
  16. data/examples/blog/content/css/blueprint/plugins/link-icons/icons/pdf.png +0 -0
  17. data/examples/blog/content/css/blueprint/plugins/link-icons/icons/visited.png +0 -0
  18. data/examples/blog/content/css/blueprint/plugins/link-icons/icons/xls.png +0 -0
  19. data/examples/blog/content/css/blueprint/plugins/link-icons/readme.txt +18 -0
  20. data/examples/blog/content/css/blueprint/plugins/link-icons/screen.css +40 -0
  21. data/examples/blog/content/css/blueprint/plugins/rtl/readme.txt +10 -0
  22. data/examples/blog/content/css/blueprint/plugins/rtl/screen.css +109 -0
  23. data/examples/blog/content/css/blueprint/print.css +30 -0
  24. data/examples/blog/content/css/blueprint/screen.css +251 -0
  25. data/examples/blog/content/css/blueprint/src/forms.css +49 -0
  26. data/examples/blog/content/css/blueprint/src/grid.css +212 -0
  27. data/examples/blog/content/css/blueprint/src/grid.png +0 -0
  28. data/examples/blog/content/css/blueprint/src/ie.css +59 -0
  29. data/examples/blog/content/css/blueprint/src/print.css +85 -0
  30. data/examples/blog/content/css/blueprint/src/reset.css +38 -0
  31. data/examples/blog/content/css/blueprint/src/typography.css +105 -0
  32. data/examples/blog/content/css/coderay.css +111 -0
  33. data/examples/blog/content/css/site.css +67 -0
  34. data/examples/blog/layouts/default.txt +61 -0
  35. data/examples/blog/tasks/blog.rake +1 -2
  36. data/examples/presentation/Sitefile +2 -2
  37. data/examples/tumblog/tasks/tumblog.rake +1 -2
  38. data/examples/webby/Sitefile +2 -2
  39. data/examples/webby/content/release-notes/rel-0-9-4/index.txt +33 -0
  40. data/examples/webby/content/sitemap.txt +2 -2
  41. data/examples/webby/content/user-manual/index.txt +3 -3
  42. data/lib/webby.rb +24 -101
  43. data/lib/webby/apps/generator.rb +2 -2
  44. data/lib/webby/apps/main.rb +32 -61
  45. data/lib/webby/config.rb +178 -0
  46. data/lib/webby/filters.rb +2 -0
  47. data/lib/webby/filters/haml.rb +13 -0
  48. data/lib/webby/filters/sass.rb +14 -0
  49. data/lib/webby/filters/slides.rb +2 -2
  50. data/lib/webby/filters/tidy.rb +5 -0
  51. data/lib/webby/helpers/coderay_helper.rb +27 -3
  52. data/lib/webby/helpers/graphviz_helper.rb +20 -3
  53. data/lib/webby/helpers/tex_img_helper.rb +25 -5
  54. data/lib/webby/helpers/ultraviolet_helper.rb +19 -5
  55. data/lib/webby/renderer.rb +9 -6
  56. data/lib/webby/resources.rb +2 -1
  57. data/lib/webby/resources/page.rb +4 -1
  58. data/lib/webby/tasks/create.rake +1 -4
  59. data/spec/data/site/tasks/tumblog.rake +5 -1
  60. data/spec/spec_helper.rb +1 -1
  61. data/spec/webby/apps/generator_spec.rb +36 -3
  62. data/spec/webby/apps/main_spec.rb +2 -1
  63. data/spec/webby/filters/basepath_spec.rb +2 -2
  64. data/spec/webby/helpers/capture_helper_spec.rb +1 -1
  65. data/spec/webby/resources/db_spec.rb +24 -24
  66. data/spec/webby/resources/layout_spec.rb +1 -1
  67. data/spec/webby/resources/page_spec.rb +8 -2
  68. data/spec/webby/resources/resource_spec.rb +1 -1
  69. data/spec/webby/resources_spec.rb +1 -1
  70. metadata +60 -23
  71. data/Manifest.txt +0 -233
@@ -86,7 +86,8 @@ module Webby::Resources
86
86
  # +nil+ if no layout exists under that filename.
87
87
  #
88
88
  def find_layout( filename )
89
- return if filename.nil?
89
+ return unless filename
90
+ filename = filename.to_s
90
91
 
91
92
  fn = self.basename(filename)
92
93
  dir = ::File.dirname(filename)
@@ -49,7 +49,10 @@ class Page < Resource
49
49
  return @url unless @url.nil?
50
50
 
51
51
  @url = super
52
- @url = File.dirname(@url) if filename == 'index'
52
+ if filename == 'index'
53
+ @url = File.dirname(@url)
54
+ @url << '/' unless %r/\/$/ =~ @url
55
+ end
53
56
  @url
54
57
  end
55
58
 
@@ -13,10 +13,7 @@ namespace :create do
13
13
  page, title, dir = Webby::Builder.new_page_info
14
14
  page = Webby::Builder.create(page, :from => template,
15
15
  :locals => {:title => title, :directory => dir})
16
- unless ::Webby.editor.nil?
17
- args = [::Webby.editor.split, page].flatten
18
- exec(*args)
19
- end
16
+ Webby.exec_editor(page)
20
17
  end
21
18
  end # each
22
19
 
@@ -1,3 +1,7 @@
1
+ Loquacious.configuration_for(:webby) {
2
+ desc "The default directory where new tumblog posts will be created."
3
+ tumblog_dir 'blog'
4
+ }
1
5
 
2
6
  namespace :tumblog do
3
7
 
@@ -21,7 +25,7 @@ namespace :tumblog do
21
25
  page = File.join(dir, File.basename(page))
22
26
  page = Webby::Builder.create(page, :from => template,
23
27
  :locals => {:title => title, :directory => dir})
24
- exec(::Webby.editor, page) unless ::Webby.editor.nil?
28
+ Webby.exec_editor(page)
25
29
  end
26
30
  end # each
27
31
 
data/spec/spec_helper.rb CHANGED
@@ -3,7 +3,6 @@
3
3
  unless defined? WEBBY_SPEC_HELPER
4
4
  WEBBY_SPEC_HELPER = true
5
5
 
6
- require 'rubygems'
7
6
  require 'fileutils'
8
7
  require 'stringio'
9
8
 
@@ -11,6 +10,7 @@ begin
11
10
  require 'fake_web'
12
11
  $test_externals = true
13
12
  rescue LoadError
13
+ retry if require 'rubygems'
14
14
  $test_externals = false
15
15
  end
16
16
 
@@ -36,13 +36,14 @@ describe Webby::Apps::Generator do
36
36
  "content",
37
37
  "content/css",
38
38
  "content/css/blueprint",
39
- "content/css/blueprint/compressed",
40
- "content/css/blueprint/lib",
41
39
  "content/css/blueprint/plugins",
42
40
  "content/css/blueprint/plugins/buttons",
43
41
  "content/css/blueprint/plugins/buttons/icons",
44
- "content/css/blueprint/plugins/css-classes",
45
42
  "content/css/blueprint/plugins/fancy-type",
43
+ "content/css/blueprint/plugins/link-icons",
44
+ "content/css/blueprint/plugins/link-icons/icons",
45
+ "content/css/blueprint/plugins/rtl",
46
+ "content/css/blueprint/src",
46
47
  "layouts",
47
48
  "lib",
48
49
  "templates"
@@ -51,6 +52,38 @@ describe Webby::Apps::Generator do
51
52
  h["layouts"].should == %w[layouts/default.txt]
52
53
  end
53
54
 
55
+ it "should return a list of all the blog files from the template" do
56
+ @generator.parse %w[blog foo]
57
+
58
+ h = @generator.site_files
59
+ h.keys.sort.should == [
60
+ "",
61
+ "content",
62
+ "content/css",
63
+ "content/css/blueprint",
64
+ "content/css/blueprint/plugins",
65
+ "content/css/blueprint/plugins/buttons",
66
+ "content/css/blueprint/plugins/buttons/icons",
67
+ "content/css/blueprint/plugins/fancy-type",
68
+ "content/css/blueprint/plugins/link-icons",
69
+ "content/css/blueprint/plugins/link-icons/icons",
70
+ "content/css/blueprint/plugins/rtl",
71
+ "content/css/blueprint/src",
72
+ "layouts",
73
+ "tasks",
74
+ "templates",
75
+ "templates/blog"
76
+ ]
77
+ h["layouts"].should == %w[layouts/default.txt]
78
+ h["tasks"].should == %w[tasks/blog.rake]
79
+ h["templates"].should == %w[templates/atom_feed.erb]
80
+ h["templates/blog"].should == [
81
+ "templates/blog/year.erb",
82
+ "templates/blog/post.erb",
83
+ "templates/blog/month.erb"
84
+ ]
85
+ end
86
+
54
87
  describe "when parsing command line arguments" do
55
88
 
56
89
  before :each do
@@ -78,7 +78,8 @@ describe Webby::Apps::Main do
78
78
 
79
79
  describe ".parse" do
80
80
  it "should pass environment variables to the rake application" do
81
- ARGV = ary = []
81
+ ary = ARGV
82
+ ARGV.replace []
82
83
  args = %w[rebuild foo BASE=http://www.example.com bar]
83
84
  @main.parse args
84
85
  ary.should == %w[rebuild BASE=http://www.example.com]
@@ -108,13 +108,13 @@ describe Webby::Filters::BasePath do
108
108
 
109
109
  it 'is restrictive to the configured xpaths' do
110
110
  Webby.site.base = 'not a real site'
111
- input = @input % ['<img src="/foo/picture.jpg" />', '<a href="/page.html">Page Title</a>']
111
+ input = @input % ['<foo src="/foo/picture.jpg" />', '<a href="/page.html">Page Title</a>']
112
112
 
113
113
  bp = Webby::Filters::BasePath.new(input, 'html')
114
114
  bp.filter.should == <<-HTML
115
115
  <html>
116
116
  <head>
117
- <img src="/foo/picture.jpg" />
117
+ <foo src="/foo/picture.jpg" />
118
118
  </head>
119
119
  <body>
120
120
  <a href="not a real site/page.html">Page Title</a>
@@ -30,7 +30,7 @@ describe Webby::Helpers::CaptureHelper do
30
30
  ::FileUtils.rm_f(CFN)
31
31
  end
32
32
 
33
- it 'should not "leak" any content to containing page' do
33
+ it 'should not "leak" any content to the containing page' do
34
34
  @page_content.should_not be_nil
35
35
  @page_content.should eql("Hello world!\n")
36
36
  end
@@ -7,7 +7,7 @@ describe Webby::Resources::DB do
7
7
 
8
8
  before :each do
9
9
  layout = Webby::Resources::Layout.
10
- new(Webby.datapath %w[site layouts tumblog default.txt])
10
+ new(Webby.datapath(%w[site layouts tumblog default.txt]))
11
11
  Webby::Resources.stub!(:find_layout).and_return(layout)
12
12
 
13
13
  @db = Webby::Resources::DB.new
@@ -53,13 +53,13 @@ describe Webby::Resources::DB do
53
53
  ary = []
54
54
  @db.each {|page| ary << page.url}
55
55
  ary.should == %w[
56
- /tumblog
56
+ /tumblog/
57
57
  /tumblog/rss.xml
58
- /tumblog/200806/the-noble-chicken
59
- /tumblog/200807/historical-perspectives-on-the-classic-chicken-joke
60
- /tumblog/200807/mad-city-chickens
61
- /tumblog/200807/the-wisdom-of-the-dutch
62
- /tumblog/200807/up-a-tree
58
+ /tumblog/200806/the-noble-chicken/
59
+ /tumblog/200807/historical-perspectives-on-the-classic-chicken-joke/
60
+ /tumblog/200807/mad-city-chickens/
61
+ /tumblog/200807/the-wisdom-of-the-dutch/
62
+ /tumblog/200807/up-a-tree/
63
63
  ]
64
64
  end
65
65
 
@@ -70,11 +70,11 @@ describe Webby::Resources::DB do
70
70
 
71
71
  page = Webby::Resources::Page.new('content/tumblog/rss.txt')
72
72
  parent = @db.parent_of(page)
73
- parent.url.should == '/tumblog'
73
+ parent.url.should == '/tumblog/'
74
74
 
75
75
  page = Webby::Resources::Page.new('content/tumblog/200807/up-a-tree/index.txt')
76
76
  parent = @db.parent_of(page)
77
- parent.url.should == '/tumblog'
77
+ parent.url.should == '/tumblog/'
78
78
  end
79
79
 
80
80
  it 'returns the siblings of a resource' do
@@ -97,11 +97,11 @@ describe Webby::Resources::DB do
97
97
 
98
98
  children.length.should == 5
99
99
  children.map {|page| page.url}.sort.should == %w[
100
- /tumblog/200806/the-noble-chicken
101
- /tumblog/200807/historical-perspectives-on-the-classic-chicken-joke
102
- /tumblog/200807/mad-city-chickens
103
- /tumblog/200807/the-wisdom-of-the-dutch
104
- /tumblog/200807/up-a-tree
100
+ /tumblog/200806/the-noble-chicken/
101
+ /tumblog/200807/historical-perspectives-on-the-classic-chicken-joke/
102
+ /tumblog/200807/mad-city-chickens/
103
+ /tumblog/200807/the-wisdom-of-the-dutch/
104
+ /tumblog/200807/up-a-tree/
105
105
  ]
106
106
  end
107
107
 
@@ -111,11 +111,11 @@ describe Webby::Resources::DB do
111
111
 
112
112
  children.length.should == 5
113
113
  children.map {|page| page.url}.should == %w[
114
- /tumblog/200806/the-noble-chicken
115
- /tumblog/200807/historical-perspectives-on-the-classic-chicken-joke
116
- /tumblog/200807/mad-city-chickens
117
- /tumblog/200807/the-wisdom-of-the-dutch
118
- /tumblog/200807/up-a-tree
114
+ /tumblog/200806/the-noble-chicken/
115
+ /tumblog/200807/historical-perspectives-on-the-classic-chicken-joke/
116
+ /tumblog/200807/mad-city-chickens/
117
+ /tumblog/200807/the-wisdom-of-the-dutch/
118
+ /tumblog/200807/up-a-tree/
119
119
  ]
120
120
  end
121
121
 
@@ -125,11 +125,11 @@ describe Webby::Resources::DB do
125
125
 
126
126
  children.length.should == 5
127
127
  children.map {|page| page.url}.should == %w[
128
- /tumblog/200806/the-noble-chicken
129
- /tumblog/200807/historical-perspectives-on-the-classic-chicken-joke
130
- /tumblog/200807/mad-city-chickens
131
- /tumblog/200807/the-wisdom-of-the-dutch
132
- /tumblog/200807/up-a-tree
128
+ /tumblog/200806/the-noble-chicken/
129
+ /tumblog/200807/historical-perspectives-on-the-classic-chicken-joke/
130
+ /tumblog/200807/mad-city-chickens/
131
+ /tumblog/200807/the-wisdom-of-the-dutch/
132
+ /tumblog/200807/up-a-tree/
133
133
  ].reverse
134
134
  end
135
135
  end
@@ -6,7 +6,7 @@ require File.expand_path(
6
6
  describe Webby::Resources::Layout do
7
7
  before :each do
8
8
  layout = Webby::Resources::Layout.
9
- new(Webby.datapath %w[site layouts tumblog default.txt])
9
+ new(Webby.datapath(%w[site layouts tumblog default.txt]))
10
10
  Webby::Resources.stub!(:find_layout).and_return(layout)
11
11
 
12
12
  @default = File.join %w[layouts tumblog default.txt]
@@ -6,7 +6,7 @@ require File.expand_path(
6
6
  describe Webby::Resources::Page do
7
7
  before :each do
8
8
  layout = Webby::Resources::Layout.
9
- new(Webby.datapath %w[site layouts default.txt])
9
+ new(Webby.datapath(%w[site layouts default.txt]))
10
10
  Webby::Resources.stub!(:find_layout).and_return(layout)
11
11
 
12
12
  @filename = File.join %w[content index.txt]
@@ -55,7 +55,13 @@ describe Webby::Resources::Page do
55
55
  it "uses only the directory name for 'index' files" do
56
56
  filename = File.join %w[content tumblog index.txt]
57
57
  resource = Webby::Resources::Page.new(filename)
58
- resource.url.should == '/tumblog'
58
+ resource.url.should == '/tumblog/'
59
+ end
60
+
61
+ it "avoids adding a double trailing slash on the end" do
62
+ filename = File.join %w[content index.txt]
63
+ resource = Webby::Resources::Page.new(filename)
64
+ resource.url.should == '/'
59
65
  end
60
66
  end
61
67
 
@@ -7,7 +7,7 @@ describe Webby::Resources::Resource do
7
7
 
8
8
  before :each do
9
9
  layout = Webby::Resources::Layout.
10
- new(Webby.datapath %w[site layouts default.txt])
10
+ new(Webby.datapath(%w[site layouts default.txt]))
11
11
  Webby::Resources.stub!(:find_layout).and_return(layout)
12
12
 
13
13
  @filename = File.join %w[content index.txt]
@@ -47,7 +47,7 @@ describe Webby::Resources do
47
47
  describe "#new" do
48
48
  before :each do
49
49
  layout = Webby::Resources::Layout.
50
- new(Webby.datapath %w[site layouts default.txt])
50
+ new(Webby.datapath(%w[site layouts default.txt]))
51
51
  Webby::Resources.stub!(:find_layout).and_return(layout)
52
52
  end
53
53
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: TwP-webby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.4
4
+ version: 0.9.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Pease
@@ -9,29 +9,32 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-12-01 00:00:00 -08:00
12
+ date: 2009-04-06 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: directory_watcher
17
+ type: :runtime
17
18
  version_requirement:
18
19
  version_requirements: !ruby/object:Gem::Requirement
19
20
  requirements:
20
21
  - - ">="
21
22
  - !ruby/object:Gem::Version
22
- version: 1.1.1
23
+ version: 1.1.2
23
24
  version:
24
25
  - !ruby/object:Gem::Dependency
25
26
  name: hpricot
27
+ type: :runtime
26
28
  version_requirement:
27
29
  version_requirements: !ruby/object:Gem::Requirement
28
30
  requirements:
29
- - - "="
31
+ - - ">="
30
32
  - !ruby/object:Gem::Version
31
33
  version: 0.6.0
32
34
  version:
33
35
  - !ruby/object:Gem::Dependency
34
36
  name: launchy
37
+ type: :runtime
35
38
  version_requirement:
36
39
  version_requirements: !ruby/object:Gem::Requirement
37
40
  requirements:
@@ -41,39 +44,53 @@ dependencies:
41
44
  version:
42
45
  - !ruby/object:Gem::Dependency
43
46
  name: logging
47
+ type: :runtime
48
+ version_requirement:
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: 0.9.7
54
+ version:
55
+ - !ruby/object:Gem::Dependency
56
+ name: loquacious
57
+ type: :runtime
44
58
  version_requirement:
45
59
  version_requirements: !ruby/object:Gem::Requirement
46
60
  requirements:
47
61
  - - ">="
48
62
  - !ruby/object:Gem::Version
49
- version: 0.9.4
63
+ version: 1.3.0
50
64
  version:
51
65
  - !ruby/object:Gem::Dependency
52
66
  name: rake
67
+ type: :runtime
53
68
  version_requirement:
54
69
  version_requirements: !ruby/object:Gem::Requirement
55
70
  requirements:
56
71
  - - ">="
57
72
  - !ruby/object:Gem::Version
58
- version: 0.8.3
73
+ version: 0.8.4
59
74
  version:
60
75
  - !ruby/object:Gem::Dependency
61
76
  name: rspec
77
+ type: :runtime
62
78
  version_requirement:
63
79
  version_requirements: !ruby/object:Gem::Requirement
64
80
  requirements:
65
81
  - - ">="
66
82
  - !ruby/object:Gem::Version
67
- version: 1.1.4
83
+ version: 1.2.2
68
84
  version:
69
85
  - !ruby/object:Gem::Dependency
70
86
  name: bones
87
+ type: :development
71
88
  version_requirement:
72
89
  version_requirements: !ruby/object:Gem::Requirement
73
90
  requirements:
74
91
  - - ">="
75
92
  - !ruby/object:Gem::Version
76
- version: 2.1.0
93
+ version: 2.5.0
77
94
  version:
78
95
  description: "*Webby* is a fantastic little website management system. It would be called a *content management system* if it were a bigger kid. But, it's just a runt with a special knack for transforming text. And that's really all it does - manages the legwork of turning text into something else, an *ASCII Alchemist* if you will. Webby works by combining the contents of a *page* with a *layout* to produce HTML. The layout contains everything common to all the pages - HTML headers, navigation menu, footer, etc. - and the page contains just the information for that page. You can use your favorite markup language to write your pages; Webby supports quite a few. Install Webby and try it out!"
79
96
  email: tim.pease@gmail.com
@@ -110,12 +127,43 @@ extra_rdoc_files:
110
127
  - spec/data/site/layouts/tumblog/post.txt
111
128
  files:
112
129
  - History.txt
113
- - Manifest.txt
114
130
  - README.rdoc
115
131
  - Rakefile
116
132
  - bin/webby
117
133
  - bin/webby-gen
118
134
  - examples/blog/Sitefile
135
+ - examples/blog/content/css/blueprint/ie.css
136
+ - examples/blog/content/css/blueprint/plugins/buttons/icons/cross.png
137
+ - examples/blog/content/css/blueprint/plugins/buttons/icons/key.png
138
+ - examples/blog/content/css/blueprint/plugins/buttons/icons/tick.png
139
+ - examples/blog/content/css/blueprint/plugins/buttons/readme.txt
140
+ - examples/blog/content/css/blueprint/plugins/buttons/screen.css
141
+ - examples/blog/content/css/blueprint/plugins/fancy-type/readme.txt
142
+ - examples/blog/content/css/blueprint/plugins/fancy-type/screen.css
143
+ - examples/blog/content/css/blueprint/plugins/link-icons/icons/doc.png
144
+ - examples/blog/content/css/blueprint/plugins/link-icons/icons/email.png
145
+ - examples/blog/content/css/blueprint/plugins/link-icons/icons/external.png
146
+ - examples/blog/content/css/blueprint/plugins/link-icons/icons/feed.png
147
+ - examples/blog/content/css/blueprint/plugins/link-icons/icons/im.png
148
+ - examples/blog/content/css/blueprint/plugins/link-icons/icons/pdf.png
149
+ - examples/blog/content/css/blueprint/plugins/link-icons/icons/visited.png
150
+ - examples/blog/content/css/blueprint/plugins/link-icons/icons/xls.png
151
+ - examples/blog/content/css/blueprint/plugins/link-icons/readme.txt
152
+ - examples/blog/content/css/blueprint/plugins/link-icons/screen.css
153
+ - examples/blog/content/css/blueprint/plugins/rtl/readme.txt
154
+ - examples/blog/content/css/blueprint/plugins/rtl/screen.css
155
+ - examples/blog/content/css/blueprint/print.css
156
+ - examples/blog/content/css/blueprint/screen.css
157
+ - examples/blog/content/css/blueprint/src/forms.css
158
+ - examples/blog/content/css/blueprint/src/grid.css
159
+ - examples/blog/content/css/blueprint/src/grid.png
160
+ - examples/blog/content/css/blueprint/src/ie.css
161
+ - examples/blog/content/css/blueprint/src/print.css
162
+ - examples/blog/content/css/blueprint/src/reset.css
163
+ - examples/blog/content/css/blueprint/src/typography.css
164
+ - examples/blog/content/css/coderay.css
165
+ - examples/blog/content/css/site.css
166
+ - examples/blog/layouts/default.txt
119
167
  - examples/blog/tasks/blog.rake
120
168
  - examples/blog/templates/atom_feed.erb
121
169
  - examples/blog/templates/blog/month.erb
@@ -176,6 +224,7 @@ files:
176
224
  - examples/webby/content/release-notes/rel-0-9-1/index.txt
177
225
  - examples/webby/content/release-notes/rel-0-9-2/index.txt
178
226
  - examples/webby/content/release-notes/rel-0-9-3/index.txt
227
+ - examples/webby/content/release-notes/rel-0-9-4/index.txt
179
228
  - examples/webby/content/robots.txt
180
229
  - examples/webby/content/script/jquery.corner.js
181
230
  - examples/webby/content/script/jquery.js
@@ -228,6 +277,7 @@ files:
228
277
  - lib/webby/apps/main.rb
229
278
  - lib/webby/auto_builder.rb
230
279
  - lib/webby/builder.rb
280
+ - lib/webby/config.rb
231
281
  - lib/webby/core_ext/enumerable.rb
232
282
  - lib/webby/core_ext/hash.rb
233
283
  - lib/webby/core_ext/kernel.rb
@@ -340,20 +390,7 @@ files:
340
390
  - spec/webby/resources/resource_spec.rb
341
391
  - spec/webby/resources/static_spec.rb
342
392
  - spec/webby/resources_spec.rb
343
- - tasks/ann.rake
344
- - tasks/bones.rake
345
- - tasks/gem.rake
346
- - tasks/git.rake
347
- - tasks/manifest.rake
348
393
  - tasks/mswin32.rake
349
- - tasks/notes.rake
350
- - tasks/post_load.rake
351
- - tasks/rdoc.rake
352
- - tasks/rubyforge.rake
353
- - tasks/setup.rb
354
- - tasks/spec.rake
355
- - tasks/svn.rake
356
- - tasks/test.rake
357
394
  - tasks/website.rake
358
395
  has_rdoc: true
359
396
  homepage: http://webby.rubyforge.org/
@@ -381,6 +418,6 @@ rubyforge_project: webby
381
418
  rubygems_version: 1.2.0
382
419
  signing_key:
383
420
  specification_version: 2
384
- summary: static website creation and management
421
+ summary: Awesome static website creation and management!
385
422
  test_files: []
386
423