SassyExport 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/SassyExport.rb +3 -1
- metadata +1 -1
data/lib/SassyExport.rb
CHANGED
@@ -4,13 +4,15 @@
|
|
4
4
|
# ----------------------------------------------------------------------------------------------------
|
5
5
|
|
6
6
|
require "SassyJSON"
|
7
|
+
extension_path = File.expand_path(File.join(File.dirname(__FILE__), ".."))
|
8
|
+
Compass::Frameworks.register('SassyExport', :path => extension_path)
|
7
9
|
|
8
10
|
# Version is a number. If a version contains alphas, it will be created as a prerelease version
|
9
11
|
# Date is in the form of YYYY-MM-DD
|
10
12
|
# ----------------------------------------------------------------------------------------------------
|
11
13
|
|
12
14
|
module SassyExport
|
13
|
-
VERSION = "1.0.
|
15
|
+
VERSION = "1.0.3"
|
14
16
|
DATE = "2014-05-31"
|
15
17
|
end
|
16
18
|
|