ssproto 1.0.6 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 13764d6bbcf85da90246bc9d98ff30962758b9dc
4
- data.tar.gz: 7a20e74a3249651bb033bb640ccdc0f082089f55
3
+ metadata.gz: 7085460cbbf2c42999f374204b05e425aaeecdd8
4
+ data.tar.gz: 823cf3e7655c83a8bf47dc60308ae1a2e87182a1
5
5
  SHA512:
6
- metadata.gz: f00594e1c03ef2c120144fdf14a8d3b87ed70b797b64af02f341fe4ca6da4c53bb3b92708c074e7b0a7d4b24d814bea4a6fe5a0b799e969051d7a67370aad1ee
7
- data.tar.gz: e03f67e22d697fee95270b916543c63eab429b671e7c478e7b0057739d28ddba858d4ed7b7f57763d01457195d35b595706f77ef9dd7e985e09ff478d6377e3a
6
+ metadata.gz: 8401b1839faceda302541453e29c18aafaa5eff58d35207320c23c07364b0bf083d9ffc5490342cca45a8f50d21d024833208b73612e0e32ba83e474c794e07b
7
+ data.tar.gz: cc2a1288e6fc81f25dcd72b65e9ce889d624cb2d594179d9544eef14b764a318e7315fed5754e9631d948f0f4e2da8a0fb46fa2db73443b96b540f78ce630e21
@@ -6,7 +6,7 @@ class SSProto::Slim
6
6
  end
7
7
  def self.renderSlim(filename,path)
8
8
  begin
9
- eval File.read("#{Dir.pwd}/config.rb")
9
+ eval File.read("#{Dir.pwd}/each.rb")
10
10
  tilt_result = Tilt.new(filename).render self
11
11
  File.write(path,tilt_result)
12
12
  rescue Exception => e
@@ -1,28 +1,28 @@
1
- require 'filewatcher'
2
- class SSProto
3
- def self.create
4
- require 'fileutils'
5
- FileUtils.cp_r(Dir["#{File.expand_path('../../template/',__FILE__)}/*"],Dir.pwd)
6
- self.watch
7
- end
8
- def self.watch
9
- begin
10
- sass =Process.spawn("sass --watch sass/:css/ --style compressed")
11
- Process.detach sass
12
- coffee = Process.spawn("coffee -o js -cw coffee")
13
- Process.detach coffee
14
- SSProto::Slim.setSlimOptions :pretty => true,:sort_attrs => false
15
- directories_to_watch = ["index.slim","config.rb","css/","js/"]
16
- puts "Watching:\n #{directories_to_watch.join("\n ")}\n"
17
- FileWatcher.new(directories_to_watch).watch do |f|
18
- puts "Rendering index.html"
19
- SSProto::Slim.renderSlim("#{Dir.pwd}/index.slim","#{Dir.pwd}/index.html")
20
- puts " finished"
21
- end
22
- rescue SystemExit, Interrupt
23
- Process.kill "SIGINT",sass
24
- Process.kill "SIGINT",coffee
25
- end
26
- end
27
- end
1
+ require 'filewatcher'
2
+ class SSProto
3
+ def self.create
4
+ require 'fileutils'
5
+ FileUtils.cp_r(Dir["#{File.expand_path('../../template/',__FILE__)}/*"],Dir.pwd)
6
+ self.watch
7
+ end
8
+ def self.watch
9
+ begin
10
+ compass =Process.spawn("compass watch")
11
+ Process.detach compass
12
+ coffee = Process.spawn("coffee -o js -cw coffee")
13
+ Process.detach coffee
14
+ SSProto::Slim.setSlimOptions :pretty => true,:sort_attrs => false
15
+ directories_to_watch = ["index.slim","each.rb","css/","js/"]
16
+ puts "Watching:\n #{directories_to_watch.join("\n ")}\n"
17
+ FileWatcher.new(directories_to_watch).watch do |f|
18
+ puts "Rendering index.html"
19
+ SSProto::Slim.renderSlim("#{Dir.pwd}/index.slim","#{Dir.pwd}/index.html")
20
+ puts " finished"
21
+ end
22
+ rescue SystemExit, Interrupt
23
+ Process.kill "SIGINT",compass
24
+ Process.kill "SIGINT",coffee
25
+ end
26
+ end
27
+ end
28
28
  require 'slim/slim.rb'
@@ -1,4 +1,24 @@
1
- @javascript_files = Dir.entries( "#{Dir.pwd}/js/" ) - ["..","."]
2
- @css_files = Dir.entries( "#{Dir.pwd}/css/" ) - ["..","."]
3
- @javascript_files.select!{|e| File.extname( e ) == ".js"}
4
- @css_files.select!{|e| File.extname( e ) == ".css"}
1
+ # Require any additional compass plugins here.
2
+
3
+ # Set this to the root of your project when deployed:
4
+ http_path = "/"
5
+ css_dir = "css"
6
+ sass_dir = "sass"
7
+ images_dir = "images"
8
+ javascripts_dir = "js"
9
+
10
+ # You can select your preferred output style here (can be overridden via the command line):
11
+ # output_style = :expanded or :nested or :compact or :compressed
12
+
13
+ # To enable relative paths to assets via compass helper functions. Uncomment:
14
+ # relative_assets = true
15
+
16
+ # To disable debugging comments that display the original location of your selectors. Uncomment:
17
+ # line_comments = false
18
+
19
+
20
+ # If you prefer the indented syntax, you might want to regenerate this
21
+ # project again passing --syntax sass, or you can uncomment this:
22
+ # preferred_syntax = :sass
23
+ # and then run:
24
+ # sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass
@@ -0,0 +1,500 @@
1
+ /*! normalize.css v3.0.1 | MIT License | git.io/normalize */
2
+ /**
3
+ * 1. Set default font family to sans-serif.
4
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
5
+ * user zoom.
6
+ */
7
+ /* line 9, ../sass/_normalize.scss */
8
+ html {
9
+ font-family: sans-serif;
10
+ /* 1 */
11
+ -ms-text-size-adjust: 100%;
12
+ /* 2 */
13
+ -webkit-text-size-adjust: 100%;
14
+ /* 2 */
15
+ }
16
+
17
+ /**
18
+ * Remove default margin.
19
+ */
20
+ /* line 19, ../sass/_normalize.scss */
21
+ body {
22
+ margin: 0;
23
+ }
24
+
25
+ /* HTML5 display definitions
26
+ ========================================================================== */
27
+ /**
28
+ * Correct `block` display not defined for any HTML5 element in IE 8/9.
29
+ * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
30
+ * Correct `block` display not defined for `main` in IE 11.
31
+ */
32
+ /* line 43, ../sass/_normalize.scss */
33
+ article,
34
+ aside,
35
+ details,
36
+ figcaption,
37
+ figure,
38
+ footer,
39
+ header,
40
+ hgroup,
41
+ main,
42
+ nav,
43
+ section,
44
+ summary {
45
+ display: block;
46
+ }
47
+
48
+ /**
49
+ * 1. Correct `inline-block` display not defined in IE 8/9.
50
+ * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
51
+ */
52
+ /* line 55, ../sass/_normalize.scss */
53
+ audio,
54
+ canvas,
55
+ progress,
56
+ video {
57
+ display: inline-block;
58
+ /* 1 */
59
+ vertical-align: baseline;
60
+ /* 2 */
61
+ }
62
+
63
+ /**
64
+ * Prevent modern browsers from displaying `audio` without controls.
65
+ * Remove excess height in iOS 5 devices.
66
+ */
67
+ /* line 65, ../sass/_normalize.scss */
68
+ audio:not([controls]) {
69
+ display: none;
70
+ height: 0;
71
+ }
72
+
73
+ /**
74
+ * Address `[hidden]` styling not present in IE 8/9/10.
75
+ * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
76
+ */
77
+ /* line 76, ../sass/_normalize.scss */
78
+ [hidden],
79
+ template {
80
+ display: none;
81
+ }
82
+
83
+ /* Links
84
+ ========================================================================== */
85
+ /**
86
+ * Remove the gray background color from active links in IE 10.
87
+ */
88
+ /* line 87, ../sass/_normalize.scss */
89
+ a {
90
+ background: transparent;
91
+ }
92
+
93
+ /**
94
+ * Improve readability when focused and also mouse hovered in all browsers.
95
+ */
96
+ /* line 96, ../sass/_normalize.scss */
97
+ a:active,
98
+ a:hover {
99
+ outline: 0;
100
+ }
101
+
102
+ /* Text-level semantics
103
+ ========================================================================== */
104
+ /**
105
+ * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
106
+ */
107
+ /* line 107, ../sass/_normalize.scss */
108
+ abbr[title] {
109
+ border-bottom: 1px dotted;
110
+ }
111
+
112
+ /**
113
+ * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
114
+ */
115
+ /* line 116, ../sass/_normalize.scss */
116
+ b,
117
+ strong {
118
+ font-weight: bold;
119
+ }
120
+
121
+ /**
122
+ * Address styling not present in Safari and Chrome.
123
+ */
124
+ /* line 124, ../sass/_normalize.scss */
125
+ dfn {
126
+ font-style: italic;
127
+ }
128
+
129
+ /**
130
+ * Address variable `h1` font-size and margin within `section` and `article`
131
+ * contexts in Firefox 4+, Safari, and Chrome.
132
+ */
133
+ /* line 133, ../sass/_normalize.scss */
134
+ h1 {
135
+ font-size: 2em;
136
+ margin: 0.67em 0;
137
+ }
138
+
139
+ /**
140
+ * Address styling not present in IE 8/9.
141
+ */
142
+ /* line 142, ../sass/_normalize.scss */
143
+ mark {
144
+ background: #ff0;
145
+ color: #000;
146
+ }
147
+
148
+ /**
149
+ * Address inconsistent and variable font size in all browsers.
150
+ */
151
+ /* line 151, ../sass/_normalize.scss */
152
+ small {
153
+ font-size: 80%;
154
+ }
155
+
156
+ /**
157
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
158
+ */
159
+ /* line 160, ../sass/_normalize.scss */
160
+ sub,
161
+ sup {
162
+ font-size: 75%;
163
+ line-height: 0;
164
+ position: relative;
165
+ vertical-align: baseline;
166
+ }
167
+
168
+ /* line 167, ../sass/_normalize.scss */
169
+ sup {
170
+ top: -0.5em;
171
+ }
172
+
173
+ /* line 171, ../sass/_normalize.scss */
174
+ sub {
175
+ bottom: -0.25em;
176
+ }
177
+
178
+ /* Embedded content
179
+ ========================================================================== */
180
+ /**
181
+ * Remove border when inside `a` element in IE 8/9/10.
182
+ */
183
+ /* line 182, ../sass/_normalize.scss */
184
+ img {
185
+ border: 0;
186
+ }
187
+
188
+ /**
189
+ * Correct overflow not hidden in IE 9/10/11.
190
+ */
191
+ /* line 190, ../sass/_normalize.scss */
192
+ svg:not(:root) {
193
+ overflow: hidden;
194
+ }
195
+
196
+ /* Grouping content
197
+ ========================================================================== */
198
+ /**
199
+ * Address margin not present in IE 8/9 and Safari.
200
+ */
201
+ /* line 201, ../sass/_normalize.scss */
202
+ figure {
203
+ margin: 1em 40px;
204
+ }
205
+
206
+ /**
207
+ * Address differences between Firefox and other browsers.
208
+ */
209
+ /* line 209, ../sass/_normalize.scss */
210
+ hr {
211
+ -moz-box-sizing: content-box;
212
+ box-sizing: content-box;
213
+ height: 0;
214
+ }
215
+
216
+ /**
217
+ * Contain overflow in all browsers.
218
+ */
219
+ /* line 219, ../sass/_normalize.scss */
220
+ pre {
221
+ overflow: auto;
222
+ }
223
+
224
+ /**
225
+ * Address odd `em`-unit font size rendering in all browsers.
226
+ */
227
+ /* line 230, ../sass/_normalize.scss */
228
+ code,
229
+ kbd,
230
+ pre,
231
+ samp {
232
+ font-family: monospace, monospace;
233
+ font-size: 1em;
234
+ }
235
+
236
+ /* Forms
237
+ ========================================================================== */
238
+ /**
239
+ * Known limitation: by default, Chrome and Safari on OS X allow very limited
240
+ * styling of `select`, unless a `border` property is set.
241
+ */
242
+ /**
243
+ * 1. Correct color not being inherited.
244
+ * Known issue: affects color of disabled elements.
245
+ * 2. Correct font properties not being inherited.
246
+ * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
247
+ */
248
+ /* line 254, ../sass/_normalize.scss */
249
+ button,
250
+ input,
251
+ optgroup,
252
+ select,
253
+ textarea {
254
+ color: inherit;
255
+ /* 1 */
256
+ font: inherit;
257
+ /* 2 */
258
+ margin: 0;
259
+ /* 3 */
260
+ }
261
+
262
+ /**
263
+ * Address `overflow` set to `hidden` in IE 8/9/10/11.
264
+ */
265
+ /* line 264, ../sass/_normalize.scss */
266
+ button {
267
+ overflow: visible;
268
+ }
269
+
270
+ /**
271
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
272
+ * All other form control elements do not inherit `text-transform` values.
273
+ * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
274
+ * Correct `select` style inheritance in Firefox.
275
+ */
276
+ /* line 276, ../sass/_normalize.scss */
277
+ button,
278
+ select {
279
+ text-transform: none;
280
+ }
281
+
282
+ /**
283
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
284
+ * and `video` controls.
285
+ * 2. Correct inability to style clickable `input` types in iOS.
286
+ * 3. Improve usability and consistency of cursor style between image-type
287
+ * `input` and others.
288
+ */
289
+ /* line 291, ../sass/_normalize.scss */
290
+ button,
291
+ html input[type="button"],
292
+ input[type="reset"],
293
+ input[type="submit"] {
294
+ -webkit-appearance: button;
295
+ /* 2 */
296
+ cursor: pointer;
297
+ /* 3 */
298
+ }
299
+
300
+ /**
301
+ * Re-set default cursor for disabled elements.
302
+ */
303
+ /* line 301, ../sass/_normalize.scss */
304
+ button[disabled],
305
+ html input[disabled] {
306
+ cursor: default;
307
+ }
308
+
309
+ /**
310
+ * Remove inner padding and border in Firefox 4+.
311
+ */
312
+ /* line 310, ../sass/_normalize.scss */
313
+ button::-moz-focus-inner,
314
+ input::-moz-focus-inner {
315
+ border: 0;
316
+ padding: 0;
317
+ }
318
+
319
+ /**
320
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
321
+ * the UA stylesheet.
322
+ */
323
+ /* line 320, ../sass/_normalize.scss */
324
+ input {
325
+ line-height: normal;
326
+ }
327
+
328
+ /**
329
+ * It's recommended that you don't attempt to style these elements.
330
+ * Firefox's implementation doesn't respect box-sizing, padding, or width.
331
+ *
332
+ * 1. Address box sizing set to `content-box` in IE 8/9/10.
333
+ * 2. Remove excess padding in IE 8/9/10.
334
+ */
335
+ /* line 333, ../sass/_normalize.scss */
336
+ input[type="checkbox"],
337
+ input[type="radio"] {
338
+ box-sizing: border-box;
339
+ /* 1 */
340
+ padding: 0;
341
+ /* 2 */
342
+ }
343
+
344
+ /**
345
+ * Fix the cursor style for Chrome's increment/decrement buttons. For certain
346
+ * `font-size` values of the `input`, it causes the cursor style of the
347
+ * decrement button to change from `default` to `text`.
348
+ */
349
+ /* line 345, ../sass/_normalize.scss */
350
+ input[type="number"]::-webkit-inner-spin-button,
351
+ input[type="number"]::-webkit-outer-spin-button {
352
+ height: auto;
353
+ }
354
+
355
+ /**
356
+ * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
357
+ * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
358
+ * (include `-moz` to future-proof).
359
+ */
360
+ /* line 355, ../sass/_normalize.scss */
361
+ input[type="search"] {
362
+ -webkit-appearance: textfield;
363
+ /* 1 */
364
+ -moz-box-sizing: content-box;
365
+ -webkit-box-sizing: content-box;
366
+ /* 2 */
367
+ box-sizing: content-box;
368
+ }
369
+
370
+ /**
371
+ * Remove inner padding and search cancel button in Safari and Chrome on OS X.
372
+ * Safari (but not Chrome) clips the cancel button when the search input has
373
+ * padding (and `textfield` appearance).
374
+ */
375
+ /* line 369, ../sass/_normalize.scss */
376
+ input[type="search"]::-webkit-search-cancel-button,
377
+ input[type="search"]::-webkit-search-decoration {
378
+ -webkit-appearance: none;
379
+ }
380
+
381
+ /**
382
+ * Define consistent border, margin, and padding.
383
+ */
384
+ /* line 377, ../sass/_normalize.scss */
385
+ fieldset {
386
+ border: 1px solid #c0c0c0;
387
+ margin: 0 2px;
388
+ padding: 0.35em 0.625em 0.75em;
389
+ }
390
+
391
+ /**
392
+ * 1. Correct `color` not being inherited in IE 8/9/10/11.
393
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
394
+ */
395
+ /* line 388, ../sass/_normalize.scss */
396
+ legend {
397
+ border: 0;
398
+ /* 1 */
399
+ padding: 0;
400
+ /* 2 */
401
+ }
402
+
403
+ /**
404
+ * Remove default vertical scrollbar in IE 8/9/10/11.
405
+ */
406
+ /* line 397, ../sass/_normalize.scss */
407
+ textarea {
408
+ overflow: auto;
409
+ }
410
+
411
+ /**
412
+ * Don't inherit the `font-weight` (applied by a rule above).
413
+ * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
414
+ */
415
+ /* line 406, ../sass/_normalize.scss */
416
+ optgroup {
417
+ font-weight: bold;
418
+ }
419
+
420
+ /* Tables
421
+ ========================================================================== */
422
+ /**
423
+ * Remove most spacing between table cells.
424
+ */
425
+ /* line 417, ../sass/_normalize.scss */
426
+ table {
427
+ border-collapse: collapse;
428
+ border-spacing: 0;
429
+ }
430
+
431
+ /* line 423, ../sass/_normalize.scss */
432
+ td,
433
+ th {
434
+ padding: 0;
435
+ }
436
+
437
+ /* line 17, ../../../../../Users/JAdriano/.pik/rubies/Ruby-200-p195/lib/ruby/gems/2.0.0/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
438
+ html, body, div, span, applet, object, iframe,
439
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
440
+ a, abbr, acronym, address, big, cite, code,
441
+ del, dfn, em, img, ins, kbd, q, s, samp,
442
+ small, strike, strong, sub, sup, tt, var,
443
+ b, u, i, center,
444
+ dl, dt, dd, ol, ul, li,
445
+ fieldset, form, label, legend,
446
+ table, caption, tbody, tfoot, thead, tr, th, td,
447
+ article, aside, canvas, details, embed,
448
+ figure, figcaption, footer, header, hgroup,
449
+ menu, nav, output, ruby, section, summary,
450
+ time, mark, audio, video {
451
+ margin: 0;
452
+ padding: 0;
453
+ border: 0;
454
+ font: inherit;
455
+ font-size: 100%;
456
+ vertical-align: baseline;
457
+ }
458
+
459
+ /* line 22, ../../../../../Users/JAdriano/.pik/rubies/Ruby-200-p195/lib/ruby/gems/2.0.0/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
460
+ html {
461
+ line-height: 1;
462
+ }
463
+
464
+ /* line 24, ../../../../../Users/JAdriano/.pik/rubies/Ruby-200-p195/lib/ruby/gems/2.0.0/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
465
+ ol, ul {
466
+ list-style: none;
467
+ }
468
+
469
+ /* line 26, ../../../../../Users/JAdriano/.pik/rubies/Ruby-200-p195/lib/ruby/gems/2.0.0/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
470
+ table {
471
+ border-collapse: collapse;
472
+ border-spacing: 0;
473
+ }
474
+
475
+ /* line 28, ../../../../../Users/JAdriano/.pik/rubies/Ruby-200-p195/lib/ruby/gems/2.0.0/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
476
+ caption, th, td {
477
+ text-align: left;
478
+ font-weight: normal;
479
+ vertical-align: middle;
480
+ }
481
+
482
+ /* line 30, ../../../../../Users/JAdriano/.pik/rubies/Ruby-200-p195/lib/ruby/gems/2.0.0/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
483
+ q, blockquote {
484
+ quotes: none;
485
+ }
486
+ /* line 103, ../../../../../Users/JAdriano/.pik/rubies/Ruby-200-p195/lib/ruby/gems/2.0.0/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
487
+ q:before, q:after, blockquote:before, blockquote:after {
488
+ content: "";
489
+ content: none;
490
+ }
491
+
492
+ /* line 32, ../../../../../Users/JAdriano/.pik/rubies/Ruby-200-p195/lib/ruby/gems/2.0.0/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
493
+ a img {
494
+ border: none;
495
+ }
496
+
497
+ /* line 116, ../../../../../Users/JAdriano/.pik/rubies/Ruby-200-p195/lib/ruby/gems/2.0.0/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
498
+ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
499
+ display: block;
500
+ }
@@ -0,0 +1,4 @@
1
+ @javascript_files = Dir.entries( "#{Dir.pwd}/js/" ) - ["..","."]
2
+ @css_files = Dir.entries( "#{Dir.pwd}/css/" ) - ["..","."]
3
+ @javascript_files.select!{|e| File.extname( e ) == ".js"}
4
+ @css_files.select!{|e| File.extname( e ) == ".css"}
@@ -3,6 +3,6 @@ html
3
3
  -@css_files.each do |f|
4
4
  link href="css/#{f}" type="text/css" rel="stylesheet"
5
5
  -@javascript_files.each do |f|
6
- script href="js/#{f}" type="text/javascript"
6
+ script src="js/#{f}" type="text/javascript"
7
7
  body
8
8
  p.text Welcome, all your javascript and css files are being included.
File without changes
@@ -0,0 +1,425 @@
1
+ /*! normalize.css v3.0.1 | MIT License | git.io/normalize */
2
+
3
+ /**
4
+ * 1. Set default font family to sans-serif.
5
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
6
+ * user zoom.
7
+ */
8
+
9
+ html {
10
+ font-family: sans-serif; /* 1 */
11
+ -ms-text-size-adjust: 100%; /* 2 */
12
+ -webkit-text-size-adjust: 100%; /* 2 */
13
+ }
14
+
15
+ /**
16
+ * Remove default margin.
17
+ */
18
+
19
+ body {
20
+ margin: 0;
21
+ }
22
+
23
+ /* HTML5 display definitions
24
+ ========================================================================== */
25
+
26
+ /**
27
+ * Correct `block` display not defined for any HTML5 element in IE 8/9.
28
+ * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
29
+ * Correct `block` display not defined for `main` in IE 11.
30
+ */
31
+
32
+ article,
33
+ aside,
34
+ details,
35
+ figcaption,
36
+ figure,
37
+ footer,
38
+ header,
39
+ hgroup,
40
+ main,
41
+ nav,
42
+ section,
43
+ summary {
44
+ display: block;
45
+ }
46
+
47
+ /**
48
+ * 1. Correct `inline-block` display not defined in IE 8/9.
49
+ * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
50
+ */
51
+
52
+ audio,
53
+ canvas,
54
+ progress,
55
+ video {
56
+ display: inline-block; /* 1 */
57
+ vertical-align: baseline; /* 2 */
58
+ }
59
+
60
+ /**
61
+ * Prevent modern browsers from displaying `audio` without controls.
62
+ * Remove excess height in iOS 5 devices.
63
+ */
64
+
65
+ audio:not([controls]) {
66
+ display: none;
67
+ height: 0;
68
+ }
69
+
70
+ /**
71
+ * Address `[hidden]` styling not present in IE 8/9/10.
72
+ * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
73
+ */
74
+
75
+ [hidden],
76
+ template {
77
+ display: none;
78
+ }
79
+
80
+ /* Links
81
+ ========================================================================== */
82
+
83
+ /**
84
+ * Remove the gray background color from active links in IE 10.
85
+ */
86
+
87
+ a {
88
+ background: transparent;
89
+ }
90
+
91
+ /**
92
+ * Improve readability when focused and also mouse hovered in all browsers.
93
+ */
94
+
95
+ a:active,
96
+ a:hover {
97
+ outline: 0;
98
+ }
99
+
100
+ /* Text-level semantics
101
+ ========================================================================== */
102
+
103
+ /**
104
+ * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
105
+ */
106
+
107
+ abbr[title] {
108
+ border-bottom: 1px dotted;
109
+ }
110
+
111
+ /**
112
+ * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
113
+ */
114
+
115
+ b,
116
+ strong {
117
+ font-weight: bold;
118
+ }
119
+
120
+ /**
121
+ * Address styling not present in Safari and Chrome.
122
+ */
123
+
124
+ dfn {
125
+ font-style: italic;
126
+ }
127
+
128
+ /**
129
+ * Address variable `h1` font-size and margin within `section` and `article`
130
+ * contexts in Firefox 4+, Safari, and Chrome.
131
+ */
132
+
133
+ h1 {
134
+ font-size: 2em;
135
+ margin: 0.67em 0;
136
+ }
137
+
138
+ /**
139
+ * Address styling not present in IE 8/9.
140
+ */
141
+
142
+ mark {
143
+ background: #ff0;
144
+ color: #000;
145
+ }
146
+
147
+ /**
148
+ * Address inconsistent and variable font size in all browsers.
149
+ */
150
+
151
+ small {
152
+ font-size: 80%;
153
+ }
154
+
155
+ /**
156
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
157
+ */
158
+
159
+ sub,
160
+ sup {
161
+ font-size: 75%;
162
+ line-height: 0;
163
+ position: relative;
164
+ vertical-align: baseline;
165
+ }
166
+
167
+ sup {
168
+ top: -0.5em;
169
+ }
170
+
171
+ sub {
172
+ bottom: -0.25em;
173
+ }
174
+
175
+ /* Embedded content
176
+ ========================================================================== */
177
+
178
+ /**
179
+ * Remove border when inside `a` element in IE 8/9/10.
180
+ */
181
+
182
+ img {
183
+ border: 0;
184
+ }
185
+
186
+ /**
187
+ * Correct overflow not hidden in IE 9/10/11.
188
+ */
189
+
190
+ svg:not(:root) {
191
+ overflow: hidden;
192
+ }
193
+
194
+ /* Grouping content
195
+ ========================================================================== */
196
+
197
+ /**
198
+ * Address margin not present in IE 8/9 and Safari.
199
+ */
200
+
201
+ figure {
202
+ margin: 1em 40px;
203
+ }
204
+
205
+ /**
206
+ * Address differences between Firefox and other browsers.
207
+ */
208
+
209
+ hr {
210
+ -moz-box-sizing: content-box;
211
+ box-sizing: content-box;
212
+ height: 0;
213
+ }
214
+
215
+ /**
216
+ * Contain overflow in all browsers.
217
+ */
218
+
219
+ pre {
220
+ overflow: auto;
221
+ }
222
+
223
+ /**
224
+ * Address odd `em`-unit font size rendering in all browsers.
225
+ */
226
+
227
+ code,
228
+ kbd,
229
+ pre,
230
+ samp {
231
+ font-family: monospace, monospace;
232
+ font-size: 1em;
233
+ }
234
+
235
+ /* Forms
236
+ ========================================================================== */
237
+
238
+ /**
239
+ * Known limitation: by default, Chrome and Safari on OS X allow very limited
240
+ * styling of `select`, unless a `border` property is set.
241
+ */
242
+
243
+ /**
244
+ * 1. Correct color not being inherited.
245
+ * Known issue: affects color of disabled elements.
246
+ * 2. Correct font properties not being inherited.
247
+ * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
248
+ */
249
+
250
+ button,
251
+ input,
252
+ optgroup,
253
+ select,
254
+ textarea {
255
+ color: inherit; /* 1 */
256
+ font: inherit; /* 2 */
257
+ margin: 0; /* 3 */
258
+ }
259
+
260
+ /**
261
+ * Address `overflow` set to `hidden` in IE 8/9/10/11.
262
+ */
263
+
264
+ button {
265
+ overflow: visible;
266
+ }
267
+
268
+ /**
269
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
270
+ * All other form control elements do not inherit `text-transform` values.
271
+ * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
272
+ * Correct `select` style inheritance in Firefox.
273
+ */
274
+
275
+ button,
276
+ select {
277
+ text-transform: none;
278
+ }
279
+
280
+ /**
281
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
282
+ * and `video` controls.
283
+ * 2. Correct inability to style clickable `input` types in iOS.
284
+ * 3. Improve usability and consistency of cursor style between image-type
285
+ * `input` and others.
286
+ */
287
+
288
+ button,
289
+ html input[type="button"], /* 1 */
290
+ input[type="reset"],
291
+ input[type="submit"] {
292
+ -webkit-appearance: button; /* 2 */
293
+ cursor: pointer; /* 3 */
294
+ }
295
+
296
+ /**
297
+ * Re-set default cursor for disabled elements.
298
+ */
299
+
300
+ button[disabled],
301
+ html input[disabled] {
302
+ cursor: default;
303
+ }
304
+
305
+ /**
306
+ * Remove inner padding and border in Firefox 4+.
307
+ */
308
+
309
+ button::-moz-focus-inner,
310
+ input::-moz-focus-inner {
311
+ border: 0;
312
+ padding: 0;
313
+ }
314
+
315
+ /**
316
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
317
+ * the UA stylesheet.
318
+ */
319
+
320
+ input {
321
+ line-height: normal;
322
+ }
323
+
324
+ /**
325
+ * It's recommended that you don't attempt to style these elements.
326
+ * Firefox's implementation doesn't respect box-sizing, padding, or width.
327
+ *
328
+ * 1. Address box sizing set to `content-box` in IE 8/9/10.
329
+ * 2. Remove excess padding in IE 8/9/10.
330
+ */
331
+
332
+ input[type="checkbox"],
333
+ input[type="radio"] {
334
+ box-sizing: border-box; /* 1 */
335
+ padding: 0; /* 2 */
336
+ }
337
+
338
+ /**
339
+ * Fix the cursor style for Chrome's increment/decrement buttons. For certain
340
+ * `font-size` values of the `input`, it causes the cursor style of the
341
+ * decrement button to change from `default` to `text`.
342
+ */
343
+
344
+ input[type="number"]::-webkit-inner-spin-button,
345
+ input[type="number"]::-webkit-outer-spin-button {
346
+ height: auto;
347
+ }
348
+
349
+ /**
350
+ * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
351
+ * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
352
+ * (include `-moz` to future-proof).
353
+ */
354
+
355
+ input[type="search"] {
356
+ -webkit-appearance: textfield; /* 1 */
357
+ -moz-box-sizing: content-box;
358
+ -webkit-box-sizing: content-box; /* 2 */
359
+ box-sizing: content-box;
360
+ }
361
+
362
+ /**
363
+ * Remove inner padding and search cancel button in Safari and Chrome on OS X.
364
+ * Safari (but not Chrome) clips the cancel button when the search input has
365
+ * padding (and `textfield` appearance).
366
+ */
367
+
368
+ input[type="search"]::-webkit-search-cancel-button,
369
+ input[type="search"]::-webkit-search-decoration {
370
+ -webkit-appearance: none;
371
+ }
372
+
373
+ /**
374
+ * Define consistent border, margin, and padding.
375
+ */
376
+
377
+ fieldset {
378
+ border: 1px solid #c0c0c0;
379
+ margin: 0 2px;
380
+ padding: 0.35em 0.625em 0.75em;
381
+ }
382
+
383
+ /**
384
+ * 1. Correct `color` not being inherited in IE 8/9/10/11.
385
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
386
+ */
387
+
388
+ legend {
389
+ border: 0; /* 1 */
390
+ padding: 0; /* 2 */
391
+ }
392
+
393
+ /**
394
+ * Remove default vertical scrollbar in IE 8/9/10/11.
395
+ */
396
+
397
+ textarea {
398
+ overflow: auto;
399
+ }
400
+
401
+ /**
402
+ * Don't inherit the `font-weight` (applied by a rule above).
403
+ * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
404
+ */
405
+
406
+ optgroup {
407
+ font-weight: bold;
408
+ }
409
+
410
+ /* Tables
411
+ ========================================================================== */
412
+
413
+ /**
414
+ * Remove most spacing between table cells.
415
+ */
416
+
417
+ table {
418
+ border-collapse: collapse;
419
+ border-spacing: 0;
420
+ }
421
+
422
+ td,
423
+ th {
424
+ padding: 0;
425
+ }
@@ -0,0 +1,2 @@
1
+ @import "normalize"
2
+ @import "compass/reset"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ssproto
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Johnydays
@@ -10,6 +10,20 @@ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2014-04-15 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: compass
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: sass
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -66,23 +80,30 @@ dependencies:
66
80
  - - '>='
67
81
  - !ruby/object:Gem::Version
68
82
  version: '0'
69
- description: Single page slim prototyping (use of sass and coffeescript is encouraged)
83
+ description: Single page slim prototyping (use of sass and compass and coffeescript
84
+ is encouraged)
70
85
  email: nick@quaran.to
71
86
  executables:
72
87
  - ssproto
73
88
  extensions: []
74
89
  extra_rdoc_files: []
75
90
  files:
76
- - bin/ssproto
77
- - lib/slim/slim.rb
78
91
  - lib/ssproto.rb
92
+ - lib/slim/slim.rb
93
+ - template/.sass-cache/040051a64a32ab7930601a927bcb1266ec33c3e4/_reset.scssc
94
+ - template/.sass-cache/96c3f1a44ac671d253e70c41787fbd786782b2e9/_normalize.scssc
95
+ - template/.sass-cache/96c3f1a44ac671d253e70c41787fbd786782b2e9/main.sassc
96
+ - template/.sass-cache/d4926426dd38a93cbb8eb7f372eb5f0f17886b10/_utilities.scssc
79
97
  - template/coffee/example.coffee
80
98
  - template/config.rb
81
- - template/css/example.css
99
+ - template/css/main.css
100
+ - template/each.rb
82
101
  - template/index.html
83
102
  - template/index.slim
84
- - template/js/example.js
85
- - template/sass/example.sass
103
+ - template/js/main.js
104
+ - template/sass/_normalize.scss
105
+ - template/sass/main.sass
106
+ - bin/ssproto
86
107
  homepage: https://github.com/JohnyDays/spsp
87
108
  licenses:
88
109
  - MIT
@@ -103,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
103
124
  version: '0'
104
125
  requirements: []
105
126
  rubyforge_project:
106
- rubygems_version: 2.2.2
127
+ rubygems_version: 2.0.2
107
128
  signing_key:
108
129
  specification_version: 4
109
130
  summary: Rapid slim prototyping
File without changes
File without changes