middleman-remove-indent 0.1.0 → 1.0.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.
- checksums.yaml +4 -4
- data/.travis.yml +7 -3
- data/README.jp.md +57 -0
- data/README.md +21 -14
- data/features/with_subdirectory.feature +76 -0
- data/fixtures/subdirectory-app/source/index.html.erb +10 -0
- data/fixtures/subdirectory-app/source/layouts/layout.erb +19 -0
- data/fixtures/subdirectory-app/source/stylesheets/all.css +55 -0
- data/fixtures/subdirectory-app/source/stylesheets/normalize.css +375 -0
- data/fixtures/subdirectory-app/source/stylesheets/subdir/all.css +55 -0
- data/fixtures/subdirectory-app/source/subdir/index.html.erb +10 -0
- data/lib/middleman-remove-indent/extension.rb +2 -1
- data/lib/middleman-remove-indent/version.rb +1 -1
- metadata +11 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 89eda9843be20b62ffaf7df0da801e341fa42005
|
4
|
+
data.tar.gz: a50d56accd7fdd8cf7fa84c35ddb06464026c2f3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7157f8661e4535f8f56b8a60c4b18d170f458204e4cf497b90e1157ca8e078a0ee4aed01e1a0ddf01a6b6add1e7478fbae1a9b5a763395b83b32916156292d74
|
7
|
+
data.tar.gz: 14aa0e82f20dac14c8963e10d2fba9ae2dee0efc38238815024bc2fc81bd09cfbca9434a0e851b087215f5bf1e07f102d4f6fe87086a1b96de42a8ca0d76479c
|
data/.travis.yml
CHANGED
@@ -1,9 +1,13 @@
|
|
1
|
+
language: ruby
|
2
|
+
script: "bundle exec cucumber"
|
1
3
|
rvm:
|
2
4
|
- 1.9.3
|
3
5
|
- 2.0.0
|
4
6
|
- 2.1.1
|
5
7
|
- jruby-19mode
|
6
|
-
|
7
|
-
script: "bundle exec cucumber"
|
8
|
-
|
9
8
|
env: TEST=true TRAVIS=true
|
9
|
+
gemfile:
|
10
|
+
- Gemfile
|
11
|
+
notifications:
|
12
|
+
webhooks:
|
13
|
+
- https://idobata.io/hook/travis_ci/a7668cc4-aa10-4871-b8e4-095e117ad464
|
data/README.jp.md
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
# middleman-remove-indent
|
2
|
+
|
3
|
+
[](http://badge.fury.io/rb/middleman-remove-indent)
|
4
|
+
[](https://travis-ci.org/yterajima/middleman-remove-indent)
|
5
|
+
|
6
|
+
`middleman-remove-indent` は [Middleman](http://middlemanapp.com/) の拡張機能です。
|
7
|
+
この拡張機能は build したファイル (例: .html, .css) からインデントを削除します。
|
8
|
+
|
9
|
+
## インストール
|
10
|
+
|
11
|
+
Gemfile に次の行を追加してください:
|
12
|
+
|
13
|
+
gem 'middleman-remove-indent'
|
14
|
+
|
15
|
+
コマンドを実行します:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Gemfile を使わずにインストールする場合は次のコマンドを実行してください:
|
20
|
+
|
21
|
+
$ gem install middleman-remove-indent
|
22
|
+
|
23
|
+
## 使い方
|
24
|
+
|
25
|
+
`config.rb` に記述します:
|
26
|
+
|
27
|
+
```ruby
|
28
|
+
configure :build do
|
29
|
+
activate :remove_indent
|
30
|
+
end
|
31
|
+
```
|
32
|
+
|
33
|
+
この場合, `middleman-remove-indent` は `build/*.html` と `build/*.css` に該当するファイルからインデントを削除します。
|
34
|
+
`*.html` ファイルのみインデントを削除したい場合には, `:exts` オプションを変更します:
|
35
|
+
|
36
|
+
```ruby
|
37
|
+
configure :build do
|
38
|
+
activate :remove_indent, :exts => %w(.html) # default: %w(.html .css)
|
39
|
+
end
|
40
|
+
```
|
41
|
+
|
42
|
+
さらに, `build` 後のファイルから空行を削除したい場合, `:remove_blank_line` オプションを利用できます:
|
43
|
+
|
44
|
+
```ruby
|
45
|
+
configure :build do
|
46
|
+
activate :remove_indent, :remove_blank_line => true # default: false
|
47
|
+
end
|
48
|
+
```
|
49
|
+
|
50
|
+
## Contributing
|
51
|
+
|
52
|
+
1. Fork it ( http://github.com/yterajima/middleman-remove-indent/fork )
|
53
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
54
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
55
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
56
|
+
5. Create new Pull Request
|
57
|
+
|
data/README.md
CHANGED
@@ -1,9 +1,10 @@
|
|
1
|
-
#
|
1
|
+
# middleman-remove-indent
|
2
2
|
|
3
3
|
[](http://badge.fury.io/rb/middleman-remove-indent)
|
4
4
|
[](https://travis-ci.org/yterajima/middleman-remove-indent)
|
5
5
|
|
6
|
-
`middleman-remove-indent
|
6
|
+
`middleman-remove-indent` is an extension of [Middleman](http://middlemanapp.com/).
|
7
|
+
This extension remove indent from build files (ex: .html, .css).
|
7
8
|
|
8
9
|
## Installation
|
9
10
|
|
@@ -23,23 +24,28 @@ Or install it yourself as:
|
|
23
24
|
|
24
25
|
In `config.rb`:
|
25
26
|
|
26
|
-
|
27
|
-
|
28
|
-
|
27
|
+
```ruby
|
28
|
+
configure :build do
|
29
|
+
activate :remove_indent
|
30
|
+
end
|
31
|
+
```
|
29
32
|
|
30
|
-
Then `middleman-remove-indent` remove indent from `build/\*.html`, `build/\*.css`.
|
33
|
+
Then `middleman-remove-indent` remove indent from `build/\*.html`, `build/\*.css`.
|
34
|
+
if you want to remove indent only `.html`, you could change `:exts` option:
|
31
35
|
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
36
|
+
```ruby
|
37
|
+
configure :build do
|
38
|
+
activate :remove_indent, :exts => %w(.html) # default: %w(.html .css)
|
39
|
+
end
|
40
|
+
```
|
37
41
|
|
38
42
|
if you want to remove BLANK LINE too, you could do with `:remove_blank_line' option:
|
39
43
|
|
40
|
-
|
41
|
-
|
42
|
-
|
44
|
+
```ruby
|
45
|
+
configure :build do
|
46
|
+
activate :remove_indent, :remove_blank_line => true # default: false
|
47
|
+
end
|
48
|
+
```
|
43
49
|
|
44
50
|
## Contributing
|
45
51
|
|
@@ -48,3 +54,4 @@ if you want to remove BLANK LINE too, you could do with `:remove_blank_line' opt
|
|
48
54
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
49
55
|
4. Push to the branch (`git push origin my-new-feature`)
|
50
56
|
5. Create new Pull Request
|
57
|
+
|
@@ -0,0 +1,76 @@
|
|
1
|
+
Feature: Middleman-Remove-indent with Subdirectory
|
2
|
+
|
3
|
+
Scenario: Basic Settings
|
4
|
+
Given a fixture app "subdirectory-app"
|
5
|
+
And a file named "config.rb" with:
|
6
|
+
"""
|
7
|
+
configure :build do
|
8
|
+
activate :remove_indent
|
9
|
+
end
|
10
|
+
"""
|
11
|
+
And a successfully built app at "subdirectory-app"
|
12
|
+
When I cd to "build"
|
13
|
+
Then the file "subdir/index.html" should match /^<head>/
|
14
|
+
And the file "subdir/index.html" should match /^\n/
|
15
|
+
And the file "stylesheets/subdir/all.css" should match /^\.doc:before/
|
16
|
+
And the file "stylesheets/subdir/all.css" should match /^\n/
|
17
|
+
|
18
|
+
Scenario: With ':remove_blank_line' option
|
19
|
+
Given a fixture app "subdirectory-app"
|
20
|
+
And a file named "config.rb" with:
|
21
|
+
"""
|
22
|
+
configure :build do
|
23
|
+
activate :remove_indent, :remove_blank_line => true
|
24
|
+
end
|
25
|
+
"""
|
26
|
+
And a successfully built app at "subdirectory-app"
|
27
|
+
When I cd to "build"
|
28
|
+
Then the file "subdir/index.html" should match /^<head>/
|
29
|
+
And the file "subdir/index.html" should not match /^\n/
|
30
|
+
And the file "stylesheets/subdir/all.css" should match /^\.doc:before/
|
31
|
+
And the file "stylesheets/subdir/all.css" should not match /^\n/
|
32
|
+
|
33
|
+
Scenario: Remove indent only html with :exts option
|
34
|
+
Given a fixture app "subdirectory-app"
|
35
|
+
And a file named "config.rb" with:
|
36
|
+
"""
|
37
|
+
configure :build do
|
38
|
+
activate :remove_indent, :exts => %(.html)
|
39
|
+
end
|
40
|
+
"""
|
41
|
+
And a successfully built app at "subdirectory-app"
|
42
|
+
When I cd to "build"
|
43
|
+
Then the file "subdir/index.html" should match /^<head>/
|
44
|
+
And the file "subdir/index.html" should match /^\n/
|
45
|
+
And the file "stylesheets/subdir/all.css" should not match /^\.doc:before/
|
46
|
+
And the file "stylesheets/subdir/all.css" should match /^\n/
|
47
|
+
|
48
|
+
Scenario: Remove indent only css with :exts option
|
49
|
+
Given a fixture app "subdirectory-app"
|
50
|
+
And a file named "config.rb" with:
|
51
|
+
"""
|
52
|
+
configure :build do
|
53
|
+
activate :remove_indent, :exts => %(.css)
|
54
|
+
end
|
55
|
+
"""
|
56
|
+
And a successfully built app at "subdirectory-app"
|
57
|
+
When I cd to "build"
|
58
|
+
Then the file "subdir/index.html" should not match /^<head>/
|
59
|
+
And the file "subdir/index.html" should not match /^\n/
|
60
|
+
And the file "stylesheets/subdir/all.css" should match /^\.doc:before/
|
61
|
+
And the file "stylesheets/subdir/all.css" should match /^\n/
|
62
|
+
|
63
|
+
Scenario: With ':remove_blank_line' & ':exts'
|
64
|
+
Given a fixture app "subdirectory-app"
|
65
|
+
And a file named "config.rb" with:
|
66
|
+
"""
|
67
|
+
configure :build do
|
68
|
+
activate :remove_indent, :remove_blank_line => true, :exts => %(.css)
|
69
|
+
end
|
70
|
+
"""
|
71
|
+
And a successfully built app at "subdirectory-app"
|
72
|
+
When I cd to "build"
|
73
|
+
Then the file "subdir/index.html" should not match /^<head>/
|
74
|
+
And the file "subdir/index.html" should not match /^\n/
|
75
|
+
And the file "stylesheets/subdir/all.css" should match /^\.doc:before/
|
76
|
+
And the file "stylesheets/subdir/all.css" should not match /^\n/
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
|
6
|
+
<!-- Always force latest IE rendering engine or request Chrome Frame -->
|
7
|
+
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
|
8
|
+
|
9
|
+
<!-- Use title if it's in the page YAML frontmatter -->
|
10
|
+
<title><%= current_page.data.title || "The Middleman" %></title>
|
11
|
+
|
12
|
+
<%= stylesheet_link_tag "normalize", "all" %>
|
13
|
+
<%= javascript_include_tag "all" %>
|
14
|
+
</head>
|
15
|
+
|
16
|
+
<body class="<%= page_classes %>">
|
17
|
+
<%= yield %>
|
18
|
+
</body>
|
19
|
+
</html>
|
@@ -0,0 +1,55 @@
|
|
1
|
+
@charset "utf-8";
|
2
|
+
|
3
|
+
body {
|
4
|
+
background: #d4d4d4 url("../images/background.png");
|
5
|
+
text-align: center;
|
6
|
+
font-family: sans-serif; }
|
7
|
+
|
8
|
+
h1 {
|
9
|
+
color: rgba(0, 0, 0, .3);
|
10
|
+
font-weight: bold;
|
11
|
+
font-size: 32px;
|
12
|
+
letter-spacing: -1px;
|
13
|
+
text-transform: uppercase;
|
14
|
+
text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
|
15
|
+
background: url("../images/middleman.png") no-repeat center 100px;
|
16
|
+
padding: 350px 0 10px;
|
17
|
+
margin: 0; }
|
18
|
+
|
19
|
+
.doc {
|
20
|
+
font-size: 14px;
|
21
|
+
margin: 0; }
|
22
|
+
.doc:before,
|
23
|
+
.doc:after {
|
24
|
+
opacity: .2;
|
25
|
+
padding: 6px;
|
26
|
+
font-style: normal;
|
27
|
+
position: relative;
|
28
|
+
content: "•"; }
|
29
|
+
.doc a {
|
30
|
+
color: rgba(0, 0, 0, 0.3); }
|
31
|
+
.doc a:hover {
|
32
|
+
color: #666; }
|
33
|
+
|
34
|
+
.welcome {
|
35
|
+
-webkit-animation-name: welcome;
|
36
|
+
-webkit-animation-duration: .9s; }
|
37
|
+
|
38
|
+
@-webkit-keyframes welcome {
|
39
|
+
from {
|
40
|
+
-webkit-transform: scale(0);
|
41
|
+
opacity: 0;
|
42
|
+
}
|
43
|
+
50% {
|
44
|
+
-webkit-transform: scale(0);
|
45
|
+
opacity: 0;
|
46
|
+
}
|
47
|
+
82.5% {
|
48
|
+
-webkit-transform: scale(1.03);
|
49
|
+
-webkit-animation-timing-function: ease-out;
|
50
|
+
opacity: 1;
|
51
|
+
}
|
52
|
+
to {
|
53
|
+
-webkit-transform: scale(1);
|
54
|
+
}
|
55
|
+
}
|
@@ -0,0 +1,375 @@
|
|
1
|
+
/*! normalize.css v2.0.1 | MIT License | git.io/normalize */
|
2
|
+
|
3
|
+
/* ==========================================================================
|
4
|
+
HTML5 display definitions
|
5
|
+
========================================================================== */
|
6
|
+
|
7
|
+
/*
|
8
|
+
* Corrects `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
|
+
nav,
|
20
|
+
section,
|
21
|
+
summary {
|
22
|
+
display: block;
|
23
|
+
}
|
24
|
+
|
25
|
+
/*
|
26
|
+
* Corrects `inline-block` display not defined in IE 8/9.
|
27
|
+
*/
|
28
|
+
|
29
|
+
audio,
|
30
|
+
canvas,
|
31
|
+
video {
|
32
|
+
display: inline-block;
|
33
|
+
}
|
34
|
+
|
35
|
+
/*
|
36
|
+
* Prevents modern browsers from displaying `audio` without controls.
|
37
|
+
* Remove excess height in iOS 5 devices.
|
38
|
+
*/
|
39
|
+
|
40
|
+
audio:not([controls]) {
|
41
|
+
display: none;
|
42
|
+
height: 0;
|
43
|
+
}
|
44
|
+
|
45
|
+
/*
|
46
|
+
* Addresses styling for `hidden` attribute not present in IE 8/9.
|
47
|
+
*/
|
48
|
+
|
49
|
+
[hidden] {
|
50
|
+
display: none;
|
51
|
+
}
|
52
|
+
|
53
|
+
/* ==========================================================================
|
54
|
+
Base
|
55
|
+
========================================================================== */
|
56
|
+
|
57
|
+
/*
|
58
|
+
* 1. Sets default font family to sans-serif.
|
59
|
+
* 2. Prevents iOS text size adjust after orientation change, without disabling
|
60
|
+
* user zoom.
|
61
|
+
*/
|
62
|
+
|
63
|
+
html {
|
64
|
+
font-family: sans-serif; /* 1 */
|
65
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
66
|
+
-ms-text-size-adjust: 100%; /* 2 */
|
67
|
+
}
|
68
|
+
|
69
|
+
/*
|
70
|
+
* Removes default margin.
|
71
|
+
*/
|
72
|
+
|
73
|
+
body {
|
74
|
+
margin: 0;
|
75
|
+
}
|
76
|
+
|
77
|
+
/* ==========================================================================
|
78
|
+
Links
|
79
|
+
========================================================================== */
|
80
|
+
|
81
|
+
/*
|
82
|
+
* Addresses `outline` inconsistency between Chrome and other browsers.
|
83
|
+
*/
|
84
|
+
|
85
|
+
a:focus {
|
86
|
+
outline: thin dotted;
|
87
|
+
}
|
88
|
+
|
89
|
+
/*
|
90
|
+
* Improves readability when focused and also mouse hovered in all browsers.
|
91
|
+
*/
|
92
|
+
|
93
|
+
a:active,
|
94
|
+
a:hover {
|
95
|
+
outline: 0;
|
96
|
+
}
|
97
|
+
|
98
|
+
/* ==========================================================================
|
99
|
+
Typography
|
100
|
+
========================================================================== */
|
101
|
+
|
102
|
+
/*
|
103
|
+
* Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
|
104
|
+
* Safari 5, and Chrome.
|
105
|
+
*/
|
106
|
+
|
107
|
+
h1 {
|
108
|
+
font-size: 2em;
|
109
|
+
}
|
110
|
+
|
111
|
+
/*
|
112
|
+
* Addresses styling not present in IE 8/9, Safari 5, and Chrome.
|
113
|
+
*/
|
114
|
+
|
115
|
+
abbr[title] {
|
116
|
+
border-bottom: 1px dotted;
|
117
|
+
}
|
118
|
+
|
119
|
+
/*
|
120
|
+
* Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
|
121
|
+
*/
|
122
|
+
|
123
|
+
b,
|
124
|
+
strong {
|
125
|
+
font-weight: bold;
|
126
|
+
}
|
127
|
+
|
128
|
+
/*
|
129
|
+
* Addresses styling not present in Safari 5 and Chrome.
|
130
|
+
*/
|
131
|
+
|
132
|
+
dfn {
|
133
|
+
font-style: italic;
|
134
|
+
}
|
135
|
+
|
136
|
+
/*
|
137
|
+
* Addresses styling not present in IE 8/9.
|
138
|
+
*/
|
139
|
+
|
140
|
+
mark {
|
141
|
+
background: #ff0;
|
142
|
+
color: #000;
|
143
|
+
}
|
144
|
+
|
145
|
+
|
146
|
+
/*
|
147
|
+
* Corrects font family set oddly in Safari 5 and Chrome.
|
148
|
+
*/
|
149
|
+
|
150
|
+
code,
|
151
|
+
kbd,
|
152
|
+
pre,
|
153
|
+
samp {
|
154
|
+
font-family: monospace, serif;
|
155
|
+
font-size: 1em;
|
156
|
+
}
|
157
|
+
|
158
|
+
/*
|
159
|
+
* Improves readability of pre-formatted text in all browsers.
|
160
|
+
*/
|
161
|
+
|
162
|
+
pre {
|
163
|
+
white-space: pre;
|
164
|
+
white-space: pre-wrap;
|
165
|
+
word-wrap: break-word;
|
166
|
+
}
|
167
|
+
|
168
|
+
/*
|
169
|
+
* Sets consistent quote types.
|
170
|
+
*/
|
171
|
+
|
172
|
+
q {
|
173
|
+
quotes: "\201C" "\201D" "\2018" "\2019";
|
174
|
+
}
|
175
|
+
|
176
|
+
/*
|
177
|
+
* Addresses inconsistent and variable font size in all browsers.
|
178
|
+
*/
|
179
|
+
|
180
|
+
small {
|
181
|
+
font-size: 80%;
|
182
|
+
}
|
183
|
+
|
184
|
+
/*
|
185
|
+
* Prevents `sub` and `sup` affecting `line-height` in all browsers.
|
186
|
+
*/
|
187
|
+
|
188
|
+
sub,
|
189
|
+
sup {
|
190
|
+
font-size: 75%;
|
191
|
+
line-height: 0;
|
192
|
+
position: relative;
|
193
|
+
vertical-align: baseline;
|
194
|
+
}
|
195
|
+
|
196
|
+
sup {
|
197
|
+
top: -0.5em;
|
198
|
+
}
|
199
|
+
|
200
|
+
sub {
|
201
|
+
bottom: -0.25em;
|
202
|
+
}
|
203
|
+
|
204
|
+
/* ==========================================================================
|
205
|
+
Embedded content
|
206
|
+
========================================================================== */
|
207
|
+
|
208
|
+
/*
|
209
|
+
* Removes border when inside `a` element in IE 8/9.
|
210
|
+
*/
|
211
|
+
|
212
|
+
img {
|
213
|
+
border: 0;
|
214
|
+
}
|
215
|
+
|
216
|
+
/*
|
217
|
+
* Corrects overflow displayed oddly in IE 9.
|
218
|
+
*/
|
219
|
+
|
220
|
+
svg:not(:root) {
|
221
|
+
overflow: hidden;
|
222
|
+
}
|
223
|
+
|
224
|
+
/* ==========================================================================
|
225
|
+
Figures
|
226
|
+
========================================================================== */
|
227
|
+
|
228
|
+
/*
|
229
|
+
* Addresses margin not present in IE 8/9 and Safari 5.
|
230
|
+
*/
|
231
|
+
|
232
|
+
figure {
|
233
|
+
margin: 0;
|
234
|
+
}
|
235
|
+
|
236
|
+
/* ==========================================================================
|
237
|
+
Forms
|
238
|
+
========================================================================== */
|
239
|
+
|
240
|
+
/*
|
241
|
+
* Define consistent border, margin, and padding.
|
242
|
+
*/
|
243
|
+
|
244
|
+
fieldset {
|
245
|
+
border: 1px solid #c0c0c0;
|
246
|
+
margin: 0 2px;
|
247
|
+
padding: 0.35em 0.625em 0.75em;
|
248
|
+
}
|
249
|
+
|
250
|
+
/*
|
251
|
+
* 1. Corrects color not being inherited in IE 8/9.
|
252
|
+
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
253
|
+
*/
|
254
|
+
|
255
|
+
legend {
|
256
|
+
border: 0; /* 1 */
|
257
|
+
padding: 0; /* 2 */
|
258
|
+
}
|
259
|
+
|
260
|
+
/*
|
261
|
+
* 1. Corrects font family not being inherited in all browsers.
|
262
|
+
* 2. Corrects font size not being inherited in all browsers.
|
263
|
+
* 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
|
264
|
+
*/
|
265
|
+
|
266
|
+
button,
|
267
|
+
input,
|
268
|
+
select,
|
269
|
+
textarea {
|
270
|
+
font-family: inherit; /* 1 */
|
271
|
+
font-size: 100%; /* 2 */
|
272
|
+
margin: 0; /* 3 */
|
273
|
+
}
|
274
|
+
|
275
|
+
/*
|
276
|
+
* Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
|
277
|
+
* the UA stylesheet.
|
278
|
+
*/
|
279
|
+
|
280
|
+
button,
|
281
|
+
input {
|
282
|
+
line-height: normal;
|
283
|
+
}
|
284
|
+
|
285
|
+
/*
|
286
|
+
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
287
|
+
* and `video` controls.
|
288
|
+
* 2. Corrects inability to style clickable `input` types in iOS.
|
289
|
+
* 3. Improves usability and consistency of cursor style between image-type
|
290
|
+
* `input` and others.
|
291
|
+
*/
|
292
|
+
|
293
|
+
button,
|
294
|
+
html input[type="button"], /* 1 */
|
295
|
+
input[type="reset"],
|
296
|
+
input[type="submit"] {
|
297
|
+
-webkit-appearance: button; /* 2 */
|
298
|
+
cursor: pointer; /* 3 */
|
299
|
+
}
|
300
|
+
|
301
|
+
/*
|
302
|
+
* Re-set default cursor for disabled elements.
|
303
|
+
*/
|
304
|
+
|
305
|
+
button[disabled],
|
306
|
+
input[disabled] {
|
307
|
+
cursor: default;
|
308
|
+
}
|
309
|
+
|
310
|
+
/*
|
311
|
+
* 1. Addresses box sizing set to `content-box` in IE 8/9.
|
312
|
+
* 2. Removes excess padding in IE 8/9.
|
313
|
+
*/
|
314
|
+
|
315
|
+
input[type="checkbox"],
|
316
|
+
input[type="radio"] {
|
317
|
+
box-sizing: border-box; /* 1 */
|
318
|
+
padding: 0; /* 2 */
|
319
|
+
}
|
320
|
+
|
321
|
+
/*
|
322
|
+
* 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
|
323
|
+
* 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
|
324
|
+
* (include `-moz` to future-proof).
|
325
|
+
*/
|
326
|
+
|
327
|
+
input[type="search"] {
|
328
|
+
-webkit-appearance: textfield; /* 1 */
|
329
|
+
-moz-box-sizing: content-box;
|
330
|
+
-webkit-box-sizing: content-box; /* 2 */
|
331
|
+
box-sizing: content-box;
|
332
|
+
}
|
333
|
+
|
334
|
+
/*
|
335
|
+
* Removes inner padding and search cancel button in Safari 5 and Chrome
|
336
|
+
* on OS X.
|
337
|
+
*/
|
338
|
+
|
339
|
+
input[type="search"]::-webkit-search-cancel-button,
|
340
|
+
input[type="search"]::-webkit-search-decoration {
|
341
|
+
-webkit-appearance: none;
|
342
|
+
}
|
343
|
+
|
344
|
+
/*
|
345
|
+
* Removes inner padding and border in Firefox 4+.
|
346
|
+
*/
|
347
|
+
|
348
|
+
button::-moz-focus-inner,
|
349
|
+
input::-moz-focus-inner {
|
350
|
+
border: 0;
|
351
|
+
padding: 0;
|
352
|
+
}
|
353
|
+
|
354
|
+
/*
|
355
|
+
* 1. Removes default vertical scrollbar in IE 8/9.
|
356
|
+
* 2. Improves readability and alignment in all browsers.
|
357
|
+
*/
|
358
|
+
|
359
|
+
textarea {
|
360
|
+
overflow: auto; /* 1 */
|
361
|
+
vertical-align: top; /* 2 */
|
362
|
+
}
|
363
|
+
|
364
|
+
/* ==========================================================================
|
365
|
+
Tables
|
366
|
+
========================================================================== */
|
367
|
+
|
368
|
+
/*
|
369
|
+
* Remove most spacing between table cells.
|
370
|
+
*/
|
371
|
+
|
372
|
+
table {
|
373
|
+
border-collapse: collapse;
|
374
|
+
border-spacing: 0;
|
375
|
+
}
|
@@ -0,0 +1,55 @@
|
|
1
|
+
@charset "utf-8";
|
2
|
+
|
3
|
+
body {
|
4
|
+
background: #d4d4d4 url("../images/background.png");
|
5
|
+
text-align: center;
|
6
|
+
font-family: sans-serif; }
|
7
|
+
|
8
|
+
h1 {
|
9
|
+
color: rgba(0, 0, 0, .3);
|
10
|
+
font-weight: bold;
|
11
|
+
font-size: 32px;
|
12
|
+
letter-spacing: -1px;
|
13
|
+
text-transform: uppercase;
|
14
|
+
text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
|
15
|
+
background: url("../images/middleman.png") no-repeat center 100px;
|
16
|
+
padding: 350px 0 10px;
|
17
|
+
margin: 0; }
|
18
|
+
|
19
|
+
.doc {
|
20
|
+
font-size: 14px;
|
21
|
+
margin: 0; }
|
22
|
+
.doc:before,
|
23
|
+
.doc:after {
|
24
|
+
opacity: .2;
|
25
|
+
padding: 6px;
|
26
|
+
font-style: normal;
|
27
|
+
position: relative;
|
28
|
+
content: "•"; }
|
29
|
+
.doc a {
|
30
|
+
color: rgba(0, 0, 0, 0.3); }
|
31
|
+
.doc a:hover {
|
32
|
+
color: #666; }
|
33
|
+
|
34
|
+
.welcome {
|
35
|
+
-webkit-animation-name: welcome;
|
36
|
+
-webkit-animation-duration: .9s; }
|
37
|
+
|
38
|
+
@-webkit-keyframes welcome {
|
39
|
+
from {
|
40
|
+
-webkit-transform: scale(0);
|
41
|
+
opacity: 0;
|
42
|
+
}
|
43
|
+
50% {
|
44
|
+
-webkit-transform: scale(0);
|
45
|
+
opacity: 0;
|
46
|
+
}
|
47
|
+
82.5% {
|
48
|
+
-webkit-transform: scale(1.03);
|
49
|
+
-webkit-animation-timing-function: ease-out;
|
50
|
+
opacity: 1;
|
51
|
+
}
|
52
|
+
to {
|
53
|
+
-webkit-transform: scale(1);
|
54
|
+
}
|
55
|
+
}
|
@@ -8,7 +8,7 @@ module Middleman
|
|
8
8
|
super
|
9
9
|
|
10
10
|
exts = (options.exts.is_a?(String)) ? Array(options.exts) : options.exts
|
11
|
-
build_dir =
|
11
|
+
build_dir = app.build_dir
|
12
12
|
extension = self
|
13
13
|
|
14
14
|
app.after_build do
|
@@ -45,3 +45,4 @@ module Middleman
|
|
45
45
|
end
|
46
46
|
end
|
47
47
|
end
|
48
|
+
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: middleman-remove-indent
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- yterajima
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-12-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: middleman
|
@@ -91,14 +91,22 @@ files:
|
|
91
91
|
- ".travis.yml"
|
92
92
|
- Gemfile
|
93
93
|
- LICENSE.txt
|
94
|
+
- README.jp.md
|
94
95
|
- README.md
|
95
96
|
- Rakefile
|
96
97
|
- features/remove_indent.feature
|
97
98
|
- features/support/env.rb
|
99
|
+
- features/with_subdirectory.feature
|
98
100
|
- fixtures/basic-app/source/index.html.erb
|
99
101
|
- fixtures/basic-app/source/layouts/layout.erb
|
100
102
|
- fixtures/basic-app/source/stylesheets/all.css
|
101
103
|
- fixtures/basic-app/source/stylesheets/normalize.css
|
104
|
+
- fixtures/subdirectory-app/source/index.html.erb
|
105
|
+
- fixtures/subdirectory-app/source/layouts/layout.erb
|
106
|
+
- fixtures/subdirectory-app/source/stylesheets/all.css
|
107
|
+
- fixtures/subdirectory-app/source/stylesheets/normalize.css
|
108
|
+
- fixtures/subdirectory-app/source/stylesheets/subdir/all.css
|
109
|
+
- fixtures/subdirectory-app/source/subdir/index.html.erb
|
102
110
|
- lib/middleman-remove-indent.rb
|
103
111
|
- lib/middleman-remove-indent/extension.rb
|
104
112
|
- lib/middleman-remove-indent/version.rb
|
@@ -131,3 +139,4 @@ summary: Remove indent from build files
|
|
131
139
|
test_files:
|
132
140
|
- features/remove_indent.feature
|
133
141
|
- features/support/env.rb
|
142
|
+
- features/with_subdirectory.feature
|