compass 0.8.16 → 0.8.17
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.markdown +6 -0
- data/REVISION +1 -1
- data/VERSION.yml +1 -1
- data/lib/compass/sass_extensions/functions/enumerate.rb +2 -2
- metadata +3 -3
data/CHANGELOG.markdown
CHANGED
@@ -1,6 +1,12 @@
|
|
1
1
|
COMPASS CHANGELOG
|
2
2
|
=================
|
3
3
|
|
4
|
+
0.8.17 (September 24, 2009)
|
5
|
+
---------------------------
|
6
|
+
|
7
|
+
* The enumerate function now accepts an optional fourth parameter that specifies the separator to be used.
|
8
|
+
Enables fixing a bug in the Compass 960 Plugin.
|
9
|
+
|
4
10
|
0.8.16 (September 12, 2009)
|
5
11
|
---------------------------
|
6
12
|
|
data/REVISION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
2465baba525421ac9cac1774d940f9e27971710d
|
data/VERSION.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
module Compass::SassExtensions::Functions::Enumerate
|
2
|
-
def enumerate(prefix, from, through)
|
3
|
-
selectors = (from.value..through.value).map{|i| "#{prefix.value}
|
2
|
+
def enumerate(prefix, from, through, separator = "-")
|
3
|
+
selectors = (from.value..through.value).map{|i| "#{prefix.value}#{separator}#{i}"}.join(", ")
|
4
4
|
Sass::Script::String.new(selectors)
|
5
5
|
end
|
6
6
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.17
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Eppstein
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-09-
|
12
|
+
date: 2009-09-24 00:00:00 -07:00
|
13
13
|
default_executable: compass
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -330,7 +330,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
330
330
|
requirements: []
|
331
331
|
|
332
332
|
rubyforge_project: compass
|
333
|
-
rubygems_version: 1.3.
|
333
|
+
rubygems_version: 1.3.3
|
334
334
|
signing_key:
|
335
335
|
specification_version: 3
|
336
336
|
summary: A Real Stylesheet Framework
|