radiant 0.6.7 → 0.6.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/CHANGELOG +35 -3
- data/CONTRIBUTORS +11 -1
- data/README +5 -3
- data/app/controllers/admin/welcome_controller.rb +7 -0
- data/app/migrate/020_add_session_info_to_users.rb +11 -0
- data/app/models/page.rb +22 -9
- data/app/models/standard_tags.rb +133 -10
- data/app/models/user.rb +9 -1
- data/app/views/admin/page/edit.html.haml +5 -4
- data/app/views/admin/welcome/login.html.haml +42 -24
- data/app/views/layouts/application.html.haml +1 -1
- data/config/environment.rb +4 -2
- data/db/migrate/020_add_session_info_to_users.rb +11 -0
- data/db/migrate/021_remove_session_expire_from_users.rb +9 -0
- data/db/schema.rb +3 -2
- data/lib/generators/instance/instance_generator.rb +2 -1
- data/lib/generators/instance/templates/instance_environment.rb +5 -3
- data/lib/login_system.rb +13 -0
- data/lib/radiant.rb +1 -1
- data/lib/radiant/admin_ui.rb +21 -21
- data/lib/radiant/extension/script.rb +251 -0
- data/lib/radiant/extension_loader.rb +22 -20
- data/lib/radiant/initializer.rb +1 -1
- data/lib/radiant/setup.rb +2 -0
- data/lib/tasks/framework.rake +39 -29
- data/public/500.html +1 -1
- data/public/javascripts/admin/admin.js +11 -9
- data/script/extension +5 -0
- data/spec/controllers/admin/user_controller_spec.rb +1 -1
- data/spec/controllers/admin/welcome_controller_spec.rb +31 -5
- data/spec/controllers/site_controller_spec.rb +15 -2
- data/spec/lib/login_system_spec.rb +106 -60
- data/spec/lib/radiant/extension/script_spec.rb +349 -0
- data/spec/lib/radiant/extension_loader_spec.rb +3 -0
- data/spec/models/page_spec.rb +62 -2
- data/spec/models/standard_tags_spec.rb +150 -3
- data/spec/models/user_spec.rb +28 -0
- data/spec/scenarios/file_not_found_scenario.rb +5 -0
- data/spec/scenarios/pages_scenario.rb +6 -0
- data/spec/scenarios/snippets_scenario.rb +4 -0
- data/test/fixtures/users.yml +11 -6
- data/vendor/plugins/haml/FAQ +138 -0
- data/vendor/plugins/haml/REVISION +1 -0
- data/vendor/plugins/haml/Rakefile +54 -62
- data/vendor/plugins/haml/VERSION +1 -1
- data/vendor/plugins/haml/init.rb +6 -1
- data/vendor/plugins/haml/lib/haml.rb +72 -12
- data/vendor/plugins/haml/lib/haml/buffer.rb +47 -40
- data/vendor/plugins/haml/lib/haml/engine.rb +20 -30
- data/vendor/plugins/haml/lib/haml/error.rb +4 -5
- data/vendor/plugins/haml/lib/haml/exec.rb +4 -2
- data/vendor/plugins/haml/lib/haml/filters.rb +30 -15
- data/vendor/plugins/haml/lib/haml/helpers.rb +47 -28
- data/vendor/plugins/haml/lib/haml/helpers/action_view_mods.rb +74 -25
- data/vendor/plugins/haml/lib/haml/precompiler.rb +92 -51
- data/vendor/plugins/haml/lib/haml/template.rb +11 -3
- data/vendor/plugins/haml/lib/haml/template/patch.rb +1 -1
- data/vendor/plugins/haml/lib/sass.rb +26 -3
- data/vendor/plugins/haml/lib/sass/constant.rb +26 -57
- data/vendor/plugins/haml/lib/sass/constant/literal.rb +1 -0
- data/vendor/plugins/haml/lib/sass/constant/nil.rb +9 -0
- data/vendor/plugins/haml/lib/sass/css.rb +17 -2
- data/vendor/plugins/haml/lib/sass/engine.rb +11 -5
- data/vendor/plugins/haml/test/haml/engine_test.rb +57 -39
- data/vendor/plugins/haml/test/haml/helper_test.rb +20 -4
- data/vendor/plugins/haml/test/haml/html2haml_test.rb +1 -3
- data/vendor/plugins/haml/test/haml/results/content_for_layout.xhtml +1 -2
- data/vendor/plugins/haml/test/haml/results/eval_suppressed.xhtml +2 -4
- data/vendor/plugins/haml/test/haml/results/filters.xhtml +12 -8
- data/vendor/plugins/haml/test/haml/results/helpers.xhtml +2 -5
- data/vendor/plugins/haml/test/haml/results/just_stuff.xhtml +1 -3
- data/vendor/plugins/haml/test/haml/results/nuke_inner_whitespace.xhtml +40 -0
- data/vendor/plugins/haml/test/haml/results/nuke_outer_whitespace.xhtml +148 -0
- data/vendor/plugins/haml/test/haml/results/original_engine.xhtml +2 -4
- data/vendor/plugins/haml/test/haml/results/tag_parsing.xhtml +1 -6
- data/vendor/plugins/haml/test/haml/results/very_basic.xhtml +2 -4
- data/vendor/plugins/haml/test/haml/results/whitespace_handling.xhtml +13 -21
- data/vendor/plugins/haml/test/haml/template_test.rb +31 -48
- data/vendor/plugins/haml/test/haml/templates/filters.haml +13 -0
- data/vendor/plugins/haml/test/haml/templates/helpers.haml +1 -1
- data/vendor/plugins/haml/test/haml/templates/just_stuff.haml +0 -1
- data/vendor/plugins/haml/test/haml/templates/nuke_inner_whitespace.haml +32 -0
- data/vendor/plugins/haml/test/haml/templates/nuke_outer_whitespace.haml +144 -0
- data/vendor/plugins/haml/test/haml/templates/partials.haml +1 -1
- data/vendor/plugins/haml/test/haml/templates/tag_parsing.haml +0 -3
- data/vendor/plugins/haml/test/haml/templates/whitespace_handling.haml +10 -10
- data/vendor/plugins/haml/test/sass/engine_test.rb +11 -5
- data/vendor/plugins/haml/test/sass/plugin_test.rb +2 -6
- data/vendor/plugins/haml/test/sass/results/constants.css +2 -0
- data/vendor/plugins/haml/test/sass/templates/constants.sass +3 -0
- data/vendor/plugins/haml/test/{haml/test_helper.rb → test_helper.rb} +4 -3
- metadata +21 -11
- data/vendor/plugins/haml/TODO +0 -9
- data/vendor/plugins/haml/extra/haml-mode.el +0 -328
- data/vendor/plugins/haml/extra/sass-mode.el +0 -88
- data/vendor/plugins/haml/test/profile.rb +0 -65
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
%p
|
|
2
|
+
%q< Foo
|
|
3
|
+
%p
|
|
4
|
+
%q{:a => 1 + 1}< Foo
|
|
5
|
+
%p
|
|
6
|
+
%q<= "Foo\nBar"
|
|
7
|
+
%p
|
|
8
|
+
%q{:a => 1 + 1}<= "Foo\nBar"
|
|
9
|
+
%p
|
|
10
|
+
%q<
|
|
11
|
+
Foo
|
|
12
|
+
Bar
|
|
13
|
+
%p
|
|
14
|
+
%q{:a => 1 + 1}<
|
|
15
|
+
Foo
|
|
16
|
+
Bar
|
|
17
|
+
%p
|
|
18
|
+
%q<
|
|
19
|
+
%div
|
|
20
|
+
Foo
|
|
21
|
+
Bar
|
|
22
|
+
%p
|
|
23
|
+
%q{:a => 1 + 1}<
|
|
24
|
+
%div
|
|
25
|
+
Foo
|
|
26
|
+
Bar
|
|
27
|
+
|
|
28
|
+
-# Regression test
|
|
29
|
+
%p
|
|
30
|
+
%q<= "foo"
|
|
31
|
+
%q{:a => 1 + 1}
|
|
32
|
+
bar
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
%p
|
|
2
|
+
%p
|
|
3
|
+
%q>
|
|
4
|
+
Foo
|
|
5
|
+
%p
|
|
6
|
+
%p
|
|
7
|
+
%q{:a => 1 + 1}>
|
|
8
|
+
Foo
|
|
9
|
+
%p
|
|
10
|
+
%p
|
|
11
|
+
%q> Foo
|
|
12
|
+
%p
|
|
13
|
+
%p
|
|
14
|
+
%q{:a => 1 + 1}> Foo
|
|
15
|
+
%p
|
|
16
|
+
%p
|
|
17
|
+
%q>
|
|
18
|
+
= "Foo"
|
|
19
|
+
%p
|
|
20
|
+
%p
|
|
21
|
+
%q{:a => 1 + 1}>
|
|
22
|
+
= "Foo"
|
|
23
|
+
%p
|
|
24
|
+
%p
|
|
25
|
+
%q>= "Foo"
|
|
26
|
+
%p
|
|
27
|
+
%p
|
|
28
|
+
%q{:a => 1 + 1}>= "Foo"
|
|
29
|
+
%p
|
|
30
|
+
%p
|
|
31
|
+
%q>
|
|
32
|
+
= "Foo\nBar"
|
|
33
|
+
%p
|
|
34
|
+
%p
|
|
35
|
+
%q{:a => 1 + 1}>
|
|
36
|
+
= "Foo\nBar"
|
|
37
|
+
%p
|
|
38
|
+
%p
|
|
39
|
+
%q>= "Foo\nBar"
|
|
40
|
+
%p
|
|
41
|
+
%p
|
|
42
|
+
%q{:a => 1 + 1}>= "Foo\nBar"
|
|
43
|
+
%p
|
|
44
|
+
%p
|
|
45
|
+
- tab_up
|
|
46
|
+
foo
|
|
47
|
+
%q>
|
|
48
|
+
Foo
|
|
49
|
+
bar
|
|
50
|
+
- tab_down
|
|
51
|
+
%p
|
|
52
|
+
%p
|
|
53
|
+
- tab_up
|
|
54
|
+
foo
|
|
55
|
+
%q{:a => 1 + 1}>
|
|
56
|
+
Foo
|
|
57
|
+
bar
|
|
58
|
+
- tab_down
|
|
59
|
+
%p
|
|
60
|
+
%p
|
|
61
|
+
- tab_up
|
|
62
|
+
foo
|
|
63
|
+
%q> Foo
|
|
64
|
+
bar
|
|
65
|
+
- tab_down
|
|
66
|
+
%p
|
|
67
|
+
%p
|
|
68
|
+
- tab_up
|
|
69
|
+
foo
|
|
70
|
+
%q{:a => 1 + 1}> Foo
|
|
71
|
+
bar
|
|
72
|
+
- tab_down
|
|
73
|
+
%p
|
|
74
|
+
%p
|
|
75
|
+
- tab_up
|
|
76
|
+
foo
|
|
77
|
+
%q>
|
|
78
|
+
= "Foo"
|
|
79
|
+
bar
|
|
80
|
+
- tab_down
|
|
81
|
+
%p
|
|
82
|
+
%p
|
|
83
|
+
- tab_up
|
|
84
|
+
foo
|
|
85
|
+
%q{:a => 1 + 1}>
|
|
86
|
+
= "Foo"
|
|
87
|
+
bar
|
|
88
|
+
- tab_down
|
|
89
|
+
%p
|
|
90
|
+
%p
|
|
91
|
+
- tab_up
|
|
92
|
+
foo
|
|
93
|
+
%q>= "Foo"
|
|
94
|
+
bar
|
|
95
|
+
- tab_down
|
|
96
|
+
%p
|
|
97
|
+
%p
|
|
98
|
+
- tab_up
|
|
99
|
+
foo
|
|
100
|
+
%q{:a => 1 + 1}>= "Foo"
|
|
101
|
+
bar
|
|
102
|
+
- tab_down
|
|
103
|
+
%p
|
|
104
|
+
%p
|
|
105
|
+
- tab_up
|
|
106
|
+
foo
|
|
107
|
+
%q>
|
|
108
|
+
= "Foo\nBar"
|
|
109
|
+
bar
|
|
110
|
+
- tab_down
|
|
111
|
+
%p
|
|
112
|
+
%p
|
|
113
|
+
- tab_up
|
|
114
|
+
foo
|
|
115
|
+
%q{:a => 1 + 1}>
|
|
116
|
+
= "Foo\nBar"
|
|
117
|
+
bar
|
|
118
|
+
- tab_down
|
|
119
|
+
%p
|
|
120
|
+
%p
|
|
121
|
+
- tab_up
|
|
122
|
+
foo
|
|
123
|
+
%q>= "Foo\nBar"
|
|
124
|
+
bar
|
|
125
|
+
- tab_down
|
|
126
|
+
%p
|
|
127
|
+
%p
|
|
128
|
+
- tab_up
|
|
129
|
+
foo
|
|
130
|
+
%q{:a => 1 + 1}>= "Foo\nBar"
|
|
131
|
+
bar
|
|
132
|
+
- tab_down
|
|
133
|
+
%p
|
|
134
|
+
%p
|
|
135
|
+
%q>
|
|
136
|
+
%p
|
|
137
|
+
%p
|
|
138
|
+
%q>/
|
|
139
|
+
%p
|
|
140
|
+
%p
|
|
141
|
+
%q{:a => 1 + 1}>
|
|
142
|
+
%p
|
|
143
|
+
%p
|
|
144
|
+
%q{:a => 1 + 1}>/
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
#whitespace_test
|
|
2
|
-
=
|
|
3
|
-
=
|
|
4
|
-
~
|
|
5
|
-
~
|
|
6
|
-
#flattened~
|
|
2
|
+
= test_partial "text_area", :value => "Oneline"
|
|
3
|
+
= test_partial "text_area", :value => "Two\nlines"
|
|
4
|
+
~ test_partial "text_area", :value => "Oneline"
|
|
5
|
+
~ test_partial "text_area", :value => "Two\nlines"
|
|
6
|
+
#flattened~ test_partial "text_area", :value => "Two\nlines"
|
|
7
7
|
.hithere
|
|
8
8
|
~ "Foo bar"
|
|
9
9
|
~ "<pre>foo bar</pre>"
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
~ ['a', 'b', 'c'].map do |a|
|
|
16
16
|
- "<textarea>\n#{a}\n</textarea>"
|
|
17
17
|
#whitespace_test
|
|
18
|
-
=
|
|
19
|
-
=
|
|
20
|
-
= find_and_preserve
|
|
21
|
-
= find_and_preserve
|
|
22
|
-
#flattened= find_and_preserve
|
|
18
|
+
= test_partial "text_area", :value => "Oneline"
|
|
19
|
+
= test_partial "text_area", :value => "Two\nlines"
|
|
20
|
+
= find_and_preserve test_partial("text_area", :value => "Oneline")
|
|
21
|
+
= find_and_preserve test_partial("text_area", :value => "Two\nlines")
|
|
22
|
+
#flattened= find_and_preserve test_partial("text_area", :value => "Two\nlines")
|
|
23
23
|
.hithere
|
|
24
24
|
= find_and_preserve("Foo bar")
|
|
25
25
|
= find_and_preserve("<pre>foo bar</pre>")
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
|
-
|
|
3
|
-
require 'test/unit'
|
|
4
|
-
require File.dirname(__FILE__) + '/../../lib/sass'
|
|
2
|
+
require File.dirname(__FILE__) + '/../test_helper'
|
|
5
3
|
require 'sass/engine'
|
|
6
4
|
|
|
7
5
|
class SassEngineTest < Test::Unit::TestCase
|
|
@@ -58,6 +56,8 @@ END
|
|
|
58
56
|
"=foo\n :color red\n.bar\n +bang" => "Undefined mixin 'bang'.",
|
|
59
57
|
".bar\n =foo\n :color red\n" => "Mixins may only be defined at the root of a document.",
|
|
60
58
|
"=foo\n :color red\n.bar\n +foo\n :color red" => "Illegal nesting: Nothing may be nested beneath mixin directives.",
|
|
59
|
+
" a\n b: c" => ["Indenting at the beginning of the document is illegal.", 1],
|
|
60
|
+
" \n \n\t\n a\n b: c" => ["Indenting at the beginning of the document is illegal.", 4],
|
|
61
61
|
|
|
62
62
|
# Regression tests
|
|
63
63
|
"a\n b:\n c\n d" => ["Illegal nesting: Only attributes may be nested beneath attributes.", 3]
|
|
@@ -130,8 +130,8 @@ END
|
|
|
130
130
|
end
|
|
131
131
|
|
|
132
132
|
def test_default_function
|
|
133
|
-
assert_equal("foo {\n bar: url(foo.png); }\n",
|
|
134
|
-
|
|
133
|
+
assert_equal("foo {\n bar: url(foo.png); }\n", render("foo\n bar = url(foo.png)\n"));
|
|
134
|
+
assert_equal("foo {\n bar: url(); }\n", render("foo\n bar = url()\n"));
|
|
135
135
|
end
|
|
136
136
|
|
|
137
137
|
def test_basic_multiline_selector
|
|
@@ -255,6 +255,12 @@ END
|
|
|
255
255
|
renders_correctly "mixins", { :style => :expanded }
|
|
256
256
|
end
|
|
257
257
|
|
|
258
|
+
def test_mixins_dont_interfere_with_sibling_combinator
|
|
259
|
+
assert_equal("foo + bar {\n a: b; }\n", render("foo\n + bar\n a: b"))
|
|
260
|
+
assert_equal("foo + bar {\n a: b; }\nfoo + baz {\n c: d; }\n",
|
|
261
|
+
render("foo\n +\n bar\n a: b\n baz\n c: d"))
|
|
262
|
+
end
|
|
263
|
+
|
|
258
264
|
private
|
|
259
265
|
|
|
260
266
|
def render(sass, options = {})
|
|
@@ -3,13 +3,9 @@
|
|
|
3
3
|
MERB_ENV = RAILS_ENV = 'testing'
|
|
4
4
|
RAILS_ROOT = '.'
|
|
5
5
|
|
|
6
|
-
require '
|
|
7
|
-
require 'fileutils'
|
|
8
|
-
require File.dirname(__FILE__) + '/../../lib/sass'
|
|
9
|
-
require 'rubygems'
|
|
10
|
-
|
|
11
|
-
require 'action_controller'
|
|
6
|
+
require File.dirname(__FILE__) + '/../test_helper'
|
|
12
7
|
require 'sass/plugin'
|
|
8
|
+
require 'fileutils'
|
|
13
9
|
|
|
14
10
|
class SassPluginTest < Test::Unit::TestCase
|
|
15
11
|
@@templates = %w{
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# allows testing with edge Rails by creating a test/rails symlink
|
|
2
|
-
linked_rails = File.dirname(__FILE__) + '
|
|
2
|
+
linked_rails = File.dirname(__FILE__) + '/rails'
|
|
3
3
|
|
|
4
|
-
if File.exists? linked_rails
|
|
4
|
+
if File.exists?(linked_rails) && !$:.include?(linked_rails + '/activesupport/lib')
|
|
5
5
|
puts "[ using linked Rails ]"
|
|
6
6
|
$:.unshift linked_rails + '/activesupport/lib'
|
|
7
7
|
$:.unshift linked_rails + '/actionpack/lib'
|
|
@@ -12,4 +12,5 @@ require 'action_controller'
|
|
|
12
12
|
require 'action_view'
|
|
13
13
|
|
|
14
14
|
require 'test/unit'
|
|
15
|
-
require File.dirname(__FILE__) + '
|
|
15
|
+
require File.dirname(__FILE__) + '/../lib/haml'
|
|
16
|
+
require File.dirname(__FILE__) + '/../lib/sass'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: radiant
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors: []
|
|
7
7
|
|
|
@@ -9,11 +9,12 @@ autorequire: radiant
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2008-
|
|
12
|
+
date: 2008-07-27 00:00:00 -04:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rake
|
|
17
|
+
type: :runtime
|
|
17
18
|
version_requirement:
|
|
18
19
|
version_requirements: !ruby/object:Gem::Requirement
|
|
19
20
|
requirements:
|
|
@@ -61,6 +62,8 @@ files:
|
|
|
61
62
|
- app/helpers/admin/welcome_helper.rb
|
|
62
63
|
- app/helpers/application_helper.rb
|
|
63
64
|
- app/helpers/site_helper.rb
|
|
65
|
+
- app/migrate
|
|
66
|
+
- app/migrate/020_add_session_info_to_users.rb
|
|
64
67
|
- app/models
|
|
65
68
|
- app/models/env_dump_page.rb
|
|
66
69
|
- app/models/file_not_found_page.rb
|
|
@@ -151,6 +154,8 @@ files:
|
|
|
151
154
|
- db/migrate/017_rename_created_by_updated_by_columns.rb
|
|
152
155
|
- db/migrate/018_add_description_and_keywords_to_pages.rb
|
|
153
156
|
- db/migrate/019_add_salt_to_users.rb
|
|
157
|
+
- db/migrate/020_add_session_info_to_users.rb
|
|
158
|
+
- db/migrate/021_remove_session_expire_from_users.rb
|
|
154
159
|
- db/schema.rb
|
|
155
160
|
- db/templates
|
|
156
161
|
- db/templates/empty.yml
|
|
@@ -249,6 +254,8 @@ files:
|
|
|
249
254
|
- lib/radiant/admin_ui/region_partials.rb
|
|
250
255
|
- lib/radiant/admin_ui/region_set.rb
|
|
251
256
|
- lib/radiant/admin_ui.rb
|
|
257
|
+
- lib/radiant/extension
|
|
258
|
+
- lib/radiant/extension/script.rb
|
|
252
259
|
- lib/radiant/extension.rb
|
|
253
260
|
- lib/radiant/extension_loader.rb
|
|
254
261
|
- lib/radiant/extension_migrator.rb
|
|
@@ -319,6 +326,7 @@ files:
|
|
|
319
326
|
- script/breakpointer
|
|
320
327
|
- script/console
|
|
321
328
|
- script/destroy
|
|
329
|
+
- script/extension
|
|
322
330
|
- script/generate
|
|
323
331
|
- script/performance
|
|
324
332
|
- script/performance/benchmarker
|
|
@@ -375,6 +383,8 @@ files:
|
|
|
375
383
|
- spec/lib/radiant/admin_ui/region_partials_spec.rb
|
|
376
384
|
- spec/lib/radiant/admin_ui/region_set_spec.rb
|
|
377
385
|
- spec/lib/radiant/admin_ui_spec.rb
|
|
386
|
+
- spec/lib/radiant/extension
|
|
387
|
+
- spec/lib/radiant/extension/script_spec.rb
|
|
378
388
|
- spec/lib/radiant/extension_loader_spec.rb
|
|
379
389
|
- spec/lib/radiant/extension_migrator_spec.rb
|
|
380
390
|
- spec/lib/radiant/extension_spec.rb
|
|
@@ -667,9 +677,7 @@ files:
|
|
|
667
677
|
- vendor/plugins/haml/bin/haml
|
|
668
678
|
- vendor/plugins/haml/bin/html2haml
|
|
669
679
|
- vendor/plugins/haml/bin/sass
|
|
670
|
-
- vendor/plugins/haml/
|
|
671
|
-
- vendor/plugins/haml/extra/haml-mode.el
|
|
672
|
-
- vendor/plugins/haml/extra/sass-mode.el
|
|
680
|
+
- vendor/plugins/haml/FAQ
|
|
673
681
|
- vendor/plugins/haml/init.rb
|
|
674
682
|
- vendor/plugins/haml/lib
|
|
675
683
|
- vendor/plugins/haml/lib/haml
|
|
@@ -693,6 +701,7 @@ files:
|
|
|
693
701
|
- vendor/plugins/haml/lib/sass/constant
|
|
694
702
|
- vendor/plugins/haml/lib/sass/constant/color.rb
|
|
695
703
|
- vendor/plugins/haml/lib/sass/constant/literal.rb
|
|
704
|
+
- vendor/plugins/haml/lib/sass/constant/nil.rb
|
|
696
705
|
- vendor/plugins/haml/lib/sass/constant/number.rb
|
|
697
706
|
- vendor/plugins/haml/lib/sass/constant/operation.rb
|
|
698
707
|
- vendor/plugins/haml/lib/sass/constant/string.rb
|
|
@@ -715,6 +724,7 @@ files:
|
|
|
715
724
|
- vendor/plugins/haml/MIT-LICENSE
|
|
716
725
|
- vendor/plugins/haml/Rakefile
|
|
717
726
|
- vendor/plugins/haml/README.rdoc
|
|
727
|
+
- vendor/plugins/haml/REVISION
|
|
718
728
|
- vendor/plugins/haml/test
|
|
719
729
|
- vendor/plugins/haml/test/benchmark.rb
|
|
720
730
|
- vendor/plugins/haml/test/haml
|
|
@@ -733,6 +743,8 @@ files:
|
|
|
733
743
|
- vendor/plugins/haml/test/haml/results/helpful.xhtml
|
|
734
744
|
- vendor/plugins/haml/test/haml/results/just_stuff.xhtml
|
|
735
745
|
- vendor/plugins/haml/test/haml/results/list.xhtml
|
|
746
|
+
- vendor/plugins/haml/test/haml/results/nuke_inner_whitespace.xhtml
|
|
747
|
+
- vendor/plugins/haml/test/haml/results/nuke_outer_whitespace.xhtml
|
|
736
748
|
- vendor/plugins/haml/test/haml/results/original_engine.xhtml
|
|
737
749
|
- vendor/plugins/haml/test/haml/results/partials.xhtml
|
|
738
750
|
- vendor/plugins/haml/test/haml/results/silent_script.xhtml
|
|
@@ -760,6 +772,8 @@ files:
|
|
|
760
772
|
- vendor/plugins/haml/test/haml/templates/helpful.haml
|
|
761
773
|
- vendor/plugins/haml/test/haml/templates/just_stuff.haml
|
|
762
774
|
- vendor/plugins/haml/test/haml/templates/list.haml
|
|
775
|
+
- vendor/plugins/haml/test/haml/templates/nuke_inner_whitespace.haml
|
|
776
|
+
- vendor/plugins/haml/test/haml/templates/nuke_outer_whitespace.haml
|
|
763
777
|
- vendor/plugins/haml/test/haml/templates/original_engine.haml
|
|
764
778
|
- vendor/plugins/haml/test/haml/templates/partialize.haml
|
|
765
779
|
- vendor/plugins/haml/test/haml/templates/partials.haml
|
|
@@ -768,8 +782,6 @@ files:
|
|
|
768
782
|
- vendor/plugins/haml/test/haml/templates/tag_parsing.haml
|
|
769
783
|
- vendor/plugins/haml/test/haml/templates/very_basic.haml
|
|
770
784
|
- vendor/plugins/haml/test/haml/templates/whitespace_handling.haml
|
|
771
|
-
- vendor/plugins/haml/test/haml/test_helper.rb
|
|
772
|
-
- vendor/plugins/haml/test/profile.rb
|
|
773
785
|
- vendor/plugins/haml/test/sass
|
|
774
786
|
- vendor/plugins/haml/test/sass/engine_test.rb
|
|
775
787
|
- vendor/plugins/haml/test/sass/plugin_test.rb
|
|
@@ -811,7 +823,7 @@ files:
|
|
|
811
823
|
- vendor/plugins/haml/test/sass/templates/subdir/nested_subdir
|
|
812
824
|
- vendor/plugins/haml/test/sass/templates/subdir/nested_subdir/nested_subdir.sass
|
|
813
825
|
- vendor/plugins/haml/test/sass/templates/subdir/subdir.sass
|
|
814
|
-
- vendor/plugins/haml/
|
|
826
|
+
- vendor/plugins/haml/test/test_helper.rb
|
|
815
827
|
- vendor/plugins/haml/VERSION
|
|
816
828
|
- vendor/plugins/rspec
|
|
817
829
|
- vendor/plugins/rspec/bin
|
|
@@ -3000,8 +3012,6 @@ rdoc_options:
|
|
|
3000
3012
|
- --exclude
|
|
3001
3013
|
- log
|
|
3002
3014
|
- --exclude
|
|
3003
|
-
- pkg
|
|
3004
|
-
- --exclude
|
|
3005
3015
|
- public
|
|
3006
3016
|
- --exclude
|
|
3007
3017
|
- script
|
|
@@ -3032,7 +3042,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
3032
3042
|
requirements: []
|
|
3033
3043
|
|
|
3034
3044
|
rubyforge_project: radiant
|
|
3035
|
-
rubygems_version: 1.
|
|
3045
|
+
rubygems_version: 1.2.0
|
|
3036
3046
|
signing_key:
|
|
3037
3047
|
specification_version: 2
|
|
3038
3048
|
summary: A no-fluff content management system designed for small teams.
|