haml-edge 3.1.65 → 3.1.66
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/EDGE_GEM_VERSION +1 -1
- data/README.md +1 -1
- data/VERSION +1 -1
- data/lib/haml/exec.rb +1 -1
- metadata +1 -1
data/EDGE_GEM_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.1.
|
|
1
|
+
3.1.66
|
data/README.md
CHANGED
|
@@ -30,7 +30,7 @@ For more information on these commands, check out
|
|
|
30
30
|
sass --help
|
|
31
31
|
|
|
32
32
|
To install Haml and Sass in Rails 2,
|
|
33
|
-
just add `gem "haml"` to `config/environment.rb`.
|
|
33
|
+
just add `config.gem "haml"` to `config/environment.rb`.
|
|
34
34
|
In Rails 3, add `gem "haml"` to your Gemfile instead.
|
|
35
35
|
and both Haml and Sass will be installed.
|
|
36
36
|
Views with the `.html.haml` extension will automatically use Haml.
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.1.
|
|
1
|
+
3.1.66
|
data/lib/haml/exec.rb
CHANGED
|
@@ -207,7 +207,7 @@ END
|
|
|
207
207
|
"haml --rails will no longer work in the next version of #{@name}.", "")
|
|
208
208
|
elsif File.exists?(env) && File.open(env) {|env| env.grep(/config\.gem/)}
|
|
209
209
|
puts("haml --rails isn't needed for Rails 2.1 or greater.",
|
|
210
|
-
"Add 'gem \"haml\"' to config/environment.rb instead.", "",
|
|
210
|
+
"Add 'config.gem \"haml\"' to config/environment.rb instead.", "",
|
|
211
211
|
"haml --rails will no longer work in the next version of #{@name}.", "")
|
|
212
212
|
end
|
|
213
213
|
|