compass-aura 0.1.0
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/compass-aura.gemspec +24 -0
- data/lib/compass-aura.rb +11 -0
- data/stylesheets/_aura.scss +13 -0
- metadata +79 -0
@@ -0,0 +1,24 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = %q{compass-aura}
|
5
|
+
s.version = "0.1.0"
|
6
|
+
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 1.3.5")
|
8
|
+
s.authors = ["Sam Richard"]
|
9
|
+
s.date = %q{2012-01-30}
|
10
|
+
s.description = %q{Typography based Responsive Framework utilizing Susy and Modular Scale.}
|
11
|
+
s.email = %w{snugug@gmail.com}
|
12
|
+
s.has_rdoc = false
|
13
|
+
s.files = [
|
14
|
+
"compass-aura.gemspec",
|
15
|
+
"lib/compass-aura.rb",
|
16
|
+
"stylesheets/_aura.scss"
|
17
|
+
]
|
18
|
+
s.homepage = %q{https://github.com/Snugug/Aura}
|
19
|
+
s.require_paths = ["lib"]
|
20
|
+
s.rubyforge_project = %q{compass-aura}
|
21
|
+
s.rubygems_version = %q{1.3.6}
|
22
|
+
s.summary = %q{Typography based Responsive Framework.}
|
23
|
+
s.add_dependency(%q<compass>, ["~> 0.11"])
|
24
|
+
end
|
data/lib/compass-aura.rb
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
//////////////////////////////
|
2
|
+
// Requires Susy, so Import Susy
|
3
|
+
//////////////////////////////
|
4
|
+
@import 'susy';
|
5
|
+
@import 'modular-scale';
|
6
|
+
|
7
|
+
//////////////////////////////
|
8
|
+
// Aurora Variables, Functions, Mixins
|
9
|
+
//////////////////////////////
|
10
|
+
@import 'aura/variables';
|
11
|
+
@import 'aura/functions';
|
12
|
+
@import 'aura/mixins';
|
13
|
+
|
metadata
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: compass-aura
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
version: 0.1.0
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Sam Richard
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2012-01-30 00:00:00 -05:00
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: compass
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ~>
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
segments:
|
28
|
+
- 0
|
29
|
+
- 11
|
30
|
+
version: "0.11"
|
31
|
+
type: :runtime
|
32
|
+
version_requirements: *id001
|
33
|
+
description: Typography based Responsive Framework utilizing Susy and Modular Scale.
|
34
|
+
email:
|
35
|
+
- snugug@gmail.com
|
36
|
+
executables: []
|
37
|
+
|
38
|
+
extensions: []
|
39
|
+
|
40
|
+
extra_rdoc_files: []
|
41
|
+
|
42
|
+
files:
|
43
|
+
- compass-aura.gemspec
|
44
|
+
- lib/compass-aura.rb
|
45
|
+
- stylesheets/_aura.scss
|
46
|
+
has_rdoc: true
|
47
|
+
homepage: https://github.com/Snugug/Aura
|
48
|
+
licenses: []
|
49
|
+
|
50
|
+
post_install_message:
|
51
|
+
rdoc_options: []
|
52
|
+
|
53
|
+
require_paths:
|
54
|
+
- lib
|
55
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - ">="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
segments:
|
60
|
+
- 0
|
61
|
+
version: "0"
|
62
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
63
|
+
requirements:
|
64
|
+
- - ">="
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
segments:
|
67
|
+
- 1
|
68
|
+
- 3
|
69
|
+
- 5
|
70
|
+
version: 1.3.5
|
71
|
+
requirements: []
|
72
|
+
|
73
|
+
rubyforge_project: compass-aura
|
74
|
+
rubygems_version: 1.3.6
|
75
|
+
signing_key:
|
76
|
+
specification_version: 3
|
77
|
+
summary: Typography based Responsive Framework.
|
78
|
+
test_files: []
|
79
|
+
|