atypical-sass 0.0.8 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,8 @@
1
1
  require 'compass'
2
2
 
3
- extension_path = File.expand_path(File.join(File.dirname(__FILE__), ".."))
4
- Compass::Frameworks.register('atypicalmass', :path => extension_path) if defined?(Compass)
3
+ Compass::Frameworks.register("atypicalmass", :path => "#{File.dirname(__FILE__)}/..")
4
+
5
+ module AtypicalSass
6
+ VERSION = "0.0.9"
7
+ DATE = "2013-08-05"
8
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: atypical-sass
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -43,18 +43,16 @@ dependencies:
43
43
  - - ! '>='
44
44
  - !ruby/object:Gem::Version
45
45
  version: 0.12.2
46
- description: Atypical Mass Compass toolkit
46
+ description: Atypical Mass shared Compass toolkit
47
47
  email:
48
48
  - ben@atypicalmass.com
49
49
  executables: []
50
50
  extensions: []
51
51
  extra_rdoc_files: []
52
52
  files:
53
- - atypical-sass.gemspec
54
- - README.md
55
53
  - lib/atypical-sass.rb
56
- - _atypicalmass.scss
57
54
  - stylesheets/atypicalmass/_mixins.scss
55
+ - stylesheets/_atypicalmass.scss
58
56
  homepage: https://github.com/atypicalmass/atypical-sass
59
57
  licenses:
60
58
  - MIT
@@ -79,5 +77,5 @@ rubyforge_project:
79
77
  rubygems_version: 1.8.24
80
78
  signing_key:
81
79
  specification_version: 3
82
- summary: Our shared Compass toolkit, Gemified
80
+ summary: Atypical Sass is our shared Compass toolkit, Gemified
83
81
  test_files: []
data/README.md DELETED
@@ -1,18 +0,0 @@
1
- Atypical Sass
2
- ===========
3
-
4
- Our shared Compass toolkit, Gemified.
5
-
6
- In your main Compass "imports" file or wherever you like:
7
-
8
- @import "compass";
9
- @import "atypicalmass/mixins";
10
-
11
- Then, you can use the mixins as we do.
12
-
13
- You'll need to set your base font, and icon font stacks:
14
-
15
- $font-base:Arial,sans-serif,etc;
16
- $font-icon:"ICON FONT NAME";
17
-
18
- If you don't set them they will default to `Arial,sans-serif` and `"icons",$font-base` respectively.
@@ -1,25 +0,0 @@
1
- Gem::Specification.new do |s|
2
- s.name = %q{atypical-sass}
3
- s.version = "0.0.8"
4
- s.date = "2013-08-05"
5
-
6
- s.required_rubygems_version = Gem::Requirement.new(">= 1.3.5")
7
- s.authors = ["Ben Edwards"]
8
- s.description = %q{Atypical Mass Compass toolkit}
9
- s.email = %w{ben@atypicalmass.com}
10
- s.has_rdoc = false
11
- s.files = [
12
- "atypical-sass.gemspec",
13
- "README.md",
14
- "lib/atypical-sass.rb",
15
- "_atypicalmass.scss",
16
- "stylesheets/atypicalmass/_mixins.scss"
17
- ]
18
- s.homepage = %q{https://github.com/atypicalmass/atypical-sass}
19
- s.license = "MIT"
20
- s.require_paths = ["lib"]
21
- s.rubygems_version = %q{1.3.6}
22
- s.summary = %q{Our shared Compass toolkit, Gemified}
23
- s.add_dependency("sass", [">=3.2.5"])
24
- s.add_dependency(%q<compass>, [">= 0.12.2"])
25
- end