compass-foundation 0.1 → 0.1.1
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/README.mkdn +3 -3
- data/compass-foundation.gemspec +3 -2
- data/lib/compass-foundation/version.rb +1 -1
- metadata +3 -14
data/README.mkdn
CHANGED
@@ -17,11 +17,11 @@ Install
|
|
17
17
|
Create a Foundation-based Compass Project
|
18
18
|
==================================
|
19
19
|
|
20
|
-
compass create -r
|
20
|
+
compass create my_compass_project --using compass-foundation/compass-foundation -r compass-foundation
|
21
21
|
|
22
22
|
Or, If you prefer to use Sass's indentation based syntax:
|
23
23
|
|
24
|
-
compass create -r --
|
24
|
+
compass create my_compass_project --using compass-foundation/compass-foundation -r compass-foundation --syntax sass
|
25
25
|
|
26
26
|
|
27
27
|
Adding the Foundation plugin to an existing project
|
@@ -35,7 +35,7 @@ Add the following to your compass.rb config file:
|
|
35
35
|
Then make sure you have imported the library into your core .sass or .scss file with:
|
36
36
|
|
37
37
|
@import compass/reset
|
38
|
-
@import foundation/
|
38
|
+
@import compass-foundation/compass_foundation
|
39
39
|
|
40
40
|
Authors/Contributors
|
41
41
|
====================
|
data/compass-foundation.gemspec
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "compass-foundation/version"
|
2
4
|
|
3
5
|
Gem::Specification.new do |s|
|
4
6
|
s.name = %q{compass-foundation}
|
5
|
-
s.version
|
7
|
+
s.version = Compass::Foundation::VERSION
|
6
8
|
|
7
9
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.3.5")
|
8
10
|
s.authors = ["Mikhail S. Pobolovets"]
|
@@ -22,5 +24,4 @@ Gem::Specification.new do |s|
|
|
22
24
|
s.rubyforge_project = %q{compass-foundation}
|
23
25
|
s.rubygems_version = %q{1.3.6}
|
24
26
|
s.add_dependency(%q<compass>, [">= 0.10.0"])
|
25
|
-
s.add_dependency(%q<jquery-rails>, [">= 0"])
|
26
27
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass-foundation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2011-11-09 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: compass
|
16
|
-
requirement: &
|
16
|
+
requirement: &15747900 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,18 +21,7 @@ dependencies:
|
|
21
21
|
version: 0.10.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
25
|
-
- !ruby/object:Gem::Dependency
|
26
|
-
name: jquery-rails
|
27
|
-
requirement: &24565920 !ruby/object:Gem::Requirement
|
28
|
-
none: false
|
29
|
-
requirements:
|
30
|
-
- - ! '>='
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
version: '0'
|
33
|
-
type: :runtime
|
34
|
-
prerelease: false
|
35
|
-
version_requirements: *24565920
|
24
|
+
version_requirements: *15747900
|
36
25
|
description: Plugin for compass to integrate with an easy to use, powerful, and flexible
|
37
26
|
CSS framework for building prototypes and production code on any kind of device.
|
38
27
|
email:
|