groundworkcss 0.3.2 → 0.4.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/.gitignore +1 -0
- data/README.md +42 -16
- data/app/assets/javascripts/groundworkcss/libs/PIE.htc +96 -0
- data/app/assets/javascripts/groundworkcss/libs/PIE.js +88 -0
- data/app/assets/javascripts/groundworkcss/plugins/jquery-truncateLines.coffee +70 -31
- data/app/assets/stylesheets/groundworkcss/_settings-rails3.scss +307 -0
- data/app/assets/stylesheets/groundworkcss/_settings-rails4.scss +307 -0
- data/app/assets/stylesheets/groundworkcss/_settings.scss +3 -2
- data/app/assets/stylesheets/groundworkcss/base/_all-base.scss +1 -0
- data/app/assets/stylesheets/groundworkcss/base/_flex-box.scss +35 -14
- data/app/assets/stylesheets/groundworkcss/base/_grid.scss +4 -0
- data/app/assets/stylesheets/groundworkcss/core/_defaults.scss +3 -2
- data/app/assets/stylesheets/groundworkcss/core/_mixins.scss +14 -0
- data/app/assets/stylesheets/groundworkcss/groundwork.scss +1 -1
- data/app/assets/stylesheets/groundworkcss/nav/_buttons.scss +9 -9
- data/app/assets/stylesheets/groundworkcss/responsive/_desktop.scss +1 -0
- data/app/assets/stylesheets/groundworkcss/responsive/_helpers.scss +3 -3
- data/app/assets/stylesheets/groundworkcss/responsive/_ipad.scss +1 -0
- data/app/assets/stylesheets/groundworkcss/responsive/_mobile.scss +5 -0
- data/app/assets/stylesheets/groundworkcss/responsive/_small-tablet.scss +1 -0
- data/app/assets/stylesheets/groundworkcss/social-icons-svg.scss +1 -1
- data/groundworkcss.gemspec +1 -1
- data/lib/groundworkcss/generators/install_generator.rb +10 -2
- data/lib/groundworkcss/version.rb +1 -1
- metadata +92 -60
- checksums.yaml +0 -15
- data/app/assets/javascripts/groundworkcss/libs/html5shiv.min.js +0 -8
@@ -4,24 +4,32 @@
|
|
4
4
|
// =============================================
|
5
5
|
|
6
6
|
|
7
|
-
|
8
|
-
display: -webkit-box;
|
9
|
-
display: -moz-box;
|
10
|
-
display: -ms-flexbox;
|
11
|
-
display: -webkit-flex;
|
12
|
-
display: flex;
|
7
|
+
@mixin flex-wrapper() {
|
8
|
+
display: -webkit-box; // OLD - iOS 6-, Safari 3.1-6
|
9
|
+
display: -moz-box; // OLD - Firefox 19- (buggy but mostly works)
|
10
|
+
display: -ms-flexbox; // TWEENER - IE 10
|
11
|
+
display: -webkit-flex; // NEW - Chrome
|
12
|
+
display: flex; // New spec - Opera 12.1, Firefox 20+
|
13
13
|
}
|
14
14
|
|
15
|
-
|
16
|
-
|
17
|
-
-
|
18
|
-
|
19
|
-
-webkit-flex:
|
20
|
-
-ms-flex:
|
21
|
-
flex:
|
15
|
+
@mixin flex-box($values: 1) {
|
16
|
+
width: percent(1/$values); // For old syntax, otherwise collapses.
|
17
|
+
-webkit-box-flex: $values; // OLD - iOS 6-, Safari 3.1-6
|
18
|
+
-moz-box-flex: $values; // OLD - Firefox 19-
|
19
|
+
-webkit-flex: $values; // Chrome
|
20
|
+
-ms-flex: $values; // IE 10
|
21
|
+
flex: $values; // New spec - Opera 12.1, Firefox 20+
|
22
22
|
}
|
23
23
|
|
24
|
-
|
24
|
+
@mixin flex-order($val) {
|
25
|
+
-webkit-box-ordinal-group: $val; // OLD - iOS 6-, Safari 3.1-6
|
26
|
+
-moz-box-ordinal-group: $val; // OLD - Firefox 19-
|
27
|
+
-ms-flex-order: $val; // IE 10
|
28
|
+
-webkit-order: $val; // Chrome
|
29
|
+
order: $val; // New spec
|
30
|
+
}
|
31
|
+
|
32
|
+
@mixin vertical-center() {
|
25
33
|
display: -webkit-box;
|
26
34
|
-webkit-box-orient: vertical;
|
27
35
|
-webkit-box-pack: center;
|
@@ -33,6 +41,19 @@
|
|
33
41
|
box-pack: center;
|
34
42
|
}
|
35
43
|
|
44
|
+
|
45
|
+
%flex-wrapper {
|
46
|
+
@include flex-wrapper();
|
47
|
+
}
|
48
|
+
|
49
|
+
%flex-box {
|
50
|
+
@include flex-box();
|
51
|
+
}
|
52
|
+
|
53
|
+
%vertical-center {
|
54
|
+
@include vertical-center();
|
55
|
+
}
|
56
|
+
|
36
57
|
@if $flexbox-classes {
|
37
58
|
.flex-wrapper {
|
38
59
|
@extend %flex-wrapper;
|
@@ -82,6 +82,8 @@ $selectors: if($grid-classes, "%" ".", "%");
|
|
82
82
|
width: nth($grid-adapters, $i) !important;
|
83
83
|
clear: none !important;
|
84
84
|
float: left !important;
|
85
|
+
left: 0 !important;
|
86
|
+
right: 0 !important;
|
85
87
|
}
|
86
88
|
}
|
87
89
|
}
|
@@ -102,6 +104,8 @@ $selectors: if($grid-classes, "%" ".", "%");
|
|
102
104
|
width: nth($grid-adapters, $i) !important;
|
103
105
|
clear: none !important;
|
104
106
|
float: left !important;
|
107
|
+
left: 0 !important;
|
108
|
+
right: 0 !important;
|
105
109
|
&:nth-child(#{$i + 1}) {
|
106
110
|
clear: both !important;
|
107
111
|
}
|
@@ -13,12 +13,13 @@ $root_path: "../" !default; // path to HTML document root (relati
|
|
13
13
|
$images_path: "images/" !default; // path to images (relative from $root_path)
|
14
14
|
$fonts_path: "fonts/" !default; // path to fonts (relative from $root_path)
|
15
15
|
$boxsizing_path: "/js/libs/boxsizing.htc" !default; // path to box sizing polyfill (change to absolute path from HTML document root)
|
16
|
+
$PIE_path: "/js/libs/PIE.htc" !default; // path to IE CSS3 polyfill (change to absolute path from HTML document root)
|
16
17
|
|
17
18
|
// build options
|
18
19
|
$reset: true !default; // enable CSS reset (recommended)
|
19
20
|
// elements that will be reset (refine this to only include elements that you actually use in your markup patterns for optimal performance)
|
20
21
|
$reset-elements: html body
|
21
|
-
div span header footer aside nav menu section article details
|
22
|
+
div span header footer aside nav menu main section article details
|
22
23
|
h1 h2 h3 h4 h5 h6 p
|
23
24
|
ol ul li dl dt dd
|
24
25
|
em small big strong b u i sub sup del strike
|
@@ -41,7 +42,7 @@ $gutter: 10px !default; // gutter spacing (used by padded/gap
|
|
41
42
|
|
42
43
|
// flexbox settings
|
43
44
|
$flexbox-classes: true !default; // enable output of flexbox classes (optional)
|
44
|
-
$flexbox-helpers: flex-wrapper flex-box vertical-center !default;
|
45
|
+
$flexbox-helpers: flex-wrapper flex-box vertical-center !default; // for flexbox order use @include flex-order($val);
|
45
46
|
|
46
47
|
// helper settings
|
47
48
|
$layout-classes: true !default; // enable output of layout helpers (recommended)
|
@@ -47,6 +47,19 @@
|
|
47
47
|
// gradient
|
48
48
|
@mixin gradient($startColor: $white, $endColor: $gray-2, $direction: "top") {
|
49
49
|
@include background-image(linear-gradient($direction, $startColor, $endColor));
|
50
|
+
@if $direction == "top" {
|
51
|
+
$direction: "to bottom";
|
52
|
+
} @elseif $direction == "bottom" {
|
53
|
+
$direction: "to top";
|
54
|
+
} @else {
|
55
|
+
@if $direction == "left" {
|
56
|
+
$direction: "to right";
|
57
|
+
} @else {
|
58
|
+
$direction: "to left";
|
59
|
+
}
|
60
|
+
}
|
61
|
+
-pie-background: linear-gradient($direction, $startColor, $endColor); // IE 6-7 -- Thank Jason for these polyfills for legacy IE browsers: http://css3pie.com/
|
62
|
+
*behavior: url($PIE_path); // IE 6-7 -- Thank Jason for these polyfills for legacy IE browsers: http://css3pie.com/
|
50
63
|
}
|
51
64
|
|
52
65
|
// filter drop shadow
|
@@ -124,6 +137,7 @@
|
|
124
137
|
// no output if $default-radius is set to a zero value
|
125
138
|
} @else {
|
126
139
|
@include border-radius($radius);
|
140
|
+
*behavior: url($PIE_path); // IE 6-7 -- Thank Jason for these polyfills for legacy IE browsers: http://css3pie.com/
|
127
141
|
}
|
128
142
|
}
|
129
143
|
|
@@ -44,10 +44,10 @@
|
|
44
44
|
color:$button-active-text;
|
45
45
|
}
|
46
46
|
|
47
|
-
%button-small { @
|
48
|
-
%button-large { @
|
49
|
-
%button-square { @
|
50
|
-
%button-round { @
|
47
|
+
%button-small { @include _small; }
|
48
|
+
%button-large { @include _large; }
|
49
|
+
%button-square { @include _square; }
|
50
|
+
%button-round { @include _round; }
|
51
51
|
%button-disabled { @include state(disabled,normal,desaturate($button-color,20%)); }
|
52
52
|
|
53
53
|
@for $i from 1 through length($modifier-name) {
|
@@ -238,16 +238,16 @@
|
|
238
238
|
}
|
239
239
|
|
240
240
|
@mixin button_modifiers() {
|
241
|
-
@for $i from 1 through length($button-states) {
|
242
|
-
&.#{nth($button-states, $i)} {
|
243
|
-
@extend %button-#{nth($button-states, $i)};
|
244
|
-
}
|
245
|
-
}
|
246
241
|
@for $i from 1 through length($button-modifiers) {
|
247
242
|
&.#{nth($button-modifiers, $i)} {
|
248
243
|
@extend %button-#{nth($button-modifiers, $i)};
|
249
244
|
}
|
250
245
|
}
|
246
|
+
@for $i from 1 through length($button-states) {
|
247
|
+
&.#{nth($button-states, $i)} {
|
248
|
+
@extend %button-#{nth($button-states, $i)};
|
249
|
+
}
|
250
|
+
}
|
251
251
|
// modifier colors
|
252
252
|
@for $i from 1 through length($modifier-name) {
|
253
253
|
&.#{nth($modifier-name, $i)} {
|
@@ -14,6 +14,7 @@
|
|
14
14
|
.zero-desktop { @include helper_reset(); }
|
15
15
|
.no-padding-desktop, .no-pad-desktop { @include helper_reset(padding, $spacers: padded pad-top pad-right pad-bottom pad-left); }
|
16
16
|
.no-margin-desktop, .no-gap-desktop { @include helper_reset(margin, $spacers: gapped gap-top gap-right gap-bottom gap-left); }
|
17
|
+
.no-border-desktop { border: 0; }
|
17
18
|
@content;
|
18
19
|
}
|
19
20
|
}
|
@@ -6,11 +6,11 @@
|
|
6
6
|
.desktop-only { display: block; }
|
7
7
|
.hide-on-desktop {}
|
8
8
|
// ipad helpers
|
9
|
-
.ipad-only { display: none; }
|
9
|
+
.ipad-only { display: none !important; }
|
10
10
|
.hide-on-ipad {}
|
11
11
|
// small tablet helpers
|
12
|
-
.small-tablet-only { display: none; }
|
12
|
+
.small-tablet-only { display: none !important; }
|
13
13
|
.hide-on-small-tablet {}
|
14
14
|
// mobile helpers
|
15
|
-
.mobile-only { display: none; }
|
15
|
+
.mobile-only { display: none !important; }
|
16
16
|
.hide-on-mobile {}
|
@@ -17,6 +17,7 @@
|
|
17
17
|
.zero-ipad { @include helper_reset(); }
|
18
18
|
.no-padding-ipad, .no-pad-ipad { @include helper_reset(padding, $spacers: padded pad-top pad-right pad-bottom pad-left); }
|
19
19
|
.no-margin-ipad, .no-gap-ipad { @include helper_reset(margin, $spacers: gapped gap-top gap-right gap-bottom gap-left); }
|
20
|
+
.no-border-ipad { border: 0; }
|
20
21
|
@content;
|
21
22
|
}
|
22
23
|
}
|
@@ -13,12 +13,17 @@
|
|
13
13
|
// conditional helpers
|
14
14
|
.mobile-only { display: block !important; }
|
15
15
|
span.mobile-only { display: inline !important; }
|
16
|
+
.hide-on-small-tablet { display: block !important; }
|
17
|
+
span.hide-on-small-tablet { display: inline !important; }
|
18
|
+
.small-tablet-only { display: none !important; }
|
19
|
+
span.small-tablet-only { display: none !important; }
|
16
20
|
.hide-on-mobile { display: none !important; }
|
17
21
|
.desktop-only { display: none !important; }
|
18
22
|
// spacer overrides
|
19
23
|
.zero-mobile { @include helper_reset(); }
|
20
24
|
.no-padding-mobile, .no-pad-mobile { @include helper_reset(padding, $spacers: padded pad-top pad-right pad-bottom pad-left); }
|
21
25
|
.no-margin-mobile, .no-gap-mobile { @include helper_reset(margin, $spacers: gapped gap-top gap-right gap-bottom gap-left); }
|
26
|
+
.no-border-mobile { border: 0; }
|
22
27
|
@content;
|
23
28
|
}
|
24
29
|
}
|
@@ -19,6 +19,7 @@
|
|
19
19
|
.zero-small-tablet { @include helper_reset(); }
|
20
20
|
.no-padding-small-tablet, .no-pad-small-tablet { @include helper_reset(padding, $spacers: padded pad-top pad-right pad-bottom pad-left); }
|
21
21
|
.no-margin-small-tablet, .no-gap-small-tablet { @include helper_reset(margin, $spacers: gapped gap-top gap-right gap-bottom gap-left); }
|
22
|
+
.no-border-small-tablet { border: 0; }
|
22
23
|
@content;
|
23
24
|
}
|
24
25
|
}
|
data/groundworkcss.gemspec
CHANGED
@@ -22,6 +22,6 @@ Gem::Specification.new do |s|
|
|
22
22
|
# s.add_development_dependency "rspec"
|
23
23
|
# s.add_runtime_dependency "rest-client"
|
24
24
|
s.add_runtime_dependency "compass-rails", "~> 1"
|
25
|
-
s.add_runtime_dependency "railties", "
|
25
|
+
s.add_runtime_dependency "railties", ">= 3.1.0", "< 5.0"
|
26
26
|
s.add_runtime_dependency "jquery-rails", "~> 3"
|
27
27
|
end
|
@@ -5,9 +5,17 @@ module Groundworkcss
|
|
5
5
|
class InstallGenerator < Rails::Generators::Base
|
6
6
|
source_root File.join(File.dirname(__FILE__), 'templates')
|
7
7
|
|
8
|
+
def create_example_settings
|
9
|
+
dir = Pathname.new(Gem.loaded_specs['groundworkcss'].full_gem_path)
|
10
|
+
file = File.join(dir, "app/assets/stylesheets/groundworkcss/_settings-rails#{Rails::VERSION::MAJOR}.scss")
|
11
|
+
create_file "app/assets/stylesheets/_groundworkcss_settings.scss", File.read(file)
|
12
|
+
end
|
13
|
+
|
8
14
|
def add_assets
|
9
|
-
insert_into_file "app/assets/javascripts/application#{detect_js_format[0]}", "#{detect_js_format[1]} require groundworkcss\n", :after => "jquery_ujs\n"
|
10
|
-
insert_into_file "app/assets/
|
15
|
+
insert_into_file "app/assets/javascripts/application#{detect_js_format[0]}", "#{detect_js_format[1]} require groundworkcss/libs/modernizr-2.6.2.min\n", :after => "jquery_ujs\n"
|
16
|
+
insert_into_file "app/assets/javascripts/application#{detect_js_format[0]}", "#{detect_js_format[1]} require groundworkcss\n", :after => "groundworkcss/libs/modernizr-2.6.2.min\n"
|
17
|
+
insert_into_file "app/assets/stylesheets/application#{detect_css_format[0]}", "@import 'groundworkcss_settings';\n", :after => "*/\n"
|
18
|
+
insert_into_file "app/assets/stylesheets/application#{detect_css_format[0]}", "@import 'groundworkcss/groundwork';\n", :after => "@import 'groundworkcss_settings';\n"
|
11
19
|
end
|
12
20
|
|
13
21
|
def detect_js_format
|
metadata
CHANGED
@@ -1,9 +1,15 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: groundworkcss
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 15
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 4
|
9
|
+
- 0
|
10
|
+
version: 0.4.0
|
5
11
|
platform: ruby
|
6
|
-
authors:
|
12
|
+
authors:
|
7
13
|
- ghepting
|
8
14
|
- BananaNeil
|
9
15
|
- nicknovitski
|
@@ -11,59 +17,71 @@ authors:
|
|
11
17
|
autorequire:
|
12
18
|
bindir: bin
|
13
19
|
cert_chain: []
|
14
|
-
|
15
|
-
|
16
|
-
|
20
|
+
|
21
|
+
date: 2013-07-18 00:00:00 Z
|
22
|
+
dependencies:
|
23
|
+
- !ruby/object:Gem::Dependency
|
17
24
|
name: compass-rails
|
18
|
-
requirement: !ruby/object:Gem::Requirement
|
19
|
-
requirements:
|
20
|
-
- - ~>
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: '1'
|
23
|
-
type: :runtime
|
24
25
|
prerelease: false
|
25
|
-
|
26
|
-
|
26
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
27
|
+
none: false
|
28
|
+
requirements:
|
27
29
|
- - ~>
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
requirements:
|
34
|
-
- - ~>
|
35
|
-
- !ruby/object:Gem::Version
|
36
|
-
version: '4'
|
30
|
+
- !ruby/object:Gem::Version
|
31
|
+
hash: 1
|
32
|
+
segments:
|
33
|
+
- 1
|
34
|
+
version: "1"
|
37
35
|
type: :runtime
|
36
|
+
version_requirements: *id001
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: railties
|
38
39
|
prerelease: false
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ">="
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
hash: 3
|
46
|
+
segments:
|
47
|
+
- 3
|
48
|
+
- 1
|
49
|
+
- 0
|
50
|
+
version: 3.1.0
|
51
|
+
- - <
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
hash: 31
|
54
|
+
segments:
|
55
|
+
- 5
|
56
|
+
- 0
|
57
|
+
version: "5.0"
|
51
58
|
type: :runtime
|
59
|
+
version_requirements: *id002
|
60
|
+
- !ruby/object:Gem::Dependency
|
61
|
+
name: jquery-rails
|
52
62
|
prerelease: false
|
53
|
-
|
54
|
-
|
63
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
64
|
+
none: false
|
65
|
+
requirements:
|
55
66
|
- - ~>
|
56
|
-
- !ruby/object:Gem::Version
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
hash: 5
|
69
|
+
segments:
|
70
|
+
- 3
|
71
|
+
version: "3"
|
72
|
+
type: :runtime
|
73
|
+
version_requirements: *id003
|
74
|
+
description: The official GroundworkCSS rails gem. Created by @ghepting and @ldewald. GroundworkCSS is a fully responsive HTML5, CSS and Javascript toolkit created by @ghepting.
|
75
|
+
email:
|
62
76
|
- groundwork@sidereel.com
|
63
77
|
executables: []
|
78
|
+
|
64
79
|
extensions: []
|
80
|
+
|
65
81
|
extra_rdoc_files: []
|
66
|
-
|
82
|
+
|
83
|
+
files:
|
84
|
+
- .gitignore
|
67
85
|
- Gemfile
|
68
86
|
- README.md
|
69
87
|
- Rakefile
|
@@ -328,8 +346,9 @@ files:
|
|
328
346
|
- app/assets/javascripts/groundworkcss/components/tiles.coffee
|
329
347
|
- app/assets/javascripts/groundworkcss/components/tooltips.coffee
|
330
348
|
- app/assets/javascripts/groundworkcss/index.js
|
349
|
+
- app/assets/javascripts/groundworkcss/libs/PIE.htc
|
350
|
+
- app/assets/javascripts/groundworkcss/libs/PIE.js
|
331
351
|
- app/assets/javascripts/groundworkcss/libs/boxsizing.htc
|
332
|
-
- app/assets/javascripts/groundworkcss/libs/html5shiv.min.js
|
333
352
|
- app/assets/javascripts/groundworkcss/libs/jquery-1.9.1.min.js
|
334
353
|
- app/assets/javascripts/groundworkcss/libs/modernizr-2.6.2.min.js
|
335
354
|
- app/assets/javascripts/groundworkcss/libs/placeholder_polyfill.jquery.js
|
@@ -348,6 +367,8 @@ files:
|
|
348
367
|
- app/assets/javascripts/groundworkcss/plugins/jquery-truncateLines.coffee
|
349
368
|
- app/assets/javascripts/groundworkcss/plugins/jquery.cycle2.js
|
350
369
|
- app/assets/javascripts/groundworkcss/plugins/jquery.magnific-popup.js
|
370
|
+
- app/assets/stylesheets/groundworkcss/_settings-rails3.scss
|
371
|
+
- app/assets/stylesheets/groundworkcss/_settings-rails4.scss
|
351
372
|
- app/assets/stylesheets/groundworkcss/_settings.scss
|
352
373
|
- app/assets/stylesheets/groundworkcss/base/_all-base.scss
|
353
374
|
- app/assets/stylesheets/groundworkcss/base/_animations.scss
|
@@ -403,25 +424,36 @@ files:
|
|
403
424
|
- lib/groundworkcss/version.rb
|
404
425
|
homepage: http://groundworkcss.github.io
|
405
426
|
licenses: []
|
406
|
-
|
427
|
+
|
407
428
|
post_install_message:
|
408
429
|
rdoc_options: []
|
409
|
-
|
430
|
+
|
431
|
+
require_paths:
|
410
432
|
- lib
|
411
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
433
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
434
|
+
none: false
|
435
|
+
requirements:
|
436
|
+
- - ">="
|
437
|
+
- !ruby/object:Gem::Version
|
438
|
+
hash: 3
|
439
|
+
segments:
|
440
|
+
- 0
|
441
|
+
version: "0"
|
442
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
443
|
+
none: false
|
444
|
+
requirements:
|
445
|
+
- - ">="
|
446
|
+
- !ruby/object:Gem::Version
|
447
|
+
hash: 3
|
448
|
+
segments:
|
449
|
+
- 0
|
450
|
+
version: "0"
|
421
451
|
requirements: []
|
452
|
+
|
422
453
|
rubyforge_project: groundworkcss
|
423
|
-
rubygems_version:
|
454
|
+
rubygems_version: 1.8.24
|
424
455
|
signing_key:
|
425
|
-
specification_version:
|
456
|
+
specification_version: 3
|
426
457
|
summary: Setup GroundworkCSS on your rails projects in seconds.
|
427
458
|
test_files: []
|
459
|
+
|
checksums.yaml
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
---
|
2
|
-
!binary "U0hBMQ==":
|
3
|
-
metadata.gz: !binary |-
|
4
|
-
MmY4MThlMGU1M2VlYjQ0MjliNjM1OGZkZDJlZjg4OTFmODQ2ZmMyOQ==
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
YmMwYTQ3MDRhMmRlYTAwYWFiMDM3OGQ3OTcyMDQ4ZTkyMmEyNDU4Ng==
|
7
|
-
!binary "U0hBNTEy":
|
8
|
-
metadata.gz: !binary |-
|
9
|
-
ZTI2ZTM3YzE1YmMyZjY0MmFhN2UzMDI1NGJhOWI3NzA1NWI5ZjliOGJiYTQ4
|
10
|
-
Zjc0OGI4ZDY5ZmQ5Mjg4MGU3MjU5ZGFiZjhjMWVjZWZmM2JmMDg4YzM0MThi
|
11
|
-
YTU5OGRiMzY5OTc1NTM4NTBmNjk3Mjg1NWU3MzQ5YjNhMDUzODc=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
YWRiZjFmNzE5MzVmYWI5ZTM4M2EzODZkZjc3MWQ3ZTRhZDFmZmVkY2NjYjcy
|
14
|
-
Yzc1ZDA4MjUwZDQ4ZmU1YzBiYWZkZDIwOGQxN2QzMTRmMmRlYTNmNjYzNjEw
|
15
|
-
MDBhNGQwNTkzN2EyNTk0YWVmNmIzNGY3ZjFkMWMzYmNiNjNhNzg=
|
@@ -1,8 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
HTML5 Shiv v3.6.2pre | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
|
3
|
-
*/
|
4
|
-
(function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag();
|
5
|
-
a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/\w+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x<style>article,aside,figcaption,figure,footer,header,hgroup,nav,section{display:block}mark{background:#FF0;color:#000}</style>";
|
6
|
-
c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="<xyz></xyz>";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode||
|
7
|
-
"undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",version:"3.6.2pre",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);if(g)return a.createDocumentFragment();
|
8
|
-
for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d<h;d++)c.createElement(e[d]);return c}};l.html5=e;q(f)})(this,document);
|