autoprefixer-rails 6.0.1 → 6.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6dd87849a21bdb42c974742a0313a77691fa149e
4
- data.tar.gz: 0bab7ecae5d23eb57662c3691349b2688c1b12e9
3
+ metadata.gz: 3ecdafa17b8b28f29a5c2210f363d869917d8fdf
4
+ data.tar.gz: ddd384e601723d5e748c783692cd855f4c7fd9b5
5
5
  SHA512:
6
- metadata.gz: 76452dc11f615d12eb889d9c613fe3b5e37203102faa14af090e597f6bdd405d3aef6977f60126528297334cf30adccb0a53babc3edb07e054c7a47cfd1225cc
7
- data.tar.gz: abafcf6b909a1d6ed608978455b31e0af8be047e51e81171f9b04e629feab7264630c3667c87836c987d093800918c0d23e3e6e5d8e6dacf4f60e0cffb598b9e
6
+ metadata.gz: 6407067913f372905009cb2030b2fd8a3d66d47522ddfb5a54011d1fd854c3903061286c6c7221973ad6c217a33c0dac2d4bb21b1a513c94f87ad3f49f5a3a49
7
+ data.tar.gz: 774d0ee66e920592dd706d5969322647473e0123d2a0601efccd1101c417a4b1f625452d4f2ce133de5dff846df8a7777ea0e6861062f81665993d1cfa99eb23
@@ -1,3 +1,6 @@
1
+ ## 6.0.2
2
+ * Remove unnecessary `-khtml-` prefix too.
3
+
1
4
  ## 6.0.1
2
5
  * Fix `cross-fade()` support (by 一丝).
3
6
 
@@ -1,3 +1,3 @@
1
1
  module AutoprefixerRails
2
- VERSION = '6.0.1'.freeze unless defined? AutoprefixerRails::VERSION
2
+ VERSION = '6.0.2'.freeze unless defined? AutoprefixerRails::VERSION
3
3
  end
@@ -81,7 +81,7 @@
81
81
 
82
82
  feature(require('caniuse-db/features-json/border-radius'), function(browsers) {
83
83
  return prefix('border-radius', 'border-top-left-radius', 'border-top-right-radius', 'border-bottom-right-radius', 'border-bottom-left-radius', {
84
- mistakes: ['-ms-', '-o-'],
84
+ mistakes: ['-khtml-', '-ms-', '-o-'],
85
85
  transition: true,
86
86
  browsers: browsers
87
87
  });
@@ -89,6 +89,7 @@
89
89
 
90
90
  feature(require('caniuse-db/features-json/css-boxshadow'), function(browsers) {
91
91
  return prefix('box-shadow', {
92
+ mistakes: ['-khtml-'],
92
93
  transition: true,
93
94
  browsers: browsers
94
95
  });
@@ -96,14 +97,14 @@
96
97
 
97
98
  feature(require('caniuse-db/features-json/css-animation'), function(browsers) {
98
99
  return prefix('animation', 'animation-name', 'animation-duration', 'animation-delay', 'animation-direction', 'animation-fill-mode', 'animation-iteration-count', 'animation-play-state', 'animation-timing-function', '@keyframes', {
99
- mistakes: ['-ms-'],
100
+ mistakes: ['-khtml-', '-ms-'],
100
101
  browsers: browsers
101
102
  });
102
103
  });
103
104
 
104
105
  feature(require('caniuse-db/features-json/css-transitions'), function(browsers) {
105
106
  return prefix('transition', 'transition-property', 'transition-duration', 'transition-delay', 'transition-timing-function', {
106
- mistakes: ['-ms-'],
107
+ mistakes: ['-khtml-', '-ms-'],
107
108
  browsers: browsers
108
109
  });
109
110
  });
@@ -197,6 +198,7 @@
197
198
 
198
199
  feature(require('caniuse-db/features-json/user-select-none'), function(browsers) {
199
200
  return prefix('user-select', {
201
+ mistakes: ['-khtml-'],
200
202
  browsers: browsers
201
203
  });
202
204
  });
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autoprefixer-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.1
4
+ version: 6.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrey Sitnik
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-06 00:00:00.000000000 Z
11
+ date: 2015-09-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: execjs