sinatra-haml 0.1.0 → 0.1.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.
@@ -1,3 +1,7 @@
1
+ == 0.1.1 / 2008-01-31
2
+
3
+ * Fixed the documentation
4
+
1
5
  == 0.1.0 / 2008-01-30
2
6
 
3
7
  * First release
@@ -5,3 +5,5 @@ Rakefile
5
5
  lib/sinatra/renderer/haml.rb
6
6
  lib/version.rb
7
7
  test/test_sinatra_haml_renderer.rb
8
+ test/views/foo.haml
9
+ test/views/layout.haml
data/README.txt CHANGED
@@ -21,7 +21,7 @@ A Haml renderer for the Sinatra (http://sinatra.rubyforge.org) web framework.
21
21
 
22
22
  == INSTALL:
23
23
 
24
- * sudo gem install haml_sinatra_renderer
24
+ * sudo gem install sinatra-haml
25
25
 
26
26
  == LICENSE:
27
27
 
@@ -1,3 +1,3 @@
1
1
  class HamlSinatraRenderer
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
@@ -1,4 +1,4 @@
1
- require "/Users/kevinsmith/development/testbed/sinatra/test/helper"
1
+ require "sinatra/test/helper"
2
2
  require File.dirname(__FILE__) + "/../lib/sinatra/renderer/haml"
3
3
 
4
4
  context "haml rendering" do
@@ -0,0 +1 @@
1
+ %strong hello haml!
@@ -0,0 +1 @@
1
+ %div= @content
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sinatra-haml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - kevin smith
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-01-30 00:00:00 -05:00
12
+ date: 2008-01-31 00:00:00 -05:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -48,6 +48,8 @@ files:
48
48
  - lib/sinatra/renderer/haml.rb
49
49
  - lib/version.rb
50
50
  - test/test_sinatra_haml_renderer.rb
51
+ - test/views/foo.haml
52
+ - test/views/layout.haml
51
53
  has_rdoc: true
52
54
  homepage: http://codebrulee.rubyforge.org
53
55
  post_install_message: