middleman-autoprefixer 2.10.1 → 3.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/.devcontainer/Dockerfile +20 -0
- data/.devcontainer/devcontainer.json +33 -0
- data/.travis.yml +20 -11
- data/CHANGELOG.md +6 -0
- data/Gemfile +6 -8
- data/fixtures/adding-off-app/source/index.html +0 -0
- data/fixtures/block-app/source/index.html +0 -0
- data/fixtures/cascading-off-app/source/index.html +0 -0
- data/fixtures/cascading-on-app/source/index.html +0 -0
- data/fixtures/hash-app/source/index.html +0 -0
- data/fixtures/ignore-app/source/index.html +0 -0
- data/fixtures/removing-off-app/source/index.html +0 -0
- data/lib/middleman-autoprefixer/version.rb +1 -1
- data/middleman-autoprefixer.gemspec +3 -5
- metadata +11 -73
- data/Gemfile3 +0 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5b536706bab3e888b51ebff5fcf0d1292df2e21f206baadc1d6ac433aecb93f5
|
4
|
+
data.tar.gz: 65c87c6e798e799d92ea29fd6fb1753ab42392714baa07e341fa7ce83d30e189
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b343146dd2f14669ddd45f8f8a22ab8b0663624321c8742e82b79c92f92353bbf8141db940c18282454aa05e17db5ad02cb7513c5c4666b89ccd4a9281a4b4d2
|
7
|
+
data.tar.gz: 327444b6b64a1d29d36e34308a3e8df41b72107f7c4d1d632a00187199a504b5b70de9ce269ce5f6ccf4f7472e2f0c1643e83483fa14f1ca80c076ffac9cb1bb
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.145.1/containers/ruby/.devcontainer/base.Dockerfile
|
2
|
+
|
3
|
+
# [Choice] Ruby version: 2, 2.7, 2.6, 2.5
|
4
|
+
ARG VARIANT="2"
|
5
|
+
FROM mcr.microsoft.com/vscode/devcontainers/ruby:0-${VARIANT}
|
6
|
+
|
7
|
+
# [Option] Install Node.js
|
8
|
+
ARG INSTALL_NODE="true"
|
9
|
+
ARG NODE_VERSION="lts/*"
|
10
|
+
RUN if [ "${INSTALL_NODE}" = "true" ]; then su vscode -c "source /usr/local/share/nvm/nvm.sh && nvm install ${NODE_VERSION} 2>&1"; fi
|
11
|
+
|
12
|
+
# [Optional] Uncomment this section to install additional OS packages.
|
13
|
+
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
14
|
+
# && apt-get -y install --no-install-recommends <your-package-list-here>
|
15
|
+
|
16
|
+
# [Optional] Uncomment this line to install additional gems.
|
17
|
+
# RUN gem install <your-gem-names-here>
|
18
|
+
|
19
|
+
# [Optional] Uncomment this line to install global node packages.
|
20
|
+
# RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && npm install -g <your-package-here>" 2>&1
|
@@ -0,0 +1,33 @@
|
|
1
|
+
{
|
2
|
+
"name": "Ruby",
|
3
|
+
"build": {
|
4
|
+
"dockerfile": "Dockerfile",
|
5
|
+
"args": {
|
6
|
+
// Update 'VARIANT' to pick a Ruby version: 2, 2.7, 2.6, 2.5
|
7
|
+
"VARIANT": "2",
|
8
|
+
// Options
|
9
|
+
"INSTALL_NODE": "true",
|
10
|
+
"NODE_VERSION": "lts/*"
|
11
|
+
}
|
12
|
+
},
|
13
|
+
|
14
|
+
// Set *default* container specific settings.json values on container create.
|
15
|
+
"settings": {
|
16
|
+
"terminal.integrated.shell.linux": "/bin/bash"
|
17
|
+
},
|
18
|
+
|
19
|
+
// Add the IDs of extensions you want installed when the container is created.
|
20
|
+
"extensions": [
|
21
|
+
"rebornix.Ruby"
|
22
|
+
]
|
23
|
+
|
24
|
+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
25
|
+
// "forwardPorts": [],
|
26
|
+
|
27
|
+
// Use 'postCreateCommand' to run commands after the container is created.
|
28
|
+
// "postCreateCommand": "ruby --version",
|
29
|
+
|
30
|
+
// Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root.
|
31
|
+
// "remoteUser": "vscode"
|
32
|
+
|
33
|
+
}
|
data/.travis.yml
CHANGED
@@ -1,16 +1,25 @@
|
|
1
1
|
language: ruby
|
2
|
-
rvm:
|
3
|
-
- 2.4.1
|
4
|
-
- 2.3.4
|
5
|
-
- 2.2.7
|
6
|
-
gemfile:
|
7
|
-
- Gemfile
|
8
|
-
- Gemfile3
|
9
|
-
script:
|
10
|
-
- bundle exec rake test
|
11
|
-
env:
|
12
|
-
- RUBYOPT=W0
|
13
2
|
sudo: false
|
14
3
|
cache: bundler
|
4
|
+
rvm:
|
5
|
+
- ruby-head
|
6
|
+
- 2.7.0
|
7
|
+
- 2.6.0
|
8
|
+
- 2.5.3
|
9
|
+
- 2.4.5
|
10
|
+
- 2.3.8
|
11
|
+
os:
|
12
|
+
- linux
|
13
|
+
before_install:
|
14
|
+
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
|
15
|
+
- gem install bundler -v '< 2'
|
16
|
+
- nvm install 10
|
15
17
|
matrix:
|
16
18
|
fast_finish: true
|
19
|
+
allow_failures:
|
20
|
+
- rvm: ruby-head
|
21
|
+
env:
|
22
|
+
global:
|
23
|
+
- TEST=true
|
24
|
+
script:
|
25
|
+
- bundle exec rake test
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
@@ -2,12 +2,10 @@ source 'https://rubygems.org'
|
|
2
2
|
|
3
3
|
gemspec
|
4
4
|
|
5
|
-
|
6
|
-
gem 'middleman', '>= 4.0.0'
|
7
|
-
gem 'middleman-sprockets', '>= 4.0.0'
|
5
|
+
gem 'middleman', '>= 4.0.0'
|
8
6
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
7
|
+
gem 'rake', '~> 10.3', require: false
|
8
|
+
gem 'capybara', '~> 2.5.0', require: false
|
9
|
+
gem 'cucumber', '~> 2.0', require: false
|
10
|
+
gem 'aruba', '~> 0.7.4', require: false
|
11
|
+
gem 'coveralls', '~> 0.8', require: false
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -15,10 +15,8 @@ Gem::Specification.new do |spec|
|
|
15
15
|
spec.files = `git ls-files`.split($/)
|
16
16
|
spec.test_files = `git ls-files -- {features,fixtures}/*`.split($/)
|
17
17
|
spec.require_paths = ['lib']
|
18
|
+
spec.required_ruby_version = '>= 2.2.0'
|
18
19
|
|
19
|
-
spec.add_runtime_dependency 'middleman-core', '>=
|
20
|
-
spec.add_runtime_dependency 'autoprefixer-rails', '~>
|
21
|
-
|
22
|
-
spec.add_development_dependency 'bundler', '>= 1.14'
|
23
|
-
spec.add_development_dependency 'rake', '>= 10.3'
|
20
|
+
spec.add_runtime_dependency 'middleman-core', '>= 4.0.0'
|
21
|
+
spec.add_runtime_dependency 'autoprefixer-rails', '~> 10.0'
|
24
22
|
end
|
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:
|
4
|
+
version: 3.0.0
|
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:
|
12
|
+
date: 2021-05-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: middleman-core
|
@@ -17,56 +17,28 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - ">="
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version:
|
20
|
+
version: 4.0.0
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - ">="
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version:
|
27
|
+
version: 4.0.0
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: autoprefixer-rails
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
31
31
|
requirements:
|
32
32
|
- - "~>"
|
33
33
|
- !ruby/object:Gem::Version
|
34
|
-
version: '
|
34
|
+
version: '10.0'
|
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: '
|
42
|
-
- !ruby/object:Gem::Dependency
|
43
|
-
name: bundler
|
44
|
-
requirement: !ruby/object:Gem::Requirement
|
45
|
-
requirements:
|
46
|
-
- - ">="
|
47
|
-
- !ruby/object:Gem::Version
|
48
|
-
version: '1.14'
|
49
|
-
type: :development
|
50
|
-
prerelease: false
|
51
|
-
version_requirements: !ruby/object:Gem::Requirement
|
52
|
-
requirements:
|
53
|
-
- - ">="
|
54
|
-
- !ruby/object:Gem::Version
|
55
|
-
version: '1.14'
|
56
|
-
- !ruby/object:Gem::Dependency
|
57
|
-
name: rake
|
58
|
-
requirement: !ruby/object:Gem::Requirement
|
59
|
-
requirements:
|
60
|
-
- - ">="
|
61
|
-
- !ruby/object:Gem::Version
|
62
|
-
version: '10.3'
|
63
|
-
type: :development
|
64
|
-
prerelease: false
|
65
|
-
version_requirements: !ruby/object:Gem::Requirement
|
66
|
-
requirements:
|
67
|
-
- - ">="
|
68
|
-
- !ruby/object:Gem::Version
|
69
|
-
version: '10.3'
|
41
|
+
version: '10.0'
|
70
42
|
description:
|
71
43
|
email:
|
72
44
|
- dominik@porada.co
|
@@ -75,11 +47,12 @@ executables: []
|
|
75
47
|
extensions: []
|
76
48
|
extra_rdoc_files: []
|
77
49
|
files:
|
50
|
+
- ".devcontainer/Dockerfile"
|
51
|
+
- ".devcontainer/devcontainer.json"
|
78
52
|
- ".gitignore"
|
79
53
|
- ".travis.yml"
|
80
54
|
- CHANGELOG.md
|
81
55
|
- Gemfile
|
82
|
-
- Gemfile3
|
83
56
|
- README.md
|
84
57
|
- Rakefile
|
85
58
|
- features/autoprefixer.feature
|
@@ -132,50 +105,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
132
105
|
requirements:
|
133
106
|
- - ">="
|
134
107
|
- !ruby/object:Gem::Version
|
135
|
-
version:
|
108
|
+
version: 2.2.0
|
136
109
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
137
110
|
requirements:
|
138
111
|
- - ">="
|
139
112
|
- !ruby/object:Gem::Version
|
140
113
|
version: '0'
|
141
114
|
requirements: []
|
142
|
-
|
143
|
-
rubygems_version: 2.7.8
|
115
|
+
rubygems_version: 3.1.2
|
144
116
|
signing_key:
|
145
117
|
specification_version: 4
|
146
118
|
summary: Automatically vendor-prefix stylesheets served by Middleman.
|
147
|
-
test_files:
|
148
|
-
- features/autoprefixer.feature
|
149
|
-
- features/support/env.rb
|
150
|
-
- fixtures/adding-off-app/config.rb
|
151
|
-
- fixtures/adding-off-app/source/index.html
|
152
|
-
- fixtures/adding-off-app/source/stylesheets/page.css
|
153
|
-
- fixtures/block-app/config.rb
|
154
|
-
- fixtures/block-app/source/index.html
|
155
|
-
- fixtures/block-app/source/stylesheets/page.css
|
156
|
-
- fixtures/cascading-off-app/config.rb
|
157
|
-
- fixtures/cascading-off-app/source/index.html
|
158
|
-
- fixtures/cascading-off-app/source/stylesheets/page.css
|
159
|
-
- fixtures/cascading-on-app/config.rb
|
160
|
-
- fixtures/cascading-on-app/source/index.html
|
161
|
-
- fixtures/cascading-on-app/source/stylesheets/page.css
|
162
|
-
- fixtures/default-app/config.rb
|
163
|
-
- fixtures/default-app/source/index.html
|
164
|
-
- fixtures/default-app/source/stylesheets/page.css
|
165
|
-
- fixtures/hash-app/config.rb
|
166
|
-
- fixtures/hash-app/source/index.html
|
167
|
-
- fixtures/hash-app/source/stylesheets/_link.sass
|
168
|
-
- fixtures/hash-app/source/stylesheets/page.css.scss
|
169
|
-
- fixtures/ignore-app/config.rb
|
170
|
-
- fixtures/ignore-app/source/index.html
|
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
|
174
|
-
- fixtures/inline-app/config.rb
|
175
|
-
- fixtures/inline-app/source/index.html
|
176
|
-
- fixtures/proxy-app/config.rb
|
177
|
-
- fixtures/proxy-app/source/index.html
|
178
|
-
- fixtures/proxy-app/source/stylesheets/page.css
|
179
|
-
- fixtures/removing-off-app/config.rb
|
180
|
-
- fixtures/removing-off-app/source/index.html
|
181
|
-
- fixtures/removing-off-app/source/stylesheets/page.css
|
119
|
+
test_files: []
|