middleman 2.0.9.pre.2 → 2.0.9.pre.3
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +9 -0
- data/features/builder.feature +6 -0
- data/features/data.feature +16 -1
- data/features/fonts.feature +11 -0
- data/features/relative_assets.feature +8 -2
- data/features/step_definitions/middleman_steps.rb +9 -2
- data/fixtures/data-app/config.rb +3 -0
- data/fixtures/data-app/data/pages.yml +6 -0
- data/fixtures/data-app/source/index.html.haml +1 -0
- data/fixtures/data-app/source/layout.haml +3 -0
- data/fixtures/fonts-app/config.rb +0 -0
- data/fixtures/fonts-app/source/fonts/StMarie-Thin.otf +0 -0
- data/fixtures/fonts-app/source/stylesheets/fonts.css.sass +3 -0
- data/fixtures/glob-app/config.rb +1 -0
- data/fixtures/glob-app/source/index.html.haml +6 -0
- data/fixtures/glob-app/source/stylesheets/site.css.sass +1 -0
- data/fixtures/test-app/config.rb +1 -0
- data/fixtures/test-app/data/test2.json +4 -0
- data/fixtures/test-app/source/data3.html.erb +1 -0
- data/lib/middleman/base.rb +8 -3
- data/lib/middleman/builder.rb +61 -22
- data/lib/middleman/cli.rb +2 -1
- data/lib/middleman/core_extensions/assets.rb +1 -1
- data/lib/middleman/core_extensions/compass.rb +6 -2
- data/lib/middleman/core_extensions/data.rb +20 -3
- data/lib/middleman/templates/html5.rb +1 -0
- data/lib/middleman/templates/mobile.rb +17 -0
- data/lib/middleman/templates/mobile/source/404.html +38 -0
- data/lib/middleman/templates/mobile/source/README.markdown +64 -0
- data/lib/middleman/templates/mobile/source/crossdomain.xml +25 -0
- data/lib/middleman/templates/mobile/source/css/style.css +236 -0
- data/lib/middleman/templates/mobile/source/default.appcache +17 -0
- data/lib/middleman/templates/mobile/source/humans.txt +43 -0
- data/lib/middleman/templates/mobile/source/img/h/apple-touch-icon.png +0 -0
- data/lib/middleman/templates/mobile/source/img/h/splash.png +0 -0
- data/lib/middleman/templates/mobile/source/img/l/apple-touch-icon-precomposed.png +0 -0
- data/lib/middleman/templates/mobile/source/img/l/apple-touch-icon.png +0 -0
- data/lib/middleman/templates/mobile/source/img/l/splash.png +0 -0
- data/lib/middleman/templates/mobile/source/img/m/apple-touch-icon.png +0 -0
- data/lib/middleman/templates/mobile/source/index.html +95 -0
- data/lib/middleman/templates/mobile/source/js/libs/jquery-1.5.1.js +8316 -0
- data/lib/middleman/templates/mobile/source/js/libs/jquery-1.5.1.min.js +16 -0
- data/lib/middleman/templates/mobile/source/js/libs/modernizr-custom.js +14 -0
- data/lib/middleman/templates/mobile/source/js/libs/respond.min.js +7 -0
- data/lib/middleman/templates/mobile/source/js/mylibs/helper.js +147 -0
- data/lib/middleman/templates/mobile/source/js/script.js +0 -0
- data/lib/middleman/templates/mobile/source/robots.txt +5 -0
- data/lib/middleman/templates/mobile/source/sitemap.xml +10 -0
- data/lib/middleman/templates/mobile/source/test/index.html +31 -0
- data/lib/middleman/templates/mobile/source/test/qunit/qunit.css +148 -0
- data/lib/middleman/templates/mobile/source/test/qunit/qunit.js +1265 -0
- data/lib/middleman/templates/mobile/source/test/tests.js +26 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/Readme.PDF +0 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/aspx/aspx1.snippet +31 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/aspx/aspx2.snippet +2 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/aspx/ga.aspx +195 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/aspx/sample.aspx +44 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/jsp/ga.jsp +225 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/jsp/jsp1.snippet +35 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/jsp/jsp2.snippet +2 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/jsp/sample.jsp +51 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/php/ga.php +176 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/php/php1.snippet +30 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/php/php2.snippet +4 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/php/sample.php +44 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/pl/ga.pl +195 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet +27 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/pl/perl2.snippet +1 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/pl/sample.pl +38 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/COPYING +202 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/bookmark_bubble.js +559 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/example/example.html +43 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/example/example.js +57 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/images/arrow.png +0 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/images/close.png +0 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/images/generate_base64_images +33 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/images/icon_calendar.png +0 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/README +27 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/databasefactory.js +45 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbworker.js +324 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbworker_test.html +393 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbworkerstarter.js +32 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbwrapper_gears.js +595 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbwrapper_gears_test.html +404 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbwrapper_html5.js +203 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbwrapper_html5_test.html +468 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbwrapperapi.js +202 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbwrapperapi_test.html +51 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/gears_resultset.js +71 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/gears_resultset_test.html +86 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/gears_transaction.js +196 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/gears_transaction_test.html +221 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/gearsutils.js +94 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/gearsutils_test.html +84 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/global_functions.js +72 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/simplenotes/index.html +347 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/simplenotes/simplenotes.js +503 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/simplenotes/styles.css +66 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/simplenotes/template.js +75 -0
- data/lib/middleman/version.rb +1 -1
- data/middleman-x86-mingw32.gemspec +0 -1
- data/middleman.gemspec +3 -2
- metadata +116 -51
- data/lib/middleman/config.ru +0 -2
- data/lib/middleman/features/tiny_src.rb +0 -11
@@ -0,0 +1,66 @@
|
|
1
|
+
/*
|
2
|
+
Copyright 2009 Google Inc.
|
3
|
+
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
you may not use this file except in compliance with the License.
|
6
|
+
You may obtain a copy of the License at
|
7
|
+
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
See the License for the specific language governing permissions and
|
14
|
+
limitations under the License.
|
15
|
+
*/
|
16
|
+
|
17
|
+
body {
|
18
|
+
background-color: #efefef;
|
19
|
+
font: medium "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
|
20
|
+
}
|
21
|
+
|
22
|
+
.status-bar {
|
23
|
+
background-color: #ffd21d;
|
24
|
+
display: none;
|
25
|
+
-webkit-border-radius: 6.0px;
|
26
|
+
-moz-border-radius: 6.0px;
|
27
|
+
border-style: solid;
|
28
|
+
border-width: 1px;
|
29
|
+
padding: 3px;
|
30
|
+
text-align: center;
|
31
|
+
}
|
32
|
+
|
33
|
+
.screen {
|
34
|
+
border: thin solid #939393;
|
35
|
+
padding: 2px 2px 2px 2px;
|
36
|
+
}
|
37
|
+
|
38
|
+
.command-bar {
|
39
|
+
background-color: #275390;
|
40
|
+
}
|
41
|
+
|
42
|
+
.title-bar {
|
43
|
+
font-weight: bold;
|
44
|
+
background-color: #4b4b4b;
|
45
|
+
text-align: center;
|
46
|
+
padding: 3px;
|
47
|
+
color: #aaa;
|
48
|
+
}
|
49
|
+
|
50
|
+
textarea {
|
51
|
+
font-size: 16pt;
|
52
|
+
}
|
53
|
+
|
54
|
+
button {
|
55
|
+
text-align:center;
|
56
|
+
font-family: Helvetica;
|
57
|
+
font-weight: bold;
|
58
|
+
font-size: 20px;
|
59
|
+
text-decoration: none;
|
60
|
+
text-shadow: #fff 0px 2px 2px;
|
61
|
+
padding: 3px;
|
62
|
+
-webkit-border-radius: 6.0px;
|
63
|
+
-moz-border-radius: 6.0px;
|
64
|
+
margin-right: 4px;
|
65
|
+
margin-left: 4px;
|
66
|
+
}
|
@@ -0,0 +1,75 @@
|
|
1
|
+
/*
|
2
|
+
Copyright 2009 Google Inc.
|
3
|
+
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
you may not use this file except in compliance with the License.
|
6
|
+
You may obtain a copy of the License at
|
7
|
+
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
See the License for the specific language governing permissions and
|
14
|
+
limitations under the License.
|
15
|
+
*/
|
16
|
+
|
17
|
+
/**
|
18
|
+
* @fileoverview template.js contains the implementation for a simple template
|
19
|
+
* scheme. Templates are fragments of HTML containing patterns into which
|
20
|
+
* arguments will be substituted.
|
21
|
+
*/
|
22
|
+
|
23
|
+
google.wspl.simplenotes = google.wspl.simplenotes || {};
|
24
|
+
|
25
|
+
/**
|
26
|
+
* Template class constructor. A template is an object which will
|
27
|
+
* substitute provided parameters into a marked-up string.
|
28
|
+
* @param {string} template
|
29
|
+
* @constructor
|
30
|
+
*/
|
31
|
+
google.wspl.simplenotes.Template = function(template) {
|
32
|
+
this.template_ = template;
|
33
|
+
this.res_ = null;
|
34
|
+
};
|
35
|
+
|
36
|
+
/**
|
37
|
+
* Returns the template expanded with the given args where args
|
38
|
+
* is an object (acting as an associative array) binding keys (found
|
39
|
+
* in the template wrapped with % symbols) to the associated
|
40
|
+
* values.
|
41
|
+
*
|
42
|
+
* Template substitution symbols without corresponding arguments
|
43
|
+
* will be passed through unchanged to the output.
|
44
|
+
*
|
45
|
+
* We assume that in typical use, the same template will be expanded
|
46
|
+
* repeatedly with different values. In this case, storing and re-using
|
47
|
+
* previously generated regular expressions will provide a performance
|
48
|
+
* improvement.
|
49
|
+
* @param {Object} args associates names with values
|
50
|
+
* @param {boolean} opt_rebuild set to true to force re-building the
|
51
|
+
* the regular epxression.
|
52
|
+
*/
|
53
|
+
google.wspl.simplenotes.Template.prototype.process = function(args,
|
54
|
+
opt_rebuild) {
|
55
|
+
var rebuild = opt_rebuild || false;
|
56
|
+
|
57
|
+
if (rebuild || this.res_ == null) {
|
58
|
+
var accumulatedRe = [];
|
59
|
+
this.res_ = null;
|
60
|
+
for (var a in args) {
|
61
|
+
accumulatedRe.push('%' + String(a) + '%');
|
62
|
+
}
|
63
|
+
if (accumulatedRe.length > 0) {
|
64
|
+
this.res_ = new RegExp(accumulatedRe.join('|'), 'g');
|
65
|
+
}
|
66
|
+
}
|
67
|
+
if (this.res_ != null) {
|
68
|
+
return this.template_.replace(this.res_, function(match) {
|
69
|
+
var keyName = match.slice(1,-1);
|
70
|
+
return args[keyName];
|
71
|
+
});
|
72
|
+
} else {
|
73
|
+
return this.template_;
|
74
|
+
}
|
75
|
+
};
|
data/lib/middleman/version.rb
CHANGED
data/middleman.gemspec
CHANGED
@@ -43,6 +43,7 @@ eos
|
|
43
43
|
s.add_dependency("tilt", ["~> 1.3.1"])
|
44
44
|
s.add_dependency("maruku", ["~> 0.6.0"])
|
45
45
|
s.add_dependency("sinatra", ["~> 1.2.6"])
|
46
|
+
# s.add_dependency("sinatra-synchrony", ["~> 0.2.1"])
|
46
47
|
s.add_dependency("rack-test", ["~> 0.6.1"])
|
47
48
|
s.add_dependency("uglifier", ["~> 1.0.0"])
|
48
49
|
s.add_dependency("slim", ["~> 1.0.1"])
|
@@ -60,8 +61,8 @@ eos
|
|
60
61
|
# s.add_dependency("win32-process", ["~> 0.6.5"])
|
61
62
|
# s.add_dependency("rb-fchange")
|
62
63
|
# else
|
63
|
-
s.add_dependency("rb-fsevent", ["~> 0.4.2"])
|
64
|
-
s.add_dependency("therubyracer", ["~> 0.9.4"])
|
64
|
+
# s.add_dependency("rb-fsevent", ["~> 0.4.2"])
|
65
|
+
# s.add_dependency("therubyracer", ["~> 0.9.4"])
|
65
66
|
# end
|
66
67
|
|
67
68
|
s.add_dependency("guard", ["~> 0.6.2"])
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: middleman
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 1923831975
|
5
5
|
prerelease: 6
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 0
|
9
9
|
- 9
|
10
10
|
- pre
|
11
|
-
-
|
12
|
-
version: 2.0.9.pre.
|
11
|
+
- 3
|
12
|
+
version: 2.0.9.pre.3
|
13
13
|
platform: ruby
|
14
14
|
authors:
|
15
15
|
- Thomas Reynolds
|
@@ -17,7 +17,7 @@ autorequire:
|
|
17
17
|
bindir: bin
|
18
18
|
cert_chain: []
|
19
19
|
|
20
|
-
date: 2011-09-
|
20
|
+
date: 2011-09-20 00:00:00 -07:00
|
21
21
|
default_executable:
|
22
22
|
dependencies:
|
23
23
|
- !ruby/object:Gem::Dependency
|
@@ -278,38 +278,6 @@ dependencies:
|
|
278
278
|
type: :runtime
|
279
279
|
- !ruby/object:Gem::Dependency
|
280
280
|
requirement: &id017 !ruby/object:Gem::Requirement
|
281
|
-
none: false
|
282
|
-
requirements:
|
283
|
-
- - ~>
|
284
|
-
- !ruby/object:Gem::Version
|
285
|
-
hash: 11
|
286
|
-
segments:
|
287
|
-
- 0
|
288
|
-
- 4
|
289
|
-
- 2
|
290
|
-
version: 0.4.2
|
291
|
-
version_requirements: *id017
|
292
|
-
name: rb-fsevent
|
293
|
-
prerelease: false
|
294
|
-
type: :runtime
|
295
|
-
- !ruby/object:Gem::Dependency
|
296
|
-
requirement: &id018 !ruby/object:Gem::Requirement
|
297
|
-
none: false
|
298
|
-
requirements:
|
299
|
-
- - ~>
|
300
|
-
- !ruby/object:Gem::Version
|
301
|
-
hash: 51
|
302
|
-
segments:
|
303
|
-
- 0
|
304
|
-
- 9
|
305
|
-
- 4
|
306
|
-
version: 0.9.4
|
307
|
-
version_requirements: *id018
|
308
|
-
name: therubyracer
|
309
|
-
prerelease: false
|
310
|
-
type: :runtime
|
311
|
-
- !ruby/object:Gem::Dependency
|
312
|
-
requirement: &id019 !ruby/object:Gem::Requirement
|
313
281
|
none: false
|
314
282
|
requirements:
|
315
283
|
- - ~>
|
@@ -320,12 +288,12 @@ dependencies:
|
|
320
288
|
- 6
|
321
289
|
- 2
|
322
290
|
version: 0.6.2
|
323
|
-
version_requirements: *
|
291
|
+
version_requirements: *id017
|
324
292
|
name: guard
|
325
293
|
prerelease: false
|
326
294
|
type: :runtime
|
327
295
|
- !ruby/object:Gem::Dependency
|
328
|
-
requirement: &
|
296
|
+
requirement: &id018 !ruby/object:Gem::Requirement
|
329
297
|
none: false
|
330
298
|
requirements:
|
331
299
|
- - ~>
|
@@ -336,12 +304,12 @@ dependencies:
|
|
336
304
|
- 2
|
337
305
|
- 0
|
338
306
|
version: 0.2.0
|
339
|
-
version_requirements: *
|
307
|
+
version_requirements: *id018
|
340
308
|
name: middleman-livereload
|
341
309
|
prerelease: false
|
342
310
|
type: :runtime
|
343
311
|
- !ruby/object:Gem::Dependency
|
344
|
-
requirement: &
|
312
|
+
requirement: &id019 !ruby/object:Gem::Requirement
|
345
313
|
none: false
|
346
314
|
requirements:
|
347
315
|
- - ~>
|
@@ -352,12 +320,12 @@ dependencies:
|
|
352
320
|
- 1
|
353
321
|
- 1
|
354
322
|
version: 0.1.1
|
355
|
-
version_requirements: *
|
323
|
+
version_requirements: *id019
|
356
324
|
name: coffee-filter
|
357
325
|
prerelease: false
|
358
326
|
type: :development
|
359
327
|
- !ruby/object:Gem::Dependency
|
360
|
-
requirement: &
|
328
|
+
requirement: &id020 !ruby/object:Gem::Requirement
|
361
329
|
none: false
|
362
330
|
requirements:
|
363
331
|
- - ~>
|
@@ -368,12 +336,12 @@ dependencies:
|
|
368
336
|
- 2
|
369
337
|
- 0
|
370
338
|
version: 2.2.0
|
371
|
-
version_requirements: *
|
339
|
+
version_requirements: *id020
|
372
340
|
name: liquid
|
373
341
|
prerelease: false
|
374
342
|
type: :development
|
375
343
|
- !ruby/object:Gem::Dependency
|
376
|
-
requirement: &
|
344
|
+
requirement: &id021 !ruby/object:Gem::Requirement
|
377
345
|
none: false
|
378
346
|
requirements:
|
379
347
|
- - ~>
|
@@ -384,12 +352,12 @@ dependencies:
|
|
384
352
|
- 0
|
385
353
|
- 2
|
386
354
|
version: 1.0.2
|
387
|
-
version_requirements: *
|
355
|
+
version_requirements: *id021
|
388
356
|
name: cucumber
|
389
357
|
prerelease: false
|
390
358
|
type: :development
|
391
359
|
- !ruby/object:Gem::Dependency
|
392
|
-
requirement: &
|
360
|
+
requirement: &id022 !ruby/object:Gem::Requirement
|
393
361
|
none: false
|
394
362
|
requirements:
|
395
363
|
- - "="
|
@@ -400,12 +368,12 @@ dependencies:
|
|
400
368
|
- 8
|
401
369
|
- 7
|
402
370
|
version: 0.8.7
|
403
|
-
version_requirements: *
|
371
|
+
version_requirements: *id022
|
404
372
|
name: rake
|
405
373
|
prerelease: false
|
406
374
|
type: :development
|
407
375
|
- !ruby/object:Gem::Dependency
|
408
|
-
requirement: &
|
376
|
+
requirement: &id023 !ruby/object:Gem::Requirement
|
409
377
|
none: false
|
410
378
|
requirements:
|
411
379
|
- - ~>
|
@@ -416,7 +384,7 @@ dependencies:
|
|
416
384
|
- 6
|
417
385
|
- 0
|
418
386
|
version: 2.6.0
|
419
|
-
version_requirements: *
|
387
|
+
version_requirements: *id023
|
420
388
|
name: rspec
|
421
389
|
prerelease: false
|
422
390
|
type: :development
|
@@ -453,6 +421,7 @@ files:
|
|
453
421
|
- features/data.feature
|
454
422
|
- features/directory_index.feature
|
455
423
|
- features/dynamic_pages.feature
|
424
|
+
- features/fonts.feature
|
456
425
|
- features/front-matter.feature
|
457
426
|
- features/generator.feature
|
458
427
|
- features/helpers_auto_javascript_include_tag.feature
|
@@ -477,6 +446,16 @@ files:
|
|
477
446
|
- features/step_definitions/page_layout_steps.rb
|
478
447
|
- features/support/env.rb
|
479
448
|
- features/tiny_src.feature
|
449
|
+
- fixtures/data-app/config.rb
|
450
|
+
- fixtures/data-app/data/pages.yml
|
451
|
+
- fixtures/data-app/source/index.html.haml
|
452
|
+
- fixtures/data-app/source/layout.haml
|
453
|
+
- fixtures/fonts-app/config.rb
|
454
|
+
- fixtures/fonts-app/source/fonts/StMarie-Thin.otf
|
455
|
+
- fixtures/fonts-app/source/stylesheets/fonts.css.sass
|
456
|
+
- fixtures/glob-app/config.rb
|
457
|
+
- fixtures/glob-app/source/index.html.haml
|
458
|
+
- fixtures/glob-app/source/stylesheets/site.css.sass
|
480
459
|
- fixtures/indexable-app/config.rb
|
481
460
|
- fixtures/indexable-app/source/a_folder/needs_index.html
|
482
461
|
- fixtures/indexable-app/source/leave_me_alone.html
|
@@ -491,6 +470,7 @@ files:
|
|
491
470
|
- fixtures/sprockets-app/source/library/javascripts/sprockets_sub.js
|
492
471
|
- fixtures/test-app/config.rb
|
493
472
|
- fixtures/test-app/data/test.yml
|
473
|
+
- fixtures/test-app/data/test2.json
|
494
474
|
- fixtures/test-app/source/_liquid_partial.liquid
|
495
475
|
- fixtures/test-app/source/_partial.haml
|
496
476
|
- fixtures/test-app/source/a_folder/needs_index.html
|
@@ -509,6 +489,7 @@ files:
|
|
509
489
|
- fixtures/test-app/source/custom-layout.html.haml
|
510
490
|
- fixtures/test-app/source/data.html.erb
|
511
491
|
- fixtures/test-app/source/data2.html.liquid
|
492
|
+
- fixtures/test-app/source/data3.html.erb
|
512
493
|
- fixtures/test-app/source/front-matter.html.erb
|
513
494
|
- fixtures/test-app/source/images/Child folder/regular_file(example).txt
|
514
495
|
- fixtures/test-app/source/images/Read me (example).txt
|
@@ -563,7 +544,6 @@ files:
|
|
563
544
|
- lib/middleman/base.rb
|
564
545
|
- lib/middleman/builder.rb
|
565
546
|
- lib/middleman/cli.rb
|
566
|
-
- lib/middleman/config.ru
|
567
547
|
- lib/middleman/core_extensions/assets.rb
|
568
548
|
- lib/middleman/core_extensions/builder.rb
|
569
549
|
- lib/middleman/core_extensions/compass.rb
|
@@ -584,7 +564,6 @@ files:
|
|
584
564
|
- lib/middleman/features/minify_css.rb
|
585
565
|
- lib/middleman/features/minify_javascript.rb
|
586
566
|
- lib/middleman/features/relative_assets.rb
|
587
|
-
- lib/middleman/features/tiny_src.rb
|
588
567
|
- lib/middleman/guard.rb
|
589
568
|
- lib/middleman/renderers/coffee_script.rb
|
590
569
|
- lib/middleman/renderers/haml.rb
|
@@ -623,6 +602,79 @@ files:
|
|
623
602
|
- lib/middleman/templates/html5/source/test/qunit/qunit.js
|
624
603
|
- lib/middleman/templates/html5/source/test/tests.js
|
625
604
|
- lib/middleman/templates/local.rb
|
605
|
+
- lib/middleman/templates/mobile.rb
|
606
|
+
- lib/middleman/templates/mobile/source/404.html
|
607
|
+
- lib/middleman/templates/mobile/source/README.markdown
|
608
|
+
- lib/middleman/templates/mobile/source/crossdomain.xml
|
609
|
+
- lib/middleman/templates/mobile/source/css/style.css
|
610
|
+
- lib/middleman/templates/mobile/source/default.appcache
|
611
|
+
- lib/middleman/templates/mobile/source/humans.txt
|
612
|
+
- lib/middleman/templates/mobile/source/img/h/apple-touch-icon.png
|
613
|
+
- lib/middleman/templates/mobile/source/img/h/splash.png
|
614
|
+
- lib/middleman/templates/mobile/source/img/l/apple-touch-icon-precomposed.png
|
615
|
+
- lib/middleman/templates/mobile/source/img/l/apple-touch-icon.png
|
616
|
+
- lib/middleman/templates/mobile/source/img/l/splash.png
|
617
|
+
- lib/middleman/templates/mobile/source/img/m/apple-touch-icon.png
|
618
|
+
- lib/middleman/templates/mobile/source/index.html
|
619
|
+
- lib/middleman/templates/mobile/source/js/libs/jquery-1.5.1.js
|
620
|
+
- lib/middleman/templates/mobile/source/js/libs/jquery-1.5.1.min.js
|
621
|
+
- lib/middleman/templates/mobile/source/js/libs/modernizr-custom.js
|
622
|
+
- lib/middleman/templates/mobile/source/js/libs/respond.min.js
|
623
|
+
- lib/middleman/templates/mobile/source/js/mylibs/helper.js
|
624
|
+
- lib/middleman/templates/mobile/source/js/script.js
|
625
|
+
- lib/middleman/templates/mobile/source/robots.txt
|
626
|
+
- lib/middleman/templates/mobile/source/sitemap.xml
|
627
|
+
- lib/middleman/templates/mobile/source/test/index.html
|
628
|
+
- lib/middleman/templates/mobile/source/test/qunit/qunit.css
|
629
|
+
- lib/middleman/templates/mobile/source/test/qunit/qunit.js
|
630
|
+
- lib/middleman/templates/mobile/source/test/tests.js
|
631
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/Readme.PDF
|
632
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/aspx/aspx1.snippet
|
633
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/aspx/aspx2.snippet
|
634
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/aspx/ga.aspx
|
635
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/aspx/sample.aspx
|
636
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/jsp/ga.jsp
|
637
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/jsp/jsp1.snippet
|
638
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/jsp/jsp2.snippet
|
639
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/jsp/sample.jsp
|
640
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/php/ga.php
|
641
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/php/php1.snippet
|
642
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/php/php2.snippet
|
643
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/php/sample.php
|
644
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/pl/ga.pl
|
645
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
|
646
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/pl/perl2.snippet
|
647
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/pl/sample.pl
|
648
|
+
- lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/COPYING
|
649
|
+
- lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/bookmark_bubble.js
|
650
|
+
- lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/example/example.html
|
651
|
+
- lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/example/example.js
|
652
|
+
- lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/images/arrow.png
|
653
|
+
- lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/images/close.png
|
654
|
+
- lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/images/generate_base64_images
|
655
|
+
- lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/images/icon_calendar.png
|
656
|
+
- lib/middleman/templates/mobile/source/tools/wspl/README
|
657
|
+
- lib/middleman/templates/mobile/source/tools/wspl/databasefactory.js
|
658
|
+
- lib/middleman/templates/mobile/source/tools/wspl/dbworker.js
|
659
|
+
- lib/middleman/templates/mobile/source/tools/wspl/dbworker_test.html
|
660
|
+
- lib/middleman/templates/mobile/source/tools/wspl/dbworkerstarter.js
|
661
|
+
- lib/middleman/templates/mobile/source/tools/wspl/dbwrapper_gears.js
|
662
|
+
- lib/middleman/templates/mobile/source/tools/wspl/dbwrapper_gears_test.html
|
663
|
+
- lib/middleman/templates/mobile/source/tools/wspl/dbwrapper_html5.js
|
664
|
+
- lib/middleman/templates/mobile/source/tools/wspl/dbwrapper_html5_test.html
|
665
|
+
- lib/middleman/templates/mobile/source/tools/wspl/dbwrapperapi.js
|
666
|
+
- lib/middleman/templates/mobile/source/tools/wspl/dbwrapperapi_test.html
|
667
|
+
- lib/middleman/templates/mobile/source/tools/wspl/gears_resultset.js
|
668
|
+
- lib/middleman/templates/mobile/source/tools/wspl/gears_resultset_test.html
|
669
|
+
- lib/middleman/templates/mobile/source/tools/wspl/gears_transaction.js
|
670
|
+
- lib/middleman/templates/mobile/source/tools/wspl/gears_transaction_test.html
|
671
|
+
- lib/middleman/templates/mobile/source/tools/wspl/gearsutils.js
|
672
|
+
- lib/middleman/templates/mobile/source/tools/wspl/gearsutils_test.html
|
673
|
+
- lib/middleman/templates/mobile/source/tools/wspl/global_functions.js
|
674
|
+
- lib/middleman/templates/mobile/source/tools/wspl/simplenotes/index.html
|
675
|
+
- lib/middleman/templates/mobile/source/tools/wspl/simplenotes/simplenotes.js
|
676
|
+
- lib/middleman/templates/mobile/source/tools/wspl/simplenotes/styles.css
|
677
|
+
- lib/middleman/templates/mobile/source/tools/wspl/simplenotes/template.js
|
626
678
|
- lib/middleman/templates/shared/Gemfile.tt
|
627
679
|
- lib/middleman/templates/shared/config.ru
|
628
680
|
- lib/middleman/templates/shared/config.tt
|
@@ -688,6 +740,7 @@ test_files:
|
|
688
740
|
- features/data.feature
|
689
741
|
- features/directory_index.feature
|
690
742
|
- features/dynamic_pages.feature
|
743
|
+
- features/fonts.feature
|
691
744
|
- features/front-matter.feature
|
692
745
|
- features/generator.feature
|
693
746
|
- features/helpers_auto_javascript_include_tag.feature
|
@@ -712,6 +765,16 @@ test_files:
|
|
712
765
|
- features/step_definitions/page_layout_steps.rb
|
713
766
|
- features/support/env.rb
|
714
767
|
- features/tiny_src.feature
|
768
|
+
- fixtures/data-app/config.rb
|
769
|
+
- fixtures/data-app/data/pages.yml
|
770
|
+
- fixtures/data-app/source/index.html.haml
|
771
|
+
- fixtures/data-app/source/layout.haml
|
772
|
+
- fixtures/fonts-app/config.rb
|
773
|
+
- fixtures/fonts-app/source/fonts/StMarie-Thin.otf
|
774
|
+
- fixtures/fonts-app/source/stylesheets/fonts.css.sass
|
775
|
+
- fixtures/glob-app/config.rb
|
776
|
+
- fixtures/glob-app/source/index.html.haml
|
777
|
+
- fixtures/glob-app/source/stylesheets/site.css.sass
|
715
778
|
- fixtures/indexable-app/config.rb
|
716
779
|
- fixtures/indexable-app/source/a_folder/needs_index.html
|
717
780
|
- fixtures/indexable-app/source/leave_me_alone.html
|
@@ -726,6 +789,7 @@ test_files:
|
|
726
789
|
- fixtures/sprockets-app/source/library/javascripts/sprockets_sub.js
|
727
790
|
- fixtures/test-app/config.rb
|
728
791
|
- fixtures/test-app/data/test.yml
|
792
|
+
- fixtures/test-app/data/test2.json
|
729
793
|
- fixtures/test-app/source/_liquid_partial.liquid
|
730
794
|
- fixtures/test-app/source/_partial.haml
|
731
795
|
- fixtures/test-app/source/a_folder/needs_index.html
|
@@ -744,6 +808,7 @@ test_files:
|
|
744
808
|
- fixtures/test-app/source/custom-layout.html.haml
|
745
809
|
- fixtures/test-app/source/data.html.erb
|
746
810
|
- fixtures/test-app/source/data2.html.liquid
|
811
|
+
- fixtures/test-app/source/data3.html.erb
|
747
812
|
- fixtures/test-app/source/front-matter.html.erb
|
748
813
|
- fixtures/test-app/source/images/Child folder/regular_file(example).txt
|
749
814
|
- fixtures/test-app/source/images/Read me (example).txt
|