haml 3.2.0.alpha.5 → 3.2.0.alpha.8
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/REVISION +1 -1
- data/VERSION +1 -1
- data/test/haml/template_test.rb +3 -1
- metadata +22 -2
data/REVISION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
8e77ab6ff6c14b793b2fd348c8a3211927428b14
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.2.0.alpha.
|
|
1
|
+
3.2.0.alpha.8
|
data/test/haml/template_test.rb
CHANGED
|
@@ -395,12 +395,14 @@ HAML
|
|
|
395
395
|
end
|
|
396
396
|
|
|
397
397
|
def test_rjs
|
|
398
|
-
|
|
398
|
+
if defined?(ActionView::Helpers::PrototypeHelper)
|
|
399
|
+
assert_equal(<<HTML, render(<<HAML, :action_view))
|
|
399
400
|
window.location.reload();
|
|
400
401
|
HTML
|
|
401
402
|
= update_page do |p|
|
|
402
403
|
- p.reload
|
|
403
404
|
HAML
|
|
405
|
+
end
|
|
404
406
|
end
|
|
405
407
|
|
|
406
408
|
def test_cache
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: haml
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.2.0.alpha.
|
|
4
|
+
version: 3.2.0.alpha.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nathan Weizenbaum
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2011-
|
|
13
|
+
date: 2011-07-10 00:00:00 -04:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
@@ -33,6 +33,26 @@ dependencies:
|
|
|
33
33
|
- !ruby/object:Gem::Version
|
|
34
34
|
version: 0.5.9
|
|
35
35
|
version:
|
|
36
|
+
- !ruby/object:Gem::Dependency
|
|
37
|
+
name: hpricot
|
|
38
|
+
type: :development
|
|
39
|
+
version_requirement:
|
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
+
requirements:
|
|
42
|
+
- - ">="
|
|
43
|
+
- !ruby/object:Gem::Version
|
|
44
|
+
version: "0"
|
|
45
|
+
version:
|
|
46
|
+
- !ruby/object:Gem::Dependency
|
|
47
|
+
name: ruby_parser
|
|
48
|
+
type: :development
|
|
49
|
+
version_requirement:
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">="
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: "0"
|
|
55
|
+
version:
|
|
36
56
|
description: " Haml (HTML Abstraction Markup Language) is a layer on top of XHTML or XML\n that's designed to express the structure of XHTML or XML documents\n in a non-repetitive, elegant, easy way,\n using indentation rather than closing tags\n and allowing Ruby to be embedded with ease.\n It was originally envisioned as a plugin for Ruby on Rails,\n but it can function as a stand-alone templating engine.\n"
|
|
37
57
|
email: haml@googlegroups.com
|
|
38
58
|
executables:
|