autoprefixer-rails 7.1.2.5 → 7.1.2.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/autoprefixer-rails/processor.rb +6 -2
- data/lib/autoprefixer-rails/version.rb +1 -1
- data/spec/app/{browserslist → .browserslistrc} +0 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: baa57bc601710f28fe02ebb2b125108d143046ff
|
4
|
+
data.tar.gz: b91eed14dab917e53d640df339bb7a549922c9f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d55c619dd4110fce323db1206444b30d237323c55e17cf4f10d5aad11b96bcf7114c1d96b0f923ba5f7cce425369e89d6fc9ae47cc051b87b6b60117657d5022
|
7
|
+
data.tar.gz: 1704be945178ce163e583f6463c7ad5a066a73feb897aba2b267e72b74d63fbf9465b8d561191f536859fdd49f3fc97046b4211816b98f0c8111f678898466e5
|
data/CHANGELOG.md
CHANGED
@@ -118,8 +118,12 @@ module AutoprefixerRails
|
|
118
118
|
path = Pathname(file).expand_path
|
119
119
|
|
120
120
|
while path.parent != path
|
121
|
-
|
122
|
-
return
|
121
|
+
config1 = path.join('browserslist')
|
122
|
+
return config1.read if config1.exist? and not config1.directory?
|
123
|
+
|
124
|
+
config2 = path.join('.browserslistrc')
|
125
|
+
return config2.read if config2.exist? and not config1.directory?
|
126
|
+
|
123
127
|
path = path.parent
|
124
128
|
end
|
125
129
|
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: autoprefixer-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.1.2.
|
4
|
+
version: 7.1.2.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrey Sitnik
|
@@ -107,6 +107,7 @@ files:
|
|
107
107
|
- lib/rake/autoprefixer_tasks.rb
|
108
108
|
- mini_racer.gemfile
|
109
109
|
- shared.gemfile
|
110
|
+
- spec/app/.browserslistrc
|
110
111
|
- spec/app/.gitignore
|
111
112
|
- spec/app/Rakefile
|
112
113
|
- spec/app/app/assets/config/manifest.js
|
@@ -117,7 +118,6 @@ files:
|
|
117
118
|
- spec/app/app/assets/stylesheets/wrong.css
|
118
119
|
- spec/app/app/controllers/application_controller.rb
|
119
120
|
- spec/app/app/controllers/css_controller.rb
|
120
|
-
- spec/app/browserslist
|
121
121
|
- spec/app/config.ru
|
122
122
|
- spec/app/config/application.rb
|
123
123
|
- spec/app/config/autoprefixer.yml
|