SassyLists 0.2.0 → 0.2.1
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.md +2 -0
- data/lib/SassyLists.rb +2 -4
- data/stylesheets/SassyLists/_random-value.scss +1 -1
- metadata +1 -1
data/CHANGELOG.md
CHANGED
data/lib/SassyLists.rb
CHANGED
@@ -4,9 +4,7 @@
|
|
4
4
|
# extension.
|
5
5
|
require 'compass'
|
6
6
|
|
7
|
-
|
8
|
-
# its files
|
9
|
-
# Replace 'ListFunctions' with the name of your extension. Spaces allowed.
|
7
|
+
require 'compass'
|
10
8
|
extension_path = File.expand_path(File.join(File.dirname(__FILE__), ".."))
|
11
9
|
Compass::Frameworks.register('SassyLists', :path => extension_path)
|
12
10
|
|
@@ -17,7 +15,7 @@ Compass::Frameworks.register('SassyLists', :path => extension_path)
|
|
17
15
|
# a prerelease version
|
18
16
|
# Date is in the form of YYYY-MM-DD
|
19
17
|
module SassyLists
|
20
|
-
VERSION = "0.2.
|
18
|
+
VERSION = "0.2.1"
|
21
19
|
DATE = "2013-10-25"
|
22
20
|
end
|
23
21
|
|