gridle 1.3.24 → 1.3.25
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/gridle.rb +4 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 068ae091e4411fc4d2179289fdfd833c0f03609d
|
4
|
+
data.tar.gz: 8d1666c20c29ac3e6bbf7d31a373884890391b47
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 495f58ba5f0e818e26070357b5dc8b40f3f4b1c8f382d6894c03e1f92eb9fdd7a17c3d3c11c6c56afa27c3c89034f3a953599878f9a904fe982dcff8b3444b23
|
7
|
+
data.tar.gz: 467719edcf8d232a90c915946ed65e245e60ab20bcdb76978294b5b67ca6f7e4e3d88bb9a0c4a4c9c83b6cd83e8670a1b7392b61937aca346857ecfc64d81e40
|
data/lib/gridle.rb
CHANGED
@@ -2,12 +2,13 @@
|
|
2
2
|
# These are the requires you would normally put in your config.rb file
|
3
3
|
# By default, you should always included Compass. Do not include your
|
4
4
|
# extension.
|
5
|
+
require 'compass'
|
5
6
|
|
6
7
|
# This tells Compass what your Compass extension is called, and where to find
|
7
8
|
# its files
|
8
9
|
# Replace 'extension' with the name of your extension. Spaces allowed.
|
9
|
-
|
10
|
-
|
10
|
+
extension_path = File.expand_path(File.join(File.dirname(__FILE__), ".."))
|
11
|
+
Compass::Frameworks.register('gridle', :path => extension_path)
|
11
12
|
|
12
13
|
# Version and date of version for your Compass extension.
|
13
14
|
# Replace Extension with the name of your extension
|
@@ -16,7 +17,7 @@
|
|
16
17
|
# a prerelease version
|
17
18
|
# Date is in the form of YYYY-MM-DD
|
18
19
|
module Extension
|
19
|
-
VERSION = "1.3.
|
20
|
+
VERSION = "1.3.25"
|
20
21
|
DATE = "2014-06-12"
|
21
22
|
end
|
22
23
|
|