haml-edge 2.1.56 → 2.3.0
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/Rakefile +2 -1
- data/VERSION +1 -1
- metadata +1 -1
data/EDGE_GEM_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.3.0
|
data/Rakefile
CHANGED
|
@@ -262,7 +262,7 @@ ensure
|
|
|
262
262
|
end
|
|
263
263
|
|
|
264
264
|
task :handle_update do
|
|
265
|
-
unless ENV["REF"] =~ %r{^refs/heads/(master|(?:haml|sass)-pages)$}
|
|
265
|
+
unless ENV["REF"] =~ %r{^refs/heads/(master|stable|(?:haml|sass)-pages)$}
|
|
266
266
|
puts "#{'=' * 20} Ignoring rake handle_update REF=#{ENV["REF"].inspect}"
|
|
267
267
|
next
|
|
268
268
|
end
|
|
@@ -279,6 +279,7 @@ task :handle_update do
|
|
|
279
279
|
|
|
280
280
|
if branch == "master"
|
|
281
281
|
sh %{rake release_edge --trace}
|
|
282
|
+
elsif branch == "stable"
|
|
282
283
|
sh %{rake pages --trace PROJ=haml}
|
|
283
284
|
sh %{rake pages --trace PROJ=sass}
|
|
284
285
|
elsif branch =~ /^(haml|sass)-pages$/
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.3.0
|