middleman-autoprefixer 2.6.2 → 2.6.3
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/.gitignore +2 -0
- data/.travis.yml +5 -1
- data/CHANGELOG.md +8 -0
- data/Gemfile +8 -0
- data/Gemfile4 +12 -0
- data/README.md +1 -1
- data/features/autoprefixer.feature +4 -4
- data/fixtures/block-app/source/stylesheets/page.css +3 -0
- data/fixtures/cascading-off-app/config.rb +5 -2
- data/fixtures/cascading-off-app/source/stylesheets/{page.scss → page.css} +0 -0
- data/fixtures/cascading-on-app/config.rb +5 -2
- data/fixtures/cascading-on-app/source/stylesheets/{page.scss → page.css} +0 -0
- data/fixtures/default-app/source/stylesheets/{page.scss → page.css} +0 -0
- data/fixtures/hash-app/source/stylesheets/{page.scss → page.css.scss} +0 -0
- data/fixtures/ignore-app/config.rb +4 -1
- data/fixtures/ignore-app/source/stylesheets/{nope.scss → nope.css} +0 -0
- data/fixtures/ignore-app/source/stylesheets/{yep.scss → yep-1.css} +0 -0
- data/fixtures/{proxy-app/source/stylesheets/page.scss → ignore-app/source/stylesheets/yep-2.css} +0 -0
- data/fixtures/proxy-app/source/stylesheets/page.css +4 -0
- data/lib/middleman-autoprefixer/version.rb +1 -1
- data/middleman-autoprefixer.gemspec +1 -6
- metadata +24 -77
- data/fixtures/block-app/source/stylesheets/page.scss +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ff9eddd330f9d8f4002acca0980f21042428ecda
|
4
|
+
data.tar.gz: 4fd0daa7c95151da36a47051e53d37f0ad054784
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ffd5e37ff92ac75049f913c619a48228918745379f7b344c6890f1c3863a0be7b1ab1a7cf3a71f81b51e2a49c5a48afa39965e3efb3982bb5c457a80b1707fc
|
7
|
+
data.tar.gz: 4513b5d1e418eb8f95a4515b3ff109f677eaf14282eedff19aee4b2d2806a65e5a19f7e2c185af2fc0ed6cc5f60e53a18c92d52714dd028fe469ce0325a3f808
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
data/Gemfile4
ADDED
data/README.md
CHANGED
@@ -11,9 +11,7 @@ Feature: Postprocessing stylesheets with Autoprefixer in different configuration
|
|
11
11
|
Scenario: Passing options in a block
|
12
12
|
Given the Server is running at "block-app"
|
13
13
|
When I go to "/stylesheets/page.css"
|
14
|
-
Then I should see "-webkit-
|
15
|
-
And I should see "-moz-box"
|
16
|
-
And I should see "-webkit-linear-gradient"
|
14
|
+
Then I should see "-webkit-linear-gradient"
|
17
15
|
And I should see "-moz-linear-gradient"
|
18
16
|
|
19
17
|
Scenario: Passing options in a hash
|
@@ -62,7 +60,9 @@ Feature: Postprocessing stylesheets with Autoprefixer in different configuration
|
|
62
60
|
|
63
61
|
Scenario: Ignoring paths
|
64
62
|
Given the Server is running at "ignore-app"
|
65
|
-
When I go to "/stylesheets/yep.css"
|
63
|
+
When I go to "/stylesheets/yep-1.css"
|
64
|
+
Then I should see "-ms-border-radius"
|
65
|
+
When I go to "/stylesheets/yep-2.css"
|
66
66
|
Then I should see "-ms-border-radius"
|
67
67
|
When I go to "/stylesheets/nope.css"
|
68
68
|
Then I should not see "-ms-border-radius"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/fixtures/{proxy-app/source/stylesheets/page.scss → ignore-app/source/stylesheets/yep-2.css}
RENAMED
File without changes
|
@@ -17,12 +17,7 @@ Gem::Specification.new do |spec|
|
|
17
17
|
spec.require_paths = ['lib']
|
18
18
|
|
19
19
|
spec.add_dependency 'middleman-core', '>= 3.3.3'
|
20
|
-
spec.add_dependency 'autoprefixer-rails', '~> 6.1
|
21
|
-
|
22
|
-
spec.add_development_dependency 'middleman', '>= 3.3.3'
|
23
|
-
spec.add_development_dependency 'cucumber', '~> 1.3'
|
24
|
-
spec.add_development_dependency 'aruba', '~> 0.6'
|
25
|
-
spec.add_development_dependency 'coveralls', '~> 0.7'
|
20
|
+
spec.add_dependency 'autoprefixer-rails', '~> 6.2.1'
|
26
21
|
|
27
22
|
spec.add_development_dependency 'bundler', '>= 1.6'
|
28
23
|
spec.add_development_dependency 'rake', '>= 10.3'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: middleman-autoprefixer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.6.
|
4
|
+
version: 2.6.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dominik Porada
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-12-
|
12
|
+
date: 2015-12-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: middleman-core
|
@@ -31,70 +31,14 @@ dependencies:
|
|
31
31
|
requirements:
|
32
32
|
- - "~>"
|
33
33
|
- !ruby/object:Gem::Version
|
34
|
-
version: 6.1
|
34
|
+
version: 6.2.1
|
35
35
|
type: :runtime
|
36
36
|
prerelease: false
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
38
38
|
requirements:
|
39
39
|
- - "~>"
|
40
40
|
- !ruby/object:Gem::Version
|
41
|
-
version: 6.1
|
42
|
-
- !ruby/object:Gem::Dependency
|
43
|
-
name: middleman
|
44
|
-
requirement: !ruby/object:Gem::Requirement
|
45
|
-
requirements:
|
46
|
-
- - ">="
|
47
|
-
- !ruby/object:Gem::Version
|
48
|
-
version: 3.3.3
|
49
|
-
type: :development
|
50
|
-
prerelease: false
|
51
|
-
version_requirements: !ruby/object:Gem::Requirement
|
52
|
-
requirements:
|
53
|
-
- - ">="
|
54
|
-
- !ruby/object:Gem::Version
|
55
|
-
version: 3.3.3
|
56
|
-
- !ruby/object:Gem::Dependency
|
57
|
-
name: cucumber
|
58
|
-
requirement: !ruby/object:Gem::Requirement
|
59
|
-
requirements:
|
60
|
-
- - "~>"
|
61
|
-
- !ruby/object:Gem::Version
|
62
|
-
version: '1.3'
|
63
|
-
type: :development
|
64
|
-
prerelease: false
|
65
|
-
version_requirements: !ruby/object:Gem::Requirement
|
66
|
-
requirements:
|
67
|
-
- - "~>"
|
68
|
-
- !ruby/object:Gem::Version
|
69
|
-
version: '1.3'
|
70
|
-
- !ruby/object:Gem::Dependency
|
71
|
-
name: aruba
|
72
|
-
requirement: !ruby/object:Gem::Requirement
|
73
|
-
requirements:
|
74
|
-
- - "~>"
|
75
|
-
- !ruby/object:Gem::Version
|
76
|
-
version: '0.6'
|
77
|
-
type: :development
|
78
|
-
prerelease: false
|
79
|
-
version_requirements: !ruby/object:Gem::Requirement
|
80
|
-
requirements:
|
81
|
-
- - "~>"
|
82
|
-
- !ruby/object:Gem::Version
|
83
|
-
version: '0.6'
|
84
|
-
- !ruby/object:Gem::Dependency
|
85
|
-
name: coveralls
|
86
|
-
requirement: !ruby/object:Gem::Requirement
|
87
|
-
requirements:
|
88
|
-
- - "~>"
|
89
|
-
- !ruby/object:Gem::Version
|
90
|
-
version: '0.7'
|
91
|
-
type: :development
|
92
|
-
prerelease: false
|
93
|
-
version_requirements: !ruby/object:Gem::Requirement
|
94
|
-
requirements:
|
95
|
-
- - "~>"
|
96
|
-
- !ruby/object:Gem::Version
|
97
|
-
version: '0.7'
|
41
|
+
version: 6.2.1
|
98
42
|
- !ruby/object:Gem::Dependency
|
99
43
|
name: bundler
|
100
44
|
requirement: !ruby/object:Gem::Requirement
|
@@ -135,6 +79,7 @@ files:
|
|
135
79
|
- ".travis.yml"
|
136
80
|
- CHANGELOG.md
|
137
81
|
- Gemfile
|
82
|
+
- Gemfile4
|
138
83
|
- README.md
|
139
84
|
- Rakefile
|
140
85
|
- features/autoprefixer.feature
|
@@ -144,29 +89,30 @@ files:
|
|
144
89
|
- fixtures/adding-off-app/source/stylesheets/page.css
|
145
90
|
- fixtures/block-app/config.rb
|
146
91
|
- fixtures/block-app/source/index.html
|
147
|
-
- fixtures/block-app/source/stylesheets/page.
|
92
|
+
- fixtures/block-app/source/stylesheets/page.css
|
148
93
|
- fixtures/cascading-off-app/config.rb
|
149
94
|
- fixtures/cascading-off-app/source/index.html
|
150
|
-
- fixtures/cascading-off-app/source/stylesheets/page.
|
95
|
+
- fixtures/cascading-off-app/source/stylesheets/page.css
|
151
96
|
- fixtures/cascading-on-app/config.rb
|
152
97
|
- fixtures/cascading-on-app/source/index.html
|
153
|
-
- fixtures/cascading-on-app/source/stylesheets/page.
|
98
|
+
- fixtures/cascading-on-app/source/stylesheets/page.css
|
154
99
|
- fixtures/default-app/config.rb
|
155
100
|
- fixtures/default-app/source/index.html
|
156
|
-
- fixtures/default-app/source/stylesheets/page.
|
101
|
+
- fixtures/default-app/source/stylesheets/page.css
|
157
102
|
- fixtures/hash-app/config.rb
|
158
103
|
- fixtures/hash-app/source/index.html
|
159
104
|
- fixtures/hash-app/source/stylesheets/_link.sass
|
160
|
-
- fixtures/hash-app/source/stylesheets/page.scss
|
105
|
+
- fixtures/hash-app/source/stylesheets/page.css.scss
|
161
106
|
- fixtures/ignore-app/config.rb
|
162
107
|
- fixtures/ignore-app/source/index.html
|
163
|
-
- fixtures/ignore-app/source/stylesheets/nope.
|
164
|
-
- fixtures/ignore-app/source/stylesheets/yep.
|
108
|
+
- fixtures/ignore-app/source/stylesheets/nope.css
|
109
|
+
- fixtures/ignore-app/source/stylesheets/yep-1.css
|
110
|
+
- fixtures/ignore-app/source/stylesheets/yep-2.css
|
165
111
|
- fixtures/inline-app/config.rb
|
166
112
|
- fixtures/inline-app/source/index.html
|
167
113
|
- fixtures/proxy-app/config.rb
|
168
114
|
- fixtures/proxy-app/source/index.html
|
169
|
-
- fixtures/proxy-app/source/stylesheets/page.
|
115
|
+
- fixtures/proxy-app/source/stylesheets/page.css
|
170
116
|
- fixtures/removing-off-app/config.rb
|
171
117
|
- fixtures/removing-off-app/source/index.html
|
172
118
|
- fixtures/removing-off-app/source/stylesheets/page.css
|
@@ -194,7 +140,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
194
140
|
version: '0'
|
195
141
|
requirements: []
|
196
142
|
rubyforge_project:
|
197
|
-
rubygems_version: 2.5.
|
143
|
+
rubygems_version: 2.5.1
|
198
144
|
signing_key:
|
199
145
|
specification_version: 4
|
200
146
|
summary: Autoprefixer integration with Middleman
|
@@ -206,29 +152,30 @@ test_files:
|
|
206
152
|
- fixtures/adding-off-app/source/stylesheets/page.css
|
207
153
|
- fixtures/block-app/config.rb
|
208
154
|
- fixtures/block-app/source/index.html
|
209
|
-
- fixtures/block-app/source/stylesheets/page.
|
155
|
+
- fixtures/block-app/source/stylesheets/page.css
|
210
156
|
- fixtures/cascading-off-app/config.rb
|
211
157
|
- fixtures/cascading-off-app/source/index.html
|
212
|
-
- fixtures/cascading-off-app/source/stylesheets/page.
|
158
|
+
- fixtures/cascading-off-app/source/stylesheets/page.css
|
213
159
|
- fixtures/cascading-on-app/config.rb
|
214
160
|
- fixtures/cascading-on-app/source/index.html
|
215
|
-
- fixtures/cascading-on-app/source/stylesheets/page.
|
161
|
+
- fixtures/cascading-on-app/source/stylesheets/page.css
|
216
162
|
- fixtures/default-app/config.rb
|
217
163
|
- fixtures/default-app/source/index.html
|
218
|
-
- fixtures/default-app/source/stylesheets/page.
|
164
|
+
- fixtures/default-app/source/stylesheets/page.css
|
219
165
|
- fixtures/hash-app/config.rb
|
220
166
|
- fixtures/hash-app/source/index.html
|
221
167
|
- fixtures/hash-app/source/stylesheets/_link.sass
|
222
|
-
- fixtures/hash-app/source/stylesheets/page.scss
|
168
|
+
- fixtures/hash-app/source/stylesheets/page.css.scss
|
223
169
|
- fixtures/ignore-app/config.rb
|
224
170
|
- fixtures/ignore-app/source/index.html
|
225
|
-
- fixtures/ignore-app/source/stylesheets/nope.
|
226
|
-
- fixtures/ignore-app/source/stylesheets/yep.
|
171
|
+
- fixtures/ignore-app/source/stylesheets/nope.css
|
172
|
+
- fixtures/ignore-app/source/stylesheets/yep-1.css
|
173
|
+
- fixtures/ignore-app/source/stylesheets/yep-2.css
|
227
174
|
- fixtures/inline-app/config.rb
|
228
175
|
- fixtures/inline-app/source/index.html
|
229
176
|
- fixtures/proxy-app/config.rb
|
230
177
|
- fixtures/proxy-app/source/index.html
|
231
|
-
- fixtures/proxy-app/source/stylesheets/page.
|
178
|
+
- fixtures/proxy-app/source/stylesheets/page.css
|
232
179
|
- fixtures/removing-off-app/config.rb
|
233
180
|
- fixtures/removing-off-app/source/index.html
|
234
181
|
- fixtures/removing-off-app/source/stylesheets/page.css
|