ZURB-foundation 2.1.5 → 2.1.5.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 +1 -1
- data/lib/ZURB-foundation.rb +1 -1
- data/templates/project/manifest.rb +1 -0
- data/templates/project/sass/_settings.sass +45 -0
- metadata +4 -3
data/README.mkdn
CHANGED
|
@@ -18,7 +18,7 @@ In Terminal:
|
|
|
18
18
|
* `git clone git://github.com/zurb/foundation-sass.git`
|
|
19
19
|
* `cd foundation-sass`
|
|
20
20
|
* `sudo gem build ZURB-foundation.gemspec`
|
|
21
|
-
* `sudo gem install ZURB-foundation-2.1.5.gem`
|
|
21
|
+
* `sudo gem install ZURB-foundation-2.1.5.1.gem`
|
|
22
22
|
|
|
23
23
|
To create your first project
|
|
24
24
|
----------------------------
|
data/lib/ZURB-foundation.rb
CHANGED
|
@@ -3,6 +3,7 @@ description 'ZURB-foundation Compass Gem'
|
|
|
3
3
|
# Sass Files
|
|
4
4
|
stylesheet 'sass/app.sass', :to => 'app.sass', :media => "screen, projector, print"
|
|
5
5
|
stylesheet 'sass/ie.sass', :to => 'ie.sass', :condition => "IE lt 9"
|
|
6
|
+
stylesheet 'sass/_settings.sass', :to => '_settings.sass'
|
|
6
7
|
|
|
7
8
|
# Javascripts
|
|
8
9
|
javascript 'javascripts/jquery.min.js', :to => 'jquery.min.js'
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
// `Global Foundation vars
|
|
2
|
+
//----------------------------------------------------------------------------------------------------
|
|
3
|
+
|
|
4
|
+
//
|
|
5
|
+
// This file contains global variables and settings for Foundation
|
|
6
|
+
// When adding new variables, be sure to use `!default` to allow over-riding at the project level
|
|
7
|
+
//
|
|
8
|
+
|
|
9
|
+
// Compass experimental support setttings
|
|
10
|
+
//----------------------------------------------------------------------------------------------------
|
|
11
|
+
|
|
12
|
+
// $experimental-support-for-khtml: false
|
|
13
|
+
// $experimental-support-for-microsoft: false
|
|
14
|
+
|
|
15
|
+
// Font stacks
|
|
16
|
+
//----------------------------------------------------------------------------------------------------
|
|
17
|
+
|
|
18
|
+
// $helvetica-font-stack: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif
|
|
19
|
+
|
|
20
|
+
// Default body tag variables
|
|
21
|
+
//----------------------------------------------------------------------------------------------------
|
|
22
|
+
|
|
23
|
+
// $body-font-size: 13
|
|
24
|
+
// $body-font-family: $helvetica-font-stack
|
|
25
|
+
// $body-background: #fff
|
|
26
|
+
// $body-line-height: 18px
|
|
27
|
+
// $body-color: #555
|
|
28
|
+
|
|
29
|
+
// Grid settings
|
|
30
|
+
//----------------------------------------------------------------------------------------------------
|
|
31
|
+
|
|
32
|
+
// $grid-max-width: 980px
|
|
33
|
+
// $grid-min-width: 727px
|
|
34
|
+
// $support-block-grid-nth-child: false
|
|
35
|
+
|
|
36
|
+
// Button settings
|
|
37
|
+
//----------------------------------------------------------------------------------------------------
|
|
38
|
+
|
|
39
|
+
// $button-transition-duration: .25s
|
|
40
|
+
|
|
41
|
+
// Orbit settings
|
|
42
|
+
//----------------------------------------------------------------------------------------------------
|
|
43
|
+
|
|
44
|
+
// $orbit-slider-id: featured
|
|
45
|
+
// $include-default-orbit-slider-id: true
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ZURB-foundation
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.5
|
|
4
|
+
version: 2.1.5.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -13,7 +13,7 @@ date: 2012-01-26 00:00:00.000000000Z
|
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: compass
|
|
16
|
-
requirement: &
|
|
16
|
+
requirement: &70208926888460 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
@@ -21,7 +21,7 @@ dependencies:
|
|
|
21
21
|
version: 0.11.5
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements: *
|
|
24
|
+
version_requirements: *70208926888460
|
|
25
25
|
description: ZURB Foundation ported over to work with the power of Compass.
|
|
26
26
|
email: foundation@zurb.com
|
|
27
27
|
executables: []
|
|
@@ -73,6 +73,7 @@ files:
|
|
|
73
73
|
- templates/project/manifest.rb
|
|
74
74
|
- templates/project/MIT-LICENSE.txt
|
|
75
75
|
- templates/project/robots.txt
|
|
76
|
+
- templates/project/sass/_settings.sass
|
|
76
77
|
- templates/project/sass/app.sass
|
|
77
78
|
- templates/project/sass/ie.sass
|
|
78
79
|
homepage: http://foundation.zurb.com
|