compass-aura 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/compass-aura.gemspec +2 -2
- data/lib/compass-aura.rb +3 -6
- metadata +2 -2
data/compass-aura.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{compass-aura}
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.3"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.3.5")
|
8
8
|
s.authors = ["Sam Richard"]
|
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
|
|
21
21
|
s.homepage = %q{https://github.com/Snugug/Aura}
|
22
22
|
s.require_paths = ["lib"]
|
23
23
|
s.rubyforge_project = %q{compass-aura}
|
24
|
-
s.rubygems_version = %q{1.
|
24
|
+
s.rubygems_version = %q{1.7.2}
|
25
25
|
s.summary = %q{Typography based Responsive Framework.}
|
26
26
|
s.add_dependency(%q<compass>, ["~> 0.11"])
|
27
27
|
end
|
data/lib/compass-aura.rb
CHANGED
@@ -1,15 +1,12 @@
|
|
1
1
|
require 'compass'
|
2
2
|
require 'susy'
|
3
3
|
require 'modular-scale'
|
4
|
-
|
5
|
-
|
6
|
-
stylesheets_dir = File.join(base_directory, 'sass')
|
7
|
-
Compass::Frameworks.register('aura', :stylesheets_directory => stylesheets_dir)
|
4
|
+
Compass::Frameworks.register('aura',
|
5
|
+
:stylesheets_directory => File.join(File.dirname(__FILE__), '..', 'sass'))
|
8
6
|
|
9
7
|
module Aura
|
10
8
|
|
11
|
-
VERSION = "0.1.
|
9
|
+
VERSION = "0.1.3"
|
12
10
|
DATE = "2012-02-14"
|
13
11
|
|
14
12
|
end
|
15
|
-
|