zurb-foundation 2.1.4 → 2.1.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/build.rb +4 -2
- data/lib/foundation/version.rb +1 -1
- data/vendor/assets/stylesheets/foundation/ie.css.scss +6 -0
- metadata +9 -8
data/build.rb
CHANGED
@@ -5,7 +5,7 @@ require "pathname"
|
|
5
5
|
FOUNDATION_REPO_PATH = Pathname.new("/Users/mark/Projects/foundation")
|
6
6
|
|
7
7
|
# Specify which files need to be concatenated and in what order
|
8
|
-
FOUNDATION_CSS = %w(globals.css typography.css grid.css ui.css forms.css orbit.css reveal.css mobile.css)
|
8
|
+
FOUNDATION_CSS = %w(globals.css typography.css grid.css ui.css forms.css orbit.css reveal.css mobile.css ie.css)
|
9
9
|
FOUNDATION_JS = %w(jquery.reveal.js jquery.orbit-1.3.0.js forms.jquery.js jquery.customforms.js jquery.placeholder.min.js app.js)
|
10
10
|
|
11
11
|
# Clean out vendor/assets
|
@@ -21,7 +21,9 @@ FileUtils.mkdir_p ASSET_PATH.join("images", "foundation")
|
|
21
21
|
File.open(ASSET_PATH.join("stylesheets", "foundation", "index.css"), "w") do |file|
|
22
22
|
file << "/*\n"
|
23
23
|
FOUNDATION_CSS.each do |filename|
|
24
|
-
|
24
|
+
unless %w(ie.css).include?(filename.downcase)
|
25
|
+
file << "*= require 'foundation/#{filename.gsub('.css','')}'\n"
|
26
|
+
end
|
25
27
|
css_file = File.open(FOUNDATION_REPO_PATH.join("stylesheets", filename))
|
26
28
|
File.open(ASSET_PATH.join("stylesheets", "foundation", "#{filename}.scss"), "w") do |include_file|
|
27
29
|
include_file << css_file.read.gsub(/url\('?\.\.\/images\/([^\)']+)'?\)/, 'image-url("foundation/\1")')
|
data/lib/foundation/version.rb
CHANGED
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.4
|
4
|
+
version: 2.1.4.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,12 +9,12 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2011-12-
|
12
|
+
date: 2011-12-20 00:00:00.000000000 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|
17
|
-
requirement: &
|
17
|
+
requirement: &2157756260 !ruby/object:Gem::Requirement
|
18
18
|
none: false
|
19
19
|
requirements:
|
20
20
|
- - ~>
|
@@ -22,10 +22,10 @@ dependencies:
|
|
22
22
|
version: 3.1.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
|
-
version_requirements: *
|
25
|
+
version_requirements: *2157756260
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: jquery-rails
|
28
|
-
requirement: &
|
28
|
+
requirement: &2157755760 !ruby/object:Gem::Requirement
|
29
29
|
none: false
|
30
30
|
requirements:
|
31
31
|
- - ~>
|
@@ -33,7 +33,7 @@ dependencies:
|
|
33
33
|
version: '1.0'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
|
-
version_requirements: *
|
36
|
+
version_requirements: *2157755760
|
37
37
|
description: An easy to use, powerful, and flexible framework for building prototypes
|
38
38
|
and production code on any kind of device.
|
39
39
|
email:
|
@@ -83,6 +83,7 @@ files:
|
|
83
83
|
- vendor/assets/stylesheets/foundation/forms.css.scss
|
84
84
|
- vendor/assets/stylesheets/foundation/globals.css.scss
|
85
85
|
- vendor/assets/stylesheets/foundation/grid.css.scss
|
86
|
+
- vendor/assets/stylesheets/foundation/ie.css.scss
|
86
87
|
- vendor/assets/stylesheets/foundation/index.css
|
87
88
|
- vendor/assets/stylesheets/foundation/mobile.css.scss
|
88
89
|
- vendor/assets/stylesheets/foundation/orbit.css.scss
|
@@ -104,7 +105,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
104
105
|
version: '0'
|
105
106
|
segments:
|
106
107
|
- 0
|
107
|
-
hash: -
|
108
|
+
hash: -499507567645372597
|
108
109
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
109
110
|
none: false
|
110
111
|
requirements:
|
@@ -113,7 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
113
114
|
version: '0'
|
114
115
|
segments:
|
115
116
|
- 0
|
116
|
-
hash: -
|
117
|
+
hash: -499507567645372597
|
117
118
|
requirements: []
|
118
119
|
rubyforge_project: foundation
|
119
120
|
rubygems_version: 1.6.2
|