foundation-rails 5.0.1.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.
Files changed (136) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +29 -0
  6. data/Rakefile +1 -0
  7. data/app/controllers/foundation/rails/styleguide_controller.rb +10 -0
  8. data/app/views/foundation/rails/styleguide/show.html.erb +134 -0
  9. data/config/routes.rb +3 -0
  10. data/foundation-rails.gemspec +25 -0
  11. data/lib/foundation-rails.rb +1 -0
  12. data/lib/foundation/rails.rb +3 -0
  13. data/lib/foundation/rails/engine.rb +7 -0
  14. data/lib/foundation/rails/generators/install_generator.rb +56 -0
  15. data/lib/foundation/rails/templates/application.html.erb +19 -0
  16. data/lib/foundation/rails/templates/application.html.haml +18 -0
  17. data/lib/foundation/rails/templates/application.html.slim +17 -0
  18. data/lib/foundation/rails/version.rb +5 -0
  19. data/test/dummy/.gitignore +16 -0
  20. data/test/dummy/Gemfile +47 -0
  21. data/test/dummy/README.rdoc +28 -0
  22. data/test/dummy/Rakefile +6 -0
  23. data/test/dummy/app/assets/images/.keep +0 -0
  24. data/test/dummy/app/assets/javascripts/application.js +8 -0
  25. data/test/dummy/app/assets/stylesheets/application.css +4 -0
  26. data/test/dummy/app/assets/stylesheets/foundation_and_overrides.scss +4 -0
  27. data/test/dummy/app/controllers/application_controller.rb +5 -0
  28. data/test/dummy/app/controllers/concerns/.keep +0 -0
  29. data/test/dummy/app/controllers/styleguide_controller.rb +4 -0
  30. data/test/dummy/app/helpers/application_helper.rb +2 -0
  31. data/test/dummy/app/helpers/styleguide_helper.rb +2 -0
  32. data/test/dummy/app/mailers/.keep +0 -0
  33. data/test/dummy/app/models/.keep +0 -0
  34. data/test/dummy/app/models/concerns/.keep +0 -0
  35. data/test/dummy/app/views/layouts/application.html.erb +19 -0
  36. data/test/dummy/app/views/styleguide/show.html.erb +109 -0
  37. data/test/dummy/bin/bundle +3 -0
  38. data/test/dummy/bin/rails +4 -0
  39. data/test/dummy/bin/rake +4 -0
  40. data/test/dummy/config.ru +4 -0
  41. data/test/dummy/config/application.rb +23 -0
  42. data/test/dummy/config/boot.rb +4 -0
  43. data/test/dummy/config/database.yml +25 -0
  44. data/test/dummy/config/environment.rb +5 -0
  45. data/test/dummy/config/environments/development.rb +29 -0
  46. data/test/dummy/config/environments/production.rb +80 -0
  47. data/test/dummy/config/environments/test.rb +36 -0
  48. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  49. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  50. data/test/dummy/config/initializers/inflections.rb +16 -0
  51. data/test/dummy/config/initializers/mime_types.rb +5 -0
  52. data/test/dummy/config/initializers/secret_token.rb +12 -0
  53. data/test/dummy/config/initializers/session_store.rb +3 -0
  54. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  55. data/test/dummy/config/locales/en.yml +23 -0
  56. data/test/dummy/config/routes.rb +3 -0
  57. data/test/dummy/db/seeds.rb +7 -0
  58. data/test/dummy/lib/assets/.keep +0 -0
  59. data/test/dummy/lib/tasks/.keep +0 -0
  60. data/test/dummy/log/.keep +0 -0
  61. data/test/dummy/public/404.html +58 -0
  62. data/test/dummy/public/422.html +58 -0
  63. data/test/dummy/public/500.html +57 -0
  64. data/test/dummy/public/favicon.ico +0 -0
  65. data/test/dummy/public/robots.txt +5 -0
  66. data/test/dummy/test/controllers/.keep +0 -0
  67. data/test/dummy/test/controllers/styleguide_controller_test.rb +9 -0
  68. data/test/dummy/test/fixtures/.keep +0 -0
  69. data/test/dummy/test/helpers/.keep +0 -0
  70. data/test/dummy/test/helpers/styleguide_helper_test.rb +4 -0
  71. data/test/dummy/test/integration/.keep +0 -0
  72. data/test/dummy/test/mailers/.keep +0 -0
  73. data/test/dummy/test/models/.keep +0 -0
  74. data/test/dummy/test/test_helper.rb +15 -0
  75. data/test/dummy/vendor/assets/javascripts/.keep +0 -0
  76. data/test/dummy/vendor/assets/stylesheets/.keep +0 -0
  77. data/vendor/_settings.scss +992 -0
  78. data/vendor/assets/javascripts/foundation.js +15 -0
  79. data/vendor/assets/javascripts/foundation/foundation.abide.js +201 -0
  80. data/vendor/assets/javascripts/foundation/foundation.accordion.js +41 -0
  81. data/vendor/assets/javascripts/foundation/foundation.alert.js +34 -0
  82. data/vendor/assets/javascripts/foundation/foundation.clearing.js +450 -0
  83. data/vendor/assets/javascripts/foundation/foundation.dropdown.js +184 -0
  84. data/vendor/assets/javascripts/foundation/foundation.interchange.js +304 -0
  85. data/vendor/assets/javascripts/foundation/foundation.joyride.js +839 -0
  86. data/vendor/assets/javascripts/foundation/foundation.js +416 -0
  87. data/vendor/assets/javascripts/foundation/foundation.magellan.js +118 -0
  88. data/vendor/assets/javascripts/foundation/foundation.offcanvas.js +37 -0
  89. data/vendor/assets/javascripts/foundation/foundation.orbit.js +434 -0
  90. data/vendor/assets/javascripts/foundation/foundation.reveal.js +347 -0
  91. data/vendor/assets/javascripts/foundation/foundation.tab.js +37 -0
  92. data/vendor/assets/javascripts/foundation/foundation.tooltip.js +202 -0
  93. data/vendor/assets/javascripts/foundation/foundation.topbar.js +380 -0
  94. data/vendor/assets/javascripts/vendor/modernizr.js +4 -0
  95. data/vendor/assets/stylesheets/foundation.scss +38 -0
  96. data/vendor/assets/stylesheets/foundation/_functions.scss +75 -0
  97. data/vendor/assets/stylesheets/foundation/_settings.scss +992 -0
  98. data/vendor/assets/stylesheets/foundation/components/_accordion.scss +49 -0
  99. data/vendor/assets/stylesheets/foundation/components/_alert-boxes.scss +113 -0
  100. data/vendor/assets/stylesheets/foundation/components/_block-grid.scss +83 -0
  101. data/vendor/assets/stylesheets/foundation/components/_breadcrumbs.scss +123 -0
  102. data/vendor/assets/stylesheets/foundation/components/_button-groups.scss +97 -0
  103. data/vendor/assets/stylesheets/foundation/components/_buttons.scss +234 -0
  104. data/vendor/assets/stylesheets/foundation/components/_clearing.scss +233 -0
  105. data/vendor/assets/stylesheets/foundation/components/_dropdown-buttons.scss +125 -0
  106. data/vendor/assets/stylesheets/foundation/components/_dropdown.scss +159 -0
  107. data/vendor/assets/stylesheets/foundation/components/_flex-video.scss +47 -0
  108. data/vendor/assets/stylesheets/foundation/components/_forms.scss +472 -0
  109. data/vendor/assets/stylesheets/foundation/components/_functions.scss +70 -0
  110. data/vendor/assets/stylesheets/foundation/components/_global.scss +387 -0
  111. data/vendor/assets/stylesheets/foundation/components/_grid.scss +234 -0
  112. data/vendor/assets/stylesheets/foundation/components/_inline-lists.scss +52 -0
  113. data/vendor/assets/stylesheets/foundation/components/_joyride.scss +220 -0
  114. data/vendor/assets/stylesheets/foundation/components/_keystrokes.scss +57 -0
  115. data/vendor/assets/stylesheets/foundation/components/_labels.scss +100 -0
  116. data/vendor/assets/stylesheets/foundation/components/_magellan.scss +30 -0
  117. data/vendor/assets/stylesheets/foundation/components/_offcanvas.scss +360 -0
  118. data/vendor/assets/stylesheets/foundation/components/_orbit.scss +353 -0
  119. data/vendor/assets/stylesheets/foundation/components/_pagination.scss +145 -0
  120. data/vendor/assets/stylesheets/foundation/components/_panels.scss +87 -0
  121. data/vendor/assets/stylesheets/foundation/components/_pricing-tables.scss +146 -0
  122. data/vendor/assets/stylesheets/foundation/components/_progress-bars.scss +75 -0
  123. data/vendor/assets/stylesheets/foundation/components/_reveal.scss +165 -0
  124. data/vendor/assets/stylesheets/foundation/components/_side-nav.scss +83 -0
  125. data/vendor/assets/stylesheets/foundation/components/_split-buttons.scss +187 -0
  126. data/vendor/assets/stylesheets/foundation/components/_sub-nav.scss +118 -0
  127. data/vendor/assets/stylesheets/foundation/components/_switch.scss +314 -0
  128. data/vendor/assets/stylesheets/foundation/components/_tables.scss +93 -0
  129. data/vendor/assets/stylesheets/foundation/components/_tabs.scss +95 -0
  130. data/vendor/assets/stylesheets/foundation/components/_thumbs.scss +71 -0
  131. data/vendor/assets/stylesheets/foundation/components/_tooltips.scss +121 -0
  132. data/vendor/assets/stylesheets/foundation/components/_top-bar.scss +590 -0
  133. data/vendor/assets/stylesheets/foundation/components/_type.scss +447 -0
  134. data/vendor/assets/stylesheets/foundation/components/_visibility.scss +661 -0
  135. data/vendor/assets/stylesheets/normalize.scss +410 -0
  136. metadata +292 -0
@@ -0,0 +1,410 @@
1
+ /*! normalize.css v2.1.2 | MIT License | git.io/normalize */
2
+
3
+ /* ==========================================================================
4
+ HTML5 display definitions
5
+ ========================================================================== */
6
+
7
+ /**
8
+ * Correct `block` display not defined in IE 8/9.
9
+ */
10
+
11
+ article,
12
+ aside,
13
+ details,
14
+ figcaption,
15
+ figure,
16
+ footer,
17
+ header,
18
+ hgroup,
19
+ main,
20
+ nav,
21
+ section,
22
+ summary {
23
+ display: block;
24
+ }
25
+
26
+ /**
27
+ * Correct `inline-block` display not defined in IE 8/9.
28
+ */
29
+
30
+ audio,
31
+ canvas,
32
+ video {
33
+ display: inline-block;
34
+ }
35
+
36
+ /**
37
+ * Prevent modern browsers from displaying `audio` without controls.
38
+ * Remove excess height in iOS 5 devices.
39
+ */
40
+
41
+ audio:not([controls]) {
42
+ display: none;
43
+ height: 0;
44
+ }
45
+
46
+ /**
47
+ * Address `[hidden]` styling not present in IE 8/9.
48
+ * Hide the `template` element in IE, Safari, and Firefox < 22.
49
+ */
50
+
51
+ [hidden],
52
+ template {
53
+ display: none;
54
+ }
55
+
56
+ script {
57
+ display: none !important;
58
+ }
59
+
60
+ /* ==========================================================================
61
+ Base
62
+ ========================================================================== */
63
+
64
+ /**
65
+ * 1. Set default font family to sans-serif.
66
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
67
+ * user zoom.
68
+ */
69
+
70
+ html {
71
+ font-family: sans-serif; /* 1 */
72
+ -ms-text-size-adjust: 100%; /* 2 */
73
+ -webkit-text-size-adjust: 100%; /* 2 */
74
+ }
75
+
76
+ /**
77
+ * Remove default margin.
78
+ */
79
+
80
+ body {
81
+ margin: 0;
82
+ }
83
+
84
+ /* ==========================================================================
85
+ Links
86
+ ========================================================================== */
87
+
88
+ /**
89
+ * Remove the gray background color from active links in IE 10.
90
+ */
91
+
92
+ a {
93
+ background: transparent;
94
+ }
95
+
96
+ /**
97
+ * Address `outline` inconsistency between Chrome and other browsers.
98
+ */
99
+
100
+ a:focus {
101
+ outline: thin dotted;
102
+ }
103
+
104
+ /**
105
+ * Improve readability when focused and also mouse hovered in all browsers.
106
+ */
107
+
108
+ a:active,
109
+ a:hover {
110
+ outline: 0;
111
+ }
112
+
113
+ /* ==========================================================================
114
+ Typography
115
+ ========================================================================== */
116
+
117
+ /**
118
+ * Address variable `h1` font-size and margin within `section` and `article`
119
+ * contexts in Firefox 4+, Safari 5, and Chrome.
120
+ */
121
+
122
+ h1 {
123
+ font-size: 2em;
124
+ margin: 0.67em 0;
125
+ }
126
+
127
+ /**
128
+ * Address styling not present in IE 8/9, Safari 5, and Chrome.
129
+ */
130
+
131
+ abbr[title] {
132
+ border-bottom: 1px dotted;
133
+ }
134
+
135
+ /**
136
+ * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
137
+ */
138
+
139
+ b,
140
+ strong {
141
+ font-weight: bold;
142
+ }
143
+
144
+ /**
145
+ * Address styling not present in Safari 5 and Chrome.
146
+ */
147
+
148
+ dfn {
149
+ font-style: italic;
150
+ }
151
+
152
+ /**
153
+ * Address differences between Firefox and other browsers.
154
+ */
155
+
156
+ hr {
157
+ -moz-box-sizing: content-box;
158
+ box-sizing: content-box;
159
+ height: 0;
160
+ }
161
+
162
+ /**
163
+ * Address styling not present in IE 8/9.
164
+ */
165
+
166
+ mark {
167
+ background: #ff0;
168
+ color: #000;
169
+ }
170
+
171
+ /**
172
+ * Correct font family set oddly in Safari 5 and Chrome.
173
+ */
174
+
175
+ code,
176
+ kbd,
177
+ pre,
178
+ samp {
179
+ font-family: monospace, serif;
180
+ font-size: 1em;
181
+ }
182
+
183
+ /**
184
+ * Improve readability of pre-formatted text in all browsers.
185
+ */
186
+
187
+ pre {
188
+ white-space: pre-wrap;
189
+ }
190
+
191
+ /**
192
+ * Set consistent quote types.
193
+ */
194
+
195
+ q {
196
+ quotes: "\201C" "\201D" "\2018" "\2019";
197
+ }
198
+
199
+ /**
200
+ * Address inconsistent and variable font size in all browsers.
201
+ */
202
+
203
+ small {
204
+ font-size: 80%;
205
+ }
206
+
207
+ /**
208
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
209
+ */
210
+
211
+ sub,
212
+ sup {
213
+ font-size: 75%;
214
+ line-height: 0;
215
+ position: relative;
216
+ vertical-align: baseline;
217
+ }
218
+
219
+ sup {
220
+ top: -0.5em;
221
+ }
222
+
223
+ sub {
224
+ bottom: -0.25em;
225
+ }
226
+
227
+ /* ==========================================================================
228
+ Embedded content
229
+ ========================================================================== */
230
+
231
+ /**
232
+ * Remove border when inside `a` element in IE 8/9.
233
+ */
234
+
235
+ img {
236
+ border: 0;
237
+ }
238
+
239
+ /**
240
+ * Correct overflow displayed oddly in IE 9.
241
+ */
242
+
243
+ svg:not(:root) {
244
+ overflow: hidden;
245
+ }
246
+
247
+ /* ==========================================================================
248
+ Figures
249
+ ========================================================================== */
250
+
251
+ /**
252
+ * Address margin not present in IE 8/9 and Safari 5.
253
+ */
254
+
255
+ figure {
256
+ margin: 0;
257
+ }
258
+
259
+ /* ==========================================================================
260
+ Forms
261
+ ========================================================================== */
262
+
263
+ /**
264
+ * Define consistent border, margin, and padding.
265
+ */
266
+
267
+ fieldset {
268
+ border: 1px solid #c0c0c0;
269
+ margin: 0 2px;
270
+ padding: 0.35em 0.625em 0.75em;
271
+ }
272
+
273
+ /**
274
+ * 1. Correct `color` not being inherited in IE 8/9.
275
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
276
+ */
277
+
278
+ legend {
279
+ border: 0; /* 1 */
280
+ padding: 0; /* 2 */
281
+ }
282
+
283
+ /**
284
+ * 1. Correct font family not being inherited in all browsers.
285
+ * 2. Correct font size not being inherited in all browsers.
286
+ * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
287
+ */
288
+
289
+ button,
290
+ input,
291
+ select,
292
+ textarea {
293
+ font-family: inherit; /* 1 */
294
+ font-size: 100%; /* 2 */
295
+ margin: 0; /* 3 */
296
+ }
297
+
298
+ /**
299
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
300
+ * the UA stylesheet.
301
+ */
302
+
303
+ button,
304
+ input {
305
+ line-height: normal;
306
+ }
307
+
308
+ /**
309
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
310
+ * All other form control elements do not inherit `text-transform` values.
311
+ * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
312
+ * Correct `select` style inheritance in Firefox 4+ and Opera.
313
+ */
314
+
315
+ button,
316
+ select {
317
+ text-transform: none;
318
+ }
319
+
320
+ /**
321
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
322
+ * and `video` controls.
323
+ * 2. Correct inability to style clickable `input` types in iOS.
324
+ * 3. Improve usability and consistency of cursor style between image-type
325
+ * `input` and others.
326
+ */
327
+
328
+ button,
329
+ html input[type="button"], /* 1 */
330
+ input[type="reset"],
331
+ input[type="submit"] {
332
+ -webkit-appearance: button; /* 2 */
333
+ cursor: pointer; /* 3 */
334
+ }
335
+
336
+ /**
337
+ * Re-set default cursor for disabled elements.
338
+ */
339
+
340
+ button[disabled],
341
+ html input[disabled] {
342
+ cursor: default;
343
+ }
344
+
345
+ /**
346
+ * 1. Address box sizing set to `content-box` in IE 8/9.
347
+ * 2. Remove excess padding in IE 8/9.
348
+ */
349
+
350
+ input[type="checkbox"],
351
+ input[type="radio"] {
352
+ box-sizing: border-box; /* 1 */
353
+ padding: 0; /* 2 */
354
+ }
355
+
356
+ /**
357
+ * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
358
+ * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
359
+ * (include `-moz` to future-proof).
360
+ */
361
+
362
+ input[type="search"] {
363
+ -webkit-appearance: textfield; /* 1 */
364
+ -moz-box-sizing: content-box;
365
+ -webkit-box-sizing: content-box; /* 2 */
366
+ box-sizing: content-box;
367
+ }
368
+
369
+ /**
370
+ * Remove inner padding and search cancel button in Safari 5 and Chrome
371
+ * on OS X.
372
+ */
373
+
374
+ input[type="search"]::-webkit-search-cancel-button,
375
+ input[type="search"]::-webkit-search-decoration {
376
+ -webkit-appearance: none;
377
+ }
378
+
379
+ /**
380
+ * Remove inner padding and border in Firefox 4+.
381
+ */
382
+
383
+ button::-moz-focus-inner,
384
+ input::-moz-focus-inner {
385
+ border: 0;
386
+ padding: 0;
387
+ }
388
+
389
+ /**
390
+ * 1. Remove default vertical scrollbar in IE 8/9.
391
+ * 2. Improve readability and alignment in all browsers.
392
+ */
393
+
394
+ textarea {
395
+ overflow: auto; /* 1 */
396
+ vertical-align: top; /* 2 */
397
+ }
398
+
399
+ /* ==========================================================================
400
+ Tables
401
+ ========================================================================== */
402
+
403
+ /**
404
+ * Remove most spacing between table cells.
405
+ */
406
+
407
+ table {
408
+ border-collapse: collapse;
409
+ border-spacing: 0;
410
+ }
metadata ADDED
@@ -0,0 +1,292 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: foundation-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 5.0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - ZURB
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-11-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: sass
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: 3.2.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: 3.2.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: railties
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: 3.1.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: 3.1.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: ZURB Foundation on Sass/Compass
70
+ email:
71
+ - foundation@zurb.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - .gitignore
77
+ - Gemfile
78
+ - LICENSE.txt
79
+ - README.md
80
+ - Rakefile
81
+ - app/controllers/foundation/rails/styleguide_controller.rb
82
+ - app/views/foundation/rails/styleguide/show.html.erb
83
+ - config/routes.rb
84
+ - foundation-rails.gemspec
85
+ - lib/foundation-rails.rb
86
+ - lib/foundation/rails.rb
87
+ - lib/foundation/rails/engine.rb
88
+ - lib/foundation/rails/generators/install_generator.rb
89
+ - lib/foundation/rails/templates/application.html.erb
90
+ - lib/foundation/rails/templates/application.html.haml
91
+ - lib/foundation/rails/templates/application.html.slim
92
+ - lib/foundation/rails/version.rb
93
+ - test/dummy/.gitignore
94
+ - test/dummy/Gemfile
95
+ - test/dummy/README.rdoc
96
+ - test/dummy/Rakefile
97
+ - test/dummy/app/assets/images/.keep
98
+ - test/dummy/app/assets/javascripts/application.js
99
+ - test/dummy/app/assets/stylesheets/application.css
100
+ - test/dummy/app/assets/stylesheets/foundation_and_overrides.scss
101
+ - test/dummy/app/controllers/application_controller.rb
102
+ - test/dummy/app/controllers/concerns/.keep
103
+ - test/dummy/app/controllers/styleguide_controller.rb
104
+ - test/dummy/app/helpers/application_helper.rb
105
+ - test/dummy/app/helpers/styleguide_helper.rb
106
+ - test/dummy/app/mailers/.keep
107
+ - test/dummy/app/models/.keep
108
+ - test/dummy/app/models/concerns/.keep
109
+ - test/dummy/app/views/layouts/application.html.erb
110
+ - test/dummy/app/views/styleguide/show.html.erb
111
+ - test/dummy/bin/bundle
112
+ - test/dummy/bin/rails
113
+ - test/dummy/bin/rake
114
+ - test/dummy/config.ru
115
+ - test/dummy/config/application.rb
116
+ - test/dummy/config/boot.rb
117
+ - test/dummy/config/database.yml
118
+ - test/dummy/config/environment.rb
119
+ - test/dummy/config/environments/development.rb
120
+ - test/dummy/config/environments/production.rb
121
+ - test/dummy/config/environments/test.rb
122
+ - test/dummy/config/initializers/backtrace_silencers.rb
123
+ - test/dummy/config/initializers/filter_parameter_logging.rb
124
+ - test/dummy/config/initializers/inflections.rb
125
+ - test/dummy/config/initializers/mime_types.rb
126
+ - test/dummy/config/initializers/secret_token.rb
127
+ - test/dummy/config/initializers/session_store.rb
128
+ - test/dummy/config/initializers/wrap_parameters.rb
129
+ - test/dummy/config/locales/en.yml
130
+ - test/dummy/config/routes.rb
131
+ - test/dummy/db/seeds.rb
132
+ - test/dummy/lib/assets/.keep
133
+ - test/dummy/lib/tasks/.keep
134
+ - test/dummy/log/.keep
135
+ - test/dummy/public/404.html
136
+ - test/dummy/public/422.html
137
+ - test/dummy/public/500.html
138
+ - test/dummy/public/favicon.ico
139
+ - test/dummy/public/robots.txt
140
+ - test/dummy/test/controllers/.keep
141
+ - test/dummy/test/controllers/styleguide_controller_test.rb
142
+ - test/dummy/test/fixtures/.keep
143
+ - test/dummy/test/helpers/.keep
144
+ - test/dummy/test/helpers/styleguide_helper_test.rb
145
+ - test/dummy/test/integration/.keep
146
+ - test/dummy/test/mailers/.keep
147
+ - test/dummy/test/models/.keep
148
+ - test/dummy/test/test_helper.rb
149
+ - test/dummy/vendor/assets/javascripts/.keep
150
+ - test/dummy/vendor/assets/stylesheets/.keep
151
+ - vendor/_settings.scss
152
+ - vendor/assets/javascripts/foundation.js
153
+ - vendor/assets/javascripts/foundation/foundation.abide.js
154
+ - vendor/assets/javascripts/foundation/foundation.accordion.js
155
+ - vendor/assets/javascripts/foundation/foundation.alert.js
156
+ - vendor/assets/javascripts/foundation/foundation.clearing.js
157
+ - vendor/assets/javascripts/foundation/foundation.dropdown.js
158
+ - vendor/assets/javascripts/foundation/foundation.interchange.js
159
+ - vendor/assets/javascripts/foundation/foundation.joyride.js
160
+ - vendor/assets/javascripts/foundation/foundation.js
161
+ - vendor/assets/javascripts/foundation/foundation.magellan.js
162
+ - vendor/assets/javascripts/foundation/foundation.offcanvas.js
163
+ - vendor/assets/javascripts/foundation/foundation.orbit.js
164
+ - vendor/assets/javascripts/foundation/foundation.reveal.js
165
+ - vendor/assets/javascripts/foundation/foundation.tab.js
166
+ - vendor/assets/javascripts/foundation/foundation.tooltip.js
167
+ - vendor/assets/javascripts/foundation/foundation.topbar.js
168
+ - vendor/assets/javascripts/vendor/modernizr.js
169
+ - vendor/assets/stylesheets/foundation.scss
170
+ - vendor/assets/stylesheets/foundation/_functions.scss
171
+ - vendor/assets/stylesheets/foundation/_settings.scss
172
+ - vendor/assets/stylesheets/foundation/components/_accordion.scss
173
+ - vendor/assets/stylesheets/foundation/components/_alert-boxes.scss
174
+ - vendor/assets/stylesheets/foundation/components/_block-grid.scss
175
+ - vendor/assets/stylesheets/foundation/components/_breadcrumbs.scss
176
+ - vendor/assets/stylesheets/foundation/components/_button-groups.scss
177
+ - vendor/assets/stylesheets/foundation/components/_buttons.scss
178
+ - vendor/assets/stylesheets/foundation/components/_clearing.scss
179
+ - vendor/assets/stylesheets/foundation/components/_dropdown-buttons.scss
180
+ - vendor/assets/stylesheets/foundation/components/_dropdown.scss
181
+ - vendor/assets/stylesheets/foundation/components/_flex-video.scss
182
+ - vendor/assets/stylesheets/foundation/components/_forms.scss
183
+ - vendor/assets/stylesheets/foundation/components/_functions.scss
184
+ - vendor/assets/stylesheets/foundation/components/_global.scss
185
+ - vendor/assets/stylesheets/foundation/components/_grid.scss
186
+ - vendor/assets/stylesheets/foundation/components/_inline-lists.scss
187
+ - vendor/assets/stylesheets/foundation/components/_joyride.scss
188
+ - vendor/assets/stylesheets/foundation/components/_keystrokes.scss
189
+ - vendor/assets/stylesheets/foundation/components/_labels.scss
190
+ - vendor/assets/stylesheets/foundation/components/_magellan.scss
191
+ - vendor/assets/stylesheets/foundation/components/_offcanvas.scss
192
+ - vendor/assets/stylesheets/foundation/components/_orbit.scss
193
+ - vendor/assets/stylesheets/foundation/components/_pagination.scss
194
+ - vendor/assets/stylesheets/foundation/components/_panels.scss
195
+ - vendor/assets/stylesheets/foundation/components/_pricing-tables.scss
196
+ - vendor/assets/stylesheets/foundation/components/_progress-bars.scss
197
+ - vendor/assets/stylesheets/foundation/components/_reveal.scss
198
+ - vendor/assets/stylesheets/foundation/components/_side-nav.scss
199
+ - vendor/assets/stylesheets/foundation/components/_split-buttons.scss
200
+ - vendor/assets/stylesheets/foundation/components/_sub-nav.scss
201
+ - vendor/assets/stylesheets/foundation/components/_switch.scss
202
+ - vendor/assets/stylesheets/foundation/components/_tables.scss
203
+ - vendor/assets/stylesheets/foundation/components/_tabs.scss
204
+ - vendor/assets/stylesheets/foundation/components/_thumbs.scss
205
+ - vendor/assets/stylesheets/foundation/components/_tooltips.scss
206
+ - vendor/assets/stylesheets/foundation/components/_top-bar.scss
207
+ - vendor/assets/stylesheets/foundation/components/_type.scss
208
+ - vendor/assets/stylesheets/foundation/components/_visibility.scss
209
+ - vendor/assets/stylesheets/normalize.scss
210
+ homepage: http://foundation.zurb.com
211
+ licenses:
212
+ - MIT
213
+ metadata: {}
214
+ post_install_message:
215
+ rdoc_options: []
216
+ require_paths:
217
+ - lib
218
+ required_ruby_version: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - '>='
221
+ - !ruby/object:Gem::Version
222
+ version: '0'
223
+ required_rubygems_version: !ruby/object:Gem::Requirement
224
+ requirements:
225
+ - - '>='
226
+ - !ruby/object:Gem::Version
227
+ version: '0'
228
+ requirements: []
229
+ rubyforge_project:
230
+ rubygems_version: 2.0.3
231
+ signing_key:
232
+ specification_version: 4
233
+ summary: ZURB Foundation on Sass/Compass
234
+ test_files:
235
+ - test/dummy/.gitignore
236
+ - test/dummy/Gemfile
237
+ - test/dummy/README.rdoc
238
+ - test/dummy/Rakefile
239
+ - test/dummy/app/assets/images/.keep
240
+ - test/dummy/app/assets/javascripts/application.js
241
+ - test/dummy/app/assets/stylesheets/application.css
242
+ - test/dummy/app/assets/stylesheets/foundation_and_overrides.scss
243
+ - test/dummy/app/controllers/application_controller.rb
244
+ - test/dummy/app/controllers/concerns/.keep
245
+ - test/dummy/app/controllers/styleguide_controller.rb
246
+ - test/dummy/app/helpers/application_helper.rb
247
+ - test/dummy/app/helpers/styleguide_helper.rb
248
+ - test/dummy/app/mailers/.keep
249
+ - test/dummy/app/models/.keep
250
+ - test/dummy/app/models/concerns/.keep
251
+ - test/dummy/app/views/layouts/application.html.erb
252
+ - test/dummy/app/views/styleguide/show.html.erb
253
+ - test/dummy/bin/bundle
254
+ - test/dummy/bin/rails
255
+ - test/dummy/bin/rake
256
+ - test/dummy/config.ru
257
+ - test/dummy/config/application.rb
258
+ - test/dummy/config/boot.rb
259
+ - test/dummy/config/database.yml
260
+ - test/dummy/config/environment.rb
261
+ - test/dummy/config/environments/development.rb
262
+ - test/dummy/config/environments/production.rb
263
+ - test/dummy/config/environments/test.rb
264
+ - test/dummy/config/initializers/backtrace_silencers.rb
265
+ - test/dummy/config/initializers/filter_parameter_logging.rb
266
+ - test/dummy/config/initializers/inflections.rb
267
+ - test/dummy/config/initializers/mime_types.rb
268
+ - test/dummy/config/initializers/secret_token.rb
269
+ - test/dummy/config/initializers/session_store.rb
270
+ - test/dummy/config/initializers/wrap_parameters.rb
271
+ - test/dummy/config/locales/en.yml
272
+ - test/dummy/config/routes.rb
273
+ - test/dummy/db/seeds.rb
274
+ - test/dummy/lib/assets/.keep
275
+ - test/dummy/lib/tasks/.keep
276
+ - test/dummy/log/.keep
277
+ - test/dummy/public/404.html
278
+ - test/dummy/public/422.html
279
+ - test/dummy/public/500.html
280
+ - test/dummy/public/favicon.ico
281
+ - test/dummy/public/robots.txt
282
+ - test/dummy/test/controllers/.keep
283
+ - test/dummy/test/controllers/styleguide_controller_test.rb
284
+ - test/dummy/test/fixtures/.keep
285
+ - test/dummy/test/helpers/.keep
286
+ - test/dummy/test/helpers/styleguide_helper_test.rb
287
+ - test/dummy/test/integration/.keep
288
+ - test/dummy/test/mailers/.keep
289
+ - test/dummy/test/models/.keep
290
+ - test/dummy/test/test_helper.rb
291
+ - test/dummy/vendor/assets/javascripts/.keep
292
+ - test/dummy/vendor/assets/stylesheets/.keep