autoprefixer-rails 2.0.2.20140628 → 2.1.0.20140628

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: 660a1d091e75b2281a4cc5140e47742be2c521eb
4
- data.tar.gz: 5be647fe6f03e32561e783fc2d30d12706949202
3
+ metadata.gz: 0710d074790172d79dac2c0fe244f7150b2b6c5b
4
+ data.tar.gz: 03bb74f378b71906d8b1591ca0a4d8d6620e4eb0
5
5
  SHA512:
6
- metadata.gz: ee5068532bef5ad86f5d8ad4bf1ea214bc5f9ca9a57a3966c472ca82b0c1ee61f142560f3d175d340ff892136d99c5481b544ac50219508f59d31485187470ed
7
- data.tar.gz: fdb79bda51de3c4f9d42cc0939f0125d33008eee8c047c512beeb8c99510950b9f9b0921b6edf015c8744fbaba7427012dee93fd00e70925a4591772923c36c1
6
+ metadata.gz: 59145f3e5c9a072fb8a6cdafc4015bfd48f98403ca4e0c2c19f86a4f5f58cfb59bea0bd76bd50d8820c85759c7088b9b88766872e0bb638b74a0d26861142c79
7
+ data.tar.gz: e28c983039107368543b03a2a7a9d7beed34a9c3a5387faa9296390b2558587cdfc9cd888248bf1dd7b4af9ea42775dc4d58d2506f9166c388f0b4402df569ad
@@ -1,3 +1,7 @@
1
+ ## 2.1 “Eleftheria i thanatos”
2
+ * Add support for `clip-path` and `mask` properties.
3
+ * Return `-webkit-` prefix to `filter` with SVG URI.
4
+
1
5
  ## 2.0.2
2
6
  * Add readable names for new browsers from 2.0 release.
3
7
  * Don’t add `-webkit-` prefix to `filter` with SVG URI.
@@ -1,3 +1,3 @@
1
1
  module AutoprefixerRails
2
- VERSION = '2.0.2.20140628'.freeze unless defined? AutoprefixerRails::VERSION
2
+ VERSION = '2.1.0.20140628'.freeze unless defined? AutoprefixerRails::VERSION
3
3
  end
@@ -362,9 +362,15 @@
362
362
  });
363
363
  });
364
364
 
365
+ feature(_dereq_('caniuse-db/features-json/css-masks'), function(browsers) {
366
+ return prefix('clip-path', 'mask', 'mask-clip', 'mask-composite', 'mask-image', 'mask-origin', 'mask-position', 'mask-repeat', 'mask-size', {
367
+ browsers: browsers
368
+ });
369
+ });
370
+
365
371
  }).call(this);
366
372
 
367
- },{"./browsers":1,"caniuse-db/features-json/background-img-opts":47,"caniuse-db/features-json/border-image":48,"caniuse-db/features-json/border-radius":49,"caniuse-db/features-json/calc":50,"caniuse-db/features-json/css-animation":51,"caniuse-db/features-json/css-boxshadow":52,"caniuse-db/features-json/css-filters":53,"caniuse-db/features-json/css-gradients":54,"caniuse-db/features-json/css-hyphens":55,"caniuse-db/features-json/css-placeholder":56,"caniuse-db/features-json/css-selection":57,"caniuse-db/features-json/css-sticky":58,"caniuse-db/features-json/css-transitions":59,"caniuse-db/features-json/css3-boxsizing":60,"caniuse-db/features-json/css3-cursors-newer":61,"caniuse-db/features-json/css3-tabsize":62,"caniuse-db/features-json/flexbox":63,"caniuse-db/features-json/font-feature":64,"caniuse-db/features-json/fullscreen":65,"caniuse-db/features-json/intrinsic-width":66,"caniuse-db/features-json/multicolumn":67,"caniuse-db/features-json/pointer":68,"caniuse-db/features-json/text-decoration":69,"caniuse-db/features-json/text-size-adjust":70,"caniuse-db/features-json/transforms2d":71,"caniuse-db/features-json/transforms3d":72,"caniuse-db/features-json/user-select-none":73}],3:[function(_dereq_,module,exports){
373
+ },{"./browsers":1,"caniuse-db/features-json/background-img-opts":47,"caniuse-db/features-json/border-image":48,"caniuse-db/features-json/border-radius":49,"caniuse-db/features-json/calc":50,"caniuse-db/features-json/css-animation":51,"caniuse-db/features-json/css-boxshadow":52,"caniuse-db/features-json/css-filters":53,"caniuse-db/features-json/css-gradients":54,"caniuse-db/features-json/css-hyphens":55,"caniuse-db/features-json/css-masks":56,"caniuse-db/features-json/css-placeholder":57,"caniuse-db/features-json/css-selection":58,"caniuse-db/features-json/css-sticky":59,"caniuse-db/features-json/css-transitions":60,"caniuse-db/features-json/css3-boxsizing":61,"caniuse-db/features-json/css3-cursors-newer":62,"caniuse-db/features-json/css3-tabsize":63,"caniuse-db/features-json/flexbox":64,"caniuse-db/features-json/font-feature":65,"caniuse-db/features-json/fullscreen":66,"caniuse-db/features-json/intrinsic-width":67,"caniuse-db/features-json/multicolumn":68,"caniuse-db/features-json/pointer":69,"caniuse-db/features-json/text-decoration":70,"caniuse-db/features-json/text-size-adjust":71,"caniuse-db/features-json/transforms2d":72,"caniuse-db/features-json/transforms3d":73,"caniuse-db/features-json/user-select-none":74}],3:[function(_dereq_,module,exports){
368
374
  (function() {
369
375
  var Autoprefixer, Browsers, Prefixes, autoprefixer, infoCache, isPlainObject, postcss,
370
376
  __slice = [].slice,
@@ -475,7 +481,7 @@
475
481
 
476
482
  }).call(this);
477
483
 
478
- },{"../data/browsers":1,"../data/prefixes":2,"./browsers":4,"./info":32,"./prefixes":37,"postcss":83}],4:[function(_dereq_,module,exports){
484
+ },{"../data/browsers":1,"../data/prefixes":2,"./browsers":4,"./info":32,"./prefixes":37,"postcss":84}],4:[function(_dereq_,module,exports){
479
485
  (function() {
480
486
  var Browsers, utils;
481
487
 
@@ -839,7 +845,7 @@
839
845
 
840
846
  }).call(this);
841
847
 
842
- },{"./browsers":4,"./prefixer":36,"./utils":41,"postcss/lib/vendor":90}],6:[function(_dereq_,module,exports){
848
+ },{"./browsers":4,"./prefixer":36,"./utils":41,"postcss/lib/vendor":91}],6:[function(_dereq_,module,exports){
843
849
  (function() {
844
850
  var AlignContent, Declaration, flexSpec,
845
851
  __hasProp = {}.hasOwnProperty,
@@ -1322,7 +1328,7 @@
1322
1328
  Filter.prototype.check = function(decl) {
1323
1329
  var v;
1324
1330
  v = decl.value;
1325
- return v.toLowerCase().indexOf('alpha(') === -1 && v.indexOf('DXImageTransform.Microsoft') === -1 && v.indexOf('url(') === -1;
1331
+ return v.toLowerCase().indexOf('alpha(') === -1 && v.indexOf('DXImageTransform.Microsoft') === -1;
1326
1332
  };
1327
1333
 
1328
1334
  return Filter;
@@ -1942,7 +1948,7 @@
1942
1948
 
1943
1949
  }).call(this);
1944
1950
 
1945
- },{"../old-value":35,"../utils":41,"../value":42,"postcss/lib/list":79}],26:[function(_dereq_,module,exports){
1951
+ },{"../old-value":35,"../utils":41,"../value":42,"postcss/lib/list":80}],26:[function(_dereq_,module,exports){
1946
1952
  (function() {
1947
1953
  var Declaration, JustifyContent, flexSpec,
1948
1954
  __hasProp = {}.hasOwnProperty,
@@ -2611,7 +2617,7 @@
2611
2617
 
2612
2618
  }).call(this);
2613
2619
 
2614
- },{"./browsers":4,"./utils":41,"postcss/lib/vendor":90}],37:[function(_dereq_,module,exports){
2620
+ },{"./browsers":4,"./utils":41,"postcss/lib/vendor":91}],37:[function(_dereq_,module,exports){
2615
2621
  (function() {
2616
2622
  var Browsers, Declaration, Keyframes, Prefixes, Processor, Selector, Supports, Value, declsCache, utils, vendor;
2617
2623
 
@@ -2965,7 +2971,7 @@
2965
2971
 
2966
2972
  }).call(this);
2967
2973
 
2968
- },{"./browsers":4,"./declaration":5,"./hacks/align-content":6,"./hacks/align-items":7,"./hacks/align-self":8,"./hacks/background-size":9,"./hacks/border-image":10,"./hacks/border-radius":11,"./hacks/break-inside":12,"./hacks/display-flex":13,"./hacks/fill-available":14,"./hacks/filter":15,"./hacks/flex":23,"./hacks/flex-basis":16,"./hacks/flex-direction":17,"./hacks/flex-flow":18,"./hacks/flex-grow":19,"./hacks/flex-shrink":20,"./hacks/flex-wrap":22,"./hacks/fullscreen":24,"./hacks/gradient":25,"./hacks/justify-content":26,"./hacks/order":27,"./hacks/placeholder":28,"./hacks/transform-decl":29,"./hacks/transform-value":30,"./hacks/transition":31,"./keyframes":33,"./processor":38,"./selector":39,"./supports":40,"./utils":41,"./value":42,"postcss/lib/vendor":90}],38:[function(_dereq_,module,exports){
2974
+ },{"./browsers":4,"./declaration":5,"./hacks/align-content":6,"./hacks/align-items":7,"./hacks/align-self":8,"./hacks/background-size":9,"./hacks/border-image":10,"./hacks/border-radius":11,"./hacks/break-inside":12,"./hacks/display-flex":13,"./hacks/fill-available":14,"./hacks/filter":15,"./hacks/flex":23,"./hacks/flex-basis":16,"./hacks/flex-direction":17,"./hacks/flex-flow":18,"./hacks/flex-grow":19,"./hacks/flex-shrink":20,"./hacks/flex-wrap":22,"./hacks/fullscreen":24,"./hacks/gradient":25,"./hacks/justify-content":26,"./hacks/order":27,"./hacks/placeholder":28,"./hacks/transform-decl":29,"./hacks/transform-value":30,"./hacks/transition":31,"./keyframes":33,"./processor":38,"./selector":39,"./supports":40,"./utils":41,"./value":42,"postcss/lib/vendor":91}],38:[function(_dereq_,module,exports){
2969
2975
  (function() {
2970
2976
  var Processor, Value, utils, vendor;
2971
2977
 
@@ -3104,7 +3110,7 @@
3104
3110
 
3105
3111
  }).call(this);
3106
3112
 
3107
- },{"./utils":41,"./value":42,"postcss/lib/vendor":90}],39:[function(_dereq_,module,exports){
3113
+ },{"./utils":41,"./value":42,"postcss/lib/vendor":91}],39:[function(_dereq_,module,exports){
3108
3114
  (function() {
3109
3115
  var Browsers, OldSelector, Prefixer, Selector, utils,
3110
3116
  __hasProp = {}.hasOwnProperty,
@@ -3340,7 +3346,7 @@
3340
3346
 
3341
3347
  }).call(this);
3342
3348
 
3343
- },{"./prefixes":37,"./utils":41,"./value":42,"postcss":83,"postcss/lib/list":79}],41:[function(_dereq_,module,exports){
3349
+ },{"./prefixes":37,"./utils":41,"./value":42,"postcss":84,"postcss/lib/list":80}],41:[function(_dereq_,module,exports){
3344
3350
  (function() {
3345
3351
  module.exports = {
3346
3352
  error: function(text) {
@@ -3484,7 +3490,7 @@
3484
3490
 
3485
3491
  }).call(this);
3486
3492
 
3487
- },{"./old-value":35,"./prefixer":36,"./utils":41,"postcss/lib/vendor":90}],43:[function(_dereq_,module,exports){
3493
+ },{"./old-value":35,"./prefixer":36,"./utils":41,"postcss/lib/vendor":91}],43:[function(_dereq_,module,exports){
3488
3494
 
3489
3495
  },{}],44:[function(_dereq_,module,exports){
3490
3496
  (function (process){
@@ -5604,6 +5610,203 @@ module.exports={
5604
5610
  "shown":true
5605
5611
  }
5606
5612
  },{}],56:[function(_dereq_,module,exports){
5613
+ module.exports={
5614
+ "title":"CSS Masks",
5615
+ "description":"Method of displaying part of an element, using a selected image as a mask",
5616
+ "spec":"http://www.w3.org/TR/css-masking/",
5617
+ "status":"wd",
5618
+ "links":[
5619
+ {
5620
+ "url":"http://www.html5rocks.com/en/tutorials/masking/adobe/",
5621
+ "title":"HTML5 Rocks article"
5622
+ },
5623
+ {
5624
+ "url":"http://docs.webplatform.org/wiki/css/properties/mask",
5625
+ "title":"WebPlatform Docs"
5626
+ },
5627
+ {
5628
+ "url":"http://thenittygritty.co/css-masking",
5629
+ "title":"Detailed blog post"
5630
+ }
5631
+ ],
5632
+ "bugs":[
5633
+
5634
+ ],
5635
+ "categories":[
5636
+ "CSS"
5637
+ ],
5638
+ "stats":{
5639
+ "ie":{
5640
+ "5.5":"n",
5641
+ "6":"n",
5642
+ "7":"n",
5643
+ "8":"n",
5644
+ "9":"n",
5645
+ "10":"n",
5646
+ "11":"n"
5647
+ },
5648
+ "firefox":{
5649
+ "2":"n",
5650
+ "3":"n",
5651
+ "3.5":"a",
5652
+ "3.6":"a",
5653
+ "4":"a",
5654
+ "5":"a",
5655
+ "6":"a",
5656
+ "7":"a",
5657
+ "8":"a",
5658
+ "9":"a",
5659
+ "10":"a",
5660
+ "11":"a",
5661
+ "12":"a",
5662
+ "13":"a",
5663
+ "14":"a",
5664
+ "15":"a",
5665
+ "16":"a",
5666
+ "17":"a",
5667
+ "18":"a",
5668
+ "19":"a",
5669
+ "20":"a",
5670
+ "21":"a",
5671
+ "22":"a",
5672
+ "23":"a",
5673
+ "24":"a",
5674
+ "25":"a",
5675
+ "26":"a",
5676
+ "27":"a",
5677
+ "28":"a",
5678
+ "29":"a",
5679
+ "30":"a",
5680
+ "31":"a",
5681
+ "32":"a",
5682
+ "33":"a"
5683
+ },
5684
+ "chrome":{
5685
+ "4":"a x",
5686
+ "5":"a x",
5687
+ "6":"a x",
5688
+ "7":"a x",
5689
+ "8":"a x",
5690
+ "9":"a x",
5691
+ "10":"a x",
5692
+ "11":"a x",
5693
+ "12":"a x",
5694
+ "13":"a x",
5695
+ "14":"a x",
5696
+ "15":"a x",
5697
+ "16":"a x",
5698
+ "17":"a x",
5699
+ "18":"a x",
5700
+ "19":"a x",
5701
+ "20":"a x",
5702
+ "21":"a x",
5703
+ "22":"a x",
5704
+ "23":"a x",
5705
+ "24":"a x",
5706
+ "25":"a x",
5707
+ "26":"a x",
5708
+ "27":"a x",
5709
+ "28":"a x",
5710
+ "29":"a x",
5711
+ "30":"a x",
5712
+ "31":"a x",
5713
+ "32":"a x",
5714
+ "33":"a x",
5715
+ "34":"a x",
5716
+ "35":"a x",
5717
+ "36":"a x",
5718
+ "37":"a x",
5719
+ "38":"a x"
5720
+ },
5721
+ "safari":{
5722
+ "3.1":"n",
5723
+ "3.2":"n",
5724
+ "4":"a x",
5725
+ "5":"a x",
5726
+ "5.1":"a x",
5727
+ "6":"a x",
5728
+ "6.1":"a x",
5729
+ "7":"a x",
5730
+ "8":"a x"
5731
+ },
5732
+ "opera":{
5733
+ "9":"n",
5734
+ "9.5-9.6":"n",
5735
+ "10.0-10.1":"n",
5736
+ "10.5":"n",
5737
+ "10.6":"n",
5738
+ "11":"n",
5739
+ "11.1":"n",
5740
+ "11.5":"n",
5741
+ "11.6":"n",
5742
+ "12":"n",
5743
+ "12.1":"n",
5744
+ "15":"a x",
5745
+ "16":"a x",
5746
+ "17":"a x",
5747
+ "18":"a x",
5748
+ "19":"a x",
5749
+ "20":"a x",
5750
+ "21":"a x",
5751
+ "22":"a x",
5752
+ "23":"a x",
5753
+ "24":"a x"
5754
+ },
5755
+ "ios_saf":{
5756
+ "3.2":"a x",
5757
+ "4.0-4.1":"a x",
5758
+ "4.2-4.3":"a x",
5759
+ "5.0-5.1":"a x",
5760
+ "6.0-6.1":"a x",
5761
+ "7.0-7.1":"a x",
5762
+ "8":"a x"
5763
+ },
5764
+ "op_mini":{
5765
+ "5.0-7.0":"n"
5766
+ },
5767
+ "android":{
5768
+ "2.1":"a x",
5769
+ "2.2":"a x",
5770
+ "2.3":"a x",
5771
+ "3":"a x",
5772
+ "4":"a x",
5773
+ "4.1":"a x",
5774
+ "4.2-4.3":"a x",
5775
+ "4.4":"a x",
5776
+ "4.4.3":"a x"
5777
+ },
5778
+ "bb":{
5779
+ "7":"a x",
5780
+ "10":"a x"
5781
+ },
5782
+ "op_mob":{
5783
+ "10":"n",
5784
+ "11":"n",
5785
+ "11.1":"n",
5786
+ "11.5":"n",
5787
+ "12":"n",
5788
+ "12.1":"n",
5789
+ "0":"a x"
5790
+ },
5791
+ "and_chr":{
5792
+ "0":"a x"
5793
+ },
5794
+ "and_ff":{
5795
+ "0":"a"
5796
+ },
5797
+ "ie_mob":{
5798
+ "10":"n"
5799
+ }
5800
+ },
5801
+ "notes":"Partial support in WebKit/Blink browsers refers to supporting the mask-image and mask-box-image properties, but lacks support for othe parts of the spec. Partial support in Firefox refers to only support for inline SVG mask elements i.e. mask: url(#foo).",
5802
+ "usage_perc_y":0,
5803
+ "usage_perc_a":72.11,
5804
+ "ucprefix":false,
5805
+ "parent":"",
5806
+ "keywords":"",
5807
+ "shown":true
5808
+ }
5809
+ },{}],57:[function(_dereq_,module,exports){
5607
5810
  module.exports={
5608
5811
  "title":":placeholder-shown CSS pseudo-class",
5609
5812
  "description":"The :placeholder-shown pseudo-class represents the placeholder contents of a form field with placeholder text.",
@@ -5800,7 +6003,7 @@ module.exports={
5800
6003
  "keywords":"::placeholder,placeholder",
5801
6004
  "shown":true
5802
6005
  }
5803
- },{}],57:[function(_dereq_,module,exports){
6006
+ },{}],58:[function(_dereq_,module,exports){
5804
6007
  module.exports={
5805
6008
  "title":"::selection CSS pseudo-element",
5806
6009
  "description":"The ::selection CSS pseudo-element applies rules to the portion of a document that has been highlighted (e.g., selected with the mouse or another pointing device) by the user.",
@@ -5995,7 +6198,7 @@ module.exports={
5995
6198
  "keywords":"::selection,selection",
5996
6199
  "shown":true
5997
6200
  }
5998
- },{}],58:[function(_dereq_,module,exports){
6201
+ },{}],59:[function(_dereq_,module,exports){
5999
6202
  module.exports={
6000
6203
  "title":"CSS position:sticky",
6001
6204
  "description":"Keeps elements positioned as \"fixed\" or \"relative\" depending on how it appears in the viewport. As a result the element is \"stuck\" when necessary while scrolling.",
@@ -6196,7 +6399,7 @@ module.exports={
6196
6399
  "keywords":"",
6197
6400
  "shown":true
6198
6401
  }
6199
- },{}],59:[function(_dereq_,module,exports){
6402
+ },{}],60:[function(_dereq_,module,exports){
6200
6403
  module.exports={
6201
6404
  "title":"CSS3 Transitions",
6202
6405
  "description":"Simple method of animating certain properties of an element",
@@ -6403,7 +6606,7 @@ module.exports={
6403
6606
  "keywords":"css transition",
6404
6607
  "shown":true
6405
6608
  }
6406
- },{}],60:[function(_dereq_,module,exports){
6609
+ },{}],61:[function(_dereq_,module,exports){
6407
6610
  module.exports={
6408
6611
  "title":"CSS3 Box-sizing",
6409
6612
  "description":"Method of specifying whether or not an element's borders and padding should be included in size units",
@@ -6616,7 +6819,7 @@ module.exports={
6616
6819
  "keywords":"border-box,content-box,padding-box",
6617
6820
  "shown":true
6618
6821
  }
6619
- },{}],61:[function(_dereq_,module,exports){
6822
+ },{}],62:[function(_dereq_,module,exports){
6620
6823
  module.exports={
6621
6824
  "title":"CSS3 Cursors (new values)",
6622
6825
  "description":"Support for zoom-in and zoom-out values for the CSS3 cursor property.",
@@ -6805,7 +7008,7 @@ module.exports={
6805
7008
  "keywords":"cursors, pointers",
6806
7009
  "shown":false
6807
7010
  }
6808
- },{}],62:[function(_dereq_,module,exports){
7011
+ },{}],63:[function(_dereq_,module,exports){
6809
7012
  module.exports={
6810
7013
  "title":"CSS3 tab-size",
6811
7014
  "description":"Method of customizing the width of the tab character. Only effective using 'white-space: pre' or 'white-space: pre-wrap'.",
@@ -6994,7 +7197,7 @@ module.exports={
6994
7197
  "keywords":"tab-size,tab-width",
6995
7198
  "shown":true
6996
7199
  }
6997
- },{}],63:[function(_dereq_,module,exports){
7200
+ },{}],64:[function(_dereq_,module,exports){
6998
7201
  module.exports={
6999
7202
  "title":"Flexible Box Layout Module",
7000
7203
  "description":"Method of positioning elements in horizontal or vertical stacks.",
@@ -7214,7 +7417,7 @@ module.exports={
7214
7417
  "keywords":"flex",
7215
7418
  "shown":true
7216
7419
  }
7217
- },{}],64:[function(_dereq_,module,exports){
7420
+ },{}],65:[function(_dereq_,module,exports){
7218
7421
  module.exports={
7219
7422
  "title":"Font feature settings",
7220
7423
  "description":"Method of applying advanced typographic and language-specific font features to supported OpenType fonts.",
@@ -7415,7 +7618,7 @@ module.exports={
7415
7618
  "keywords":"font-feature,font-feature-settings,kern,kerning,font-variant-alternates,ligatures,font-variant-ligatures",
7416
7619
  "shown":true
7417
7620
  }
7418
- },{}],65:[function(_dereq_,module,exports){
7621
+ },{}],66:[function(_dereq_,module,exports){
7419
7622
  module.exports={
7420
7623
  "title":"Full Screen API",
7421
7624
  "description":"API for allowing content (like a video or canvas element) to take up the entire screen.",
@@ -7618,7 +7821,7 @@ module.exports={
7618
7821
  "keywords":"full-screen",
7619
7822
  "shown":true
7620
7823
  }
7621
- },{}],66:[function(_dereq_,module,exports){
7824
+ },{}],67:[function(_dereq_,module,exports){
7622
7825
  module.exports={
7623
7826
  "title":"Intrinsic & Extrinsic Sizing",
7624
7827
  "description":"Allows for the heights and widths to be specified in intrinsic values using the fill-available, max-content, min-content, and fit-content properties.",
@@ -7807,7 +8010,7 @@ module.exports={
7807
8010
  "keywords":"fill-available,max-content,min-content,fit-content,contain-floats",
7808
8011
  "shown":true
7809
8012
  }
7810
- },{}],67:[function(_dereq_,module,exports){
8013
+ },{}],68:[function(_dereq_,module,exports){
7811
8014
  module.exports={
7812
8015
  "title":"CSS3 Multiple column layout",
7813
8016
  "description":"Method of flowing information in multiple columns",
@@ -8006,7 +8209,7 @@ module.exports={
8006
8209
  "keywords":"column-count",
8007
8210
  "shown":true
8008
8211
  }
8009
- },{}],68:[function(_dereq_,module,exports){
8212
+ },{}],69:[function(_dereq_,module,exports){
8010
8213
  module.exports={
8011
8214
  "title":"Pointer events",
8012
8215
  "description":"This specification integrates various inputs from mice, touchscreens, and pens, making separate implementations no longer necessary and authoring for cross-device pointers easier. Not to be mistaken with the unrelated \"pointer-events\" CSS property.",
@@ -8204,7 +8407,7 @@ module.exports={
8204
8407
  "keywords":"pointerdown,pointermove,pointerup,pointercancel,pointerover,pointerout,pointerenter,pointerleave",
8205
8408
  "shown":true
8206
8409
  }
8207
- },{}],69:[function(_dereq_,module,exports){
8410
+ },{}],70:[function(_dereq_,module,exports){
8208
8411
  module.exports={
8209
8412
  "title":"text-decoration styling",
8210
8413
  "description":"Method of defining the type, style and color of lines in the text-decoration property.",
@@ -8401,7 +8604,7 @@ module.exports={
8401
8604
  "keywords":"text-decoration-line,text-decoration-style,text-decoration-color",
8402
8605
  "shown":true
8403
8606
  }
8404
- },{}],70:[function(_dereq_,module,exports){
8607
+ },{}],71:[function(_dereq_,module,exports){
8405
8608
  module.exports={
8406
8609
  "title":"CSS text-size-adjust",
8407
8610
  "description":"On mobile devices, the text-size-adjust CSS property allows Web authors to control if and how the text-inflating algorithm is applied to the textual content of the element it is applied to.",
@@ -8595,7 +8798,7 @@ module.exports={
8595
8798
  "keywords":"",
8596
8799
  "shown":true
8597
8800
  }
8598
- },{}],71:[function(_dereq_,module,exports){
8801
+ },{}],72:[function(_dereq_,module,exports){
8599
8802
  module.exports={
8600
8803
  "title":"CSS3 Transforms",
8601
8804
  "description":"Method of transforming an element including rotating, scaling, etc.",
@@ -8816,7 +9019,7 @@ module.exports={
8816
9019
  "keywords":"transformation,translate,rotation,rotate,scale,css-transforms",
8817
9020
  "shown":true
8818
9021
  }
8819
- },{}],72:[function(_dereq_,module,exports){
9022
+ },{}],73:[function(_dereq_,module,exports){
8820
9023
  module.exports={
8821
9024
  "title":"CSS3 3D Transforms",
8822
9025
  "description":"Method of transforming an element in the third dimension",
@@ -9023,7 +9226,7 @@ module.exports={
9023
9226
  "keywords":"css 3d,3dtransforms,translate3d,transform3d",
9024
9227
  "shown":true
9025
9228
  }
9026
- },{}],73:[function(_dereq_,module,exports){
9229
+ },{}],74:[function(_dereq_,module,exports){
9027
9230
  module.exports={
9028
9231
  "title":"CSS user-select: none",
9029
9232
  "description":"Method of preventing text/element selection using CSS. ",
@@ -9220,7 +9423,7 @@ module.exports={
9220
9423
  "keywords":"",
9221
9424
  "shown":true
9222
9425
  }
9223
- },{}],74:[function(_dereq_,module,exports){
9426
+ },{}],75:[function(_dereq_,module,exports){
9224
9427
  (function() {
9225
9428
  var AtRule, Container, name, _fn, _i, _len, _ref,
9226
9429
  __hasProp = {}.hasOwnProperty,
@@ -9316,7 +9519,7 @@ module.exports={
9316
9519
 
9317
9520
  }).call(this);
9318
9521
 
9319
- },{"./container":76}],75:[function(_dereq_,module,exports){
9522
+ },{"./container":77}],76:[function(_dereq_,module,exports){
9320
9523
  (function() {
9321
9524
  var Comment, Node,
9322
9525
  __hasProp = {}.hasOwnProperty,
@@ -9356,7 +9559,7 @@ module.exports={
9356
9559
 
9357
9560
  }).call(this);
9358
9561
 
9359
- },{"./node":81}],76:[function(_dereq_,module,exports){
9562
+ },{"./node":82}],77:[function(_dereq_,module,exports){
9360
9563
  (function() {
9361
9564
  var Container, Declaration, Node,
9362
9565
  __hasProp = {}.hasOwnProperty,
@@ -9708,7 +9911,7 @@ module.exports={
9708
9911
 
9709
9912
  }).call(this);
9710
9913
 
9711
- },{"./declaration":78,"./node":81}],77:[function(_dereq_,module,exports){
9914
+ },{"./declaration":79,"./node":82}],78:[function(_dereq_,module,exports){
9712
9915
  (function() {
9713
9916
  var deprected, mozilla;
9714
9917
 
@@ -9770,7 +9973,7 @@ module.exports={
9770
9973
 
9771
9974
  }).call(this);
9772
9975
 
9773
- },{"source-map":92}],78:[function(_dereq_,module,exports){
9976
+ },{"source-map":93}],79:[function(_dereq_,module,exports){
9774
9977
  (function() {
9775
9978
  var Declaration, Node, vendor,
9776
9979
  __hasProp = {}.hasOwnProperty,
@@ -9842,7 +10045,7 @@ module.exports={
9842
10045
 
9843
10046
  }).call(this);
9844
10047
 
9845
- },{"./node":81,"./vendor":90}],79:[function(_dereq_,module,exports){
10048
+ },{"./node":82,"./vendor":91}],80:[function(_dereq_,module,exports){
9846
10049
  (function() {
9847
10050
  var list;
9848
10051
 
@@ -9908,7 +10111,7 @@ module.exports={
9908
10111
 
9909
10112
  }).call(this);
9910
10113
 
9911
- },{}],80:[function(_dereq_,module,exports){
10114
+ },{}],81:[function(_dereq_,module,exports){
9912
10115
  (function() {
9913
10116
  var MapGenerator, Result, base64js, mozilla, path;
9914
10117
 
@@ -10164,7 +10367,7 @@ module.exports={
10164
10367
 
10165
10368
  }).call(this);
10166
10369
 
10167
- },{"./result":86,"base64-js":91,"path":44,"source-map":92}],81:[function(_dereq_,module,exports){
10370
+ },{"./result":87,"base64-js":92,"path":44,"source-map":93}],82:[function(_dereq_,module,exports){
10168
10371
  (function() {
10169
10372
  var Node, Raw, clone, keys,
10170
10373
  __hasProp = {}.hasOwnProperty;
@@ -10357,7 +10560,7 @@ module.exports={
10357
10560
 
10358
10561
  }).call(this);
10359
10562
 
10360
- },{"./raw":85}],82:[function(_dereq_,module,exports){
10563
+ },{"./raw":86}],83:[function(_dereq_,module,exports){
10361
10564
  (function() {
10362
10565
  var AtRule, Comment, Declaration, Parser, PreviousMap, Raw, Root, Rule, SyntaxError, convertOptions, isSpace, path;
10363
10566
 
@@ -10879,7 +11082,7 @@ module.exports={
10879
11082
 
10880
11083
  }).call(this);
10881
11084
 
10882
- },{"./at-rule":74,"./comment":75,"./convert-options":77,"./declaration":78,"./previous-map":84,"./raw":85,"./root":87,"./rule":88,"./syntax-error":89,"path":44}],83:[function(_dereq_,module,exports){
11085
+ },{"./at-rule":75,"./comment":76,"./convert-options":78,"./declaration":79,"./previous-map":85,"./raw":86,"./root":88,"./rule":89,"./syntax-error":90,"path":44}],84:[function(_dereq_,module,exports){
10883
11086
  (function() {
10884
11087
  var AtRule, Comment, Declaration, PostCSS, Result, Root, Rule, convertOptions, postcss,
10885
11088
  __slice = [].slice;
@@ -10962,7 +11165,7 @@ module.exports={
10962
11165
 
10963
11166
  }).call(this);
10964
11167
 
10965
- },{"./at-rule":74,"./comment":75,"./convert-options":77,"./declaration":78,"./parse":82,"./result":86,"./root":87,"./rule":88}],84:[function(_dereq_,module,exports){
11168
+ },{"./at-rule":75,"./comment":76,"./convert-options":78,"./declaration":79,"./parse":83,"./result":87,"./root":88,"./rule":89}],85:[function(_dereq_,module,exports){
10966
11169
  (function() {
10967
11170
  var PreviousMap, base64js, fs, mozilla, path;
10968
11171
 
@@ -11076,7 +11279,7 @@ module.exports={
11076
11279
 
11077
11280
  }).call(this);
11078
11281
 
11079
- },{"base64-js":91,"fs":43,"path":44,"source-map":92}],85:[function(_dereq_,module,exports){
11282
+ },{"base64-js":92,"fs":43,"path":44,"source-map":93}],86:[function(_dereq_,module,exports){
11080
11283
  (function() {
11081
11284
  var Raw;
11082
11285
 
@@ -11110,7 +11313,7 @@ module.exports={
11110
11313
 
11111
11314
  }).call(this);
11112
11315
 
11113
- },{}],86:[function(_dereq_,module,exports){
11316
+ },{}],87:[function(_dereq_,module,exports){
11114
11317
  (function() {
11115
11318
  var MapGenerator, Result;
11116
11319
 
@@ -11158,7 +11361,7 @@ module.exports={
11158
11361
 
11159
11362
  }).call(this);
11160
11363
 
11161
- },{"./map-generator":80}],87:[function(_dereq_,module,exports){
11364
+ },{"./map-generator":81}],88:[function(_dereq_,module,exports){
11162
11365
  (function() {
11163
11366
  var AtRule, Comment, Container, Declaration, Result, Root, Rule,
11164
11367
  __hasProp = {}.hasOwnProperty,
@@ -11215,7 +11418,7 @@ module.exports={
11215
11418
 
11216
11419
  }).call(this);
11217
11420
 
11218
- },{"./at-rule":74,"./comment":75,"./container":76,"./declaration":78,"./result":86,"./rule":88}],88:[function(_dereq_,module,exports){
11421
+ },{"./at-rule":75,"./comment":76,"./container":77,"./declaration":79,"./result":87,"./rule":89}],89:[function(_dereq_,module,exports){
11219
11422
  (function() {
11220
11423
  var Container, Declaration, Rule, list,
11221
11424
  __hasProp = {}.hasOwnProperty,
@@ -11276,7 +11479,7 @@ module.exports={
11276
11479
 
11277
11480
  }).call(this);
11278
11481
 
11279
- },{"./container":76,"./declaration":78,"./list":79}],89:[function(_dereq_,module,exports){
11482
+ },{"./container":77,"./declaration":79,"./list":80}],90:[function(_dereq_,module,exports){
11280
11483
  (function() {
11281
11484
  var SyntaxError,
11282
11485
  __hasProp = {}.hasOwnProperty,
@@ -11305,7 +11508,7 @@ module.exports={
11305
11508
 
11306
11509
  }).call(this);
11307
11510
 
11308
- },{}],90:[function(_dereq_,module,exports){
11511
+ },{}],91:[function(_dereq_,module,exports){
11309
11512
  (function() {
11310
11513
  var vendor;
11311
11514
 
@@ -11334,7 +11537,7 @@ module.exports={
11334
11537
 
11335
11538
  }).call(this);
11336
11539
 
11337
- },{}],91:[function(_dereq_,module,exports){
11540
+ },{}],92:[function(_dereq_,module,exports){
11338
11541
  var lookup = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
11339
11542
 
11340
11543
  ;(function (exports) {
@@ -11456,7 +11659,7 @@ var lookup = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
11456
11659
  exports.fromByteArray = uint8ToBase64
11457
11660
  }(typeof exports === 'undefined' ? (this.base64js = {}) : exports))
11458
11661
 
11459
- },{}],92:[function(_dereq_,module,exports){
11662
+ },{}],93:[function(_dereq_,module,exports){
11460
11663
  /*
11461
11664
  * Copyright 2009-2011 Mozilla Foundation and contributors
11462
11665
  * Licensed under the New BSD license. See LICENSE.txt or:
@@ -11466,7 +11669,7 @@ exports.SourceMapGenerator = _dereq_('./source-map/source-map-generator').Source
11466
11669
  exports.SourceMapConsumer = _dereq_('./source-map/source-map-consumer').SourceMapConsumer;
11467
11670
  exports.SourceNode = _dereq_('./source-map/source-node').SourceNode;
11468
11671
 
11469
- },{"./source-map/source-map-consumer":97,"./source-map/source-map-generator":98,"./source-map/source-node":99}],93:[function(_dereq_,module,exports){
11672
+ },{"./source-map/source-map-consumer":98,"./source-map/source-map-generator":99,"./source-map/source-node":100}],94:[function(_dereq_,module,exports){
11470
11673
  /* -*- Mode: js; js-indent-level: 2; -*- */
11471
11674
  /*
11472
11675
  * Copyright 2011 Mozilla Foundation and contributors
@@ -11565,7 +11768,7 @@ define(function (_dereq_, exports, module) {
11565
11768
 
11566
11769
  });
11567
11770
 
11568
- },{"./util":100,"amdefine":101}],94:[function(_dereq_,module,exports){
11771
+ },{"./util":101,"amdefine":102}],95:[function(_dereq_,module,exports){
11569
11772
  /* -*- Mode: js; js-indent-level: 2; -*- */
11570
11773
  /*
11571
11774
  * Copyright 2011 Mozilla Foundation and contributors
@@ -11711,7 +11914,7 @@ define(function (_dereq_, exports, module) {
11711
11914
 
11712
11915
  });
11713
11916
 
11714
- },{"./base64":95,"amdefine":101}],95:[function(_dereq_,module,exports){
11917
+ },{"./base64":96,"amdefine":102}],96:[function(_dereq_,module,exports){
11715
11918
  /* -*- Mode: js; js-indent-level: 2; -*- */
11716
11919
  /*
11717
11920
  * Copyright 2011 Mozilla Foundation and contributors
@@ -11755,7 +11958,7 @@ define(function (_dereq_, exports, module) {
11755
11958
 
11756
11959
  });
11757
11960
 
11758
- },{"amdefine":101}],96:[function(_dereq_,module,exports){
11961
+ },{"amdefine":102}],97:[function(_dereq_,module,exports){
11759
11962
  /* -*- Mode: js; js-indent-level: 2; -*- */
11760
11963
  /*
11761
11964
  * Copyright 2011 Mozilla Foundation and contributors
@@ -11838,7 +12041,7 @@ define(function (_dereq_, exports, module) {
11838
12041
 
11839
12042
  });
11840
12043
 
11841
- },{"amdefine":101}],97:[function(_dereq_,module,exports){
12044
+ },{"amdefine":102}],98:[function(_dereq_,module,exports){
11842
12045
  /* -*- Mode: js; js-indent-level: 2; -*- */
11843
12046
  /*
11844
12047
  * Copyright 2011 Mozilla Foundation and contributors
@@ -12318,7 +12521,7 @@ define(function (_dereq_, exports, module) {
12318
12521
 
12319
12522
  });
12320
12523
 
12321
- },{"./array-set":93,"./base64-vlq":94,"./binary-search":96,"./util":100,"amdefine":101}],98:[function(_dereq_,module,exports){
12524
+ },{"./array-set":94,"./base64-vlq":95,"./binary-search":97,"./util":101,"amdefine":102}],99:[function(_dereq_,module,exports){
12322
12525
  /* -*- Mode: js; js-indent-level: 2; -*- */
12323
12526
  /*
12324
12527
  * Copyright 2011 Mozilla Foundation and contributors
@@ -12720,7 +12923,7 @@ define(function (_dereq_, exports, module) {
12720
12923
 
12721
12924
  });
12722
12925
 
12723
- },{"./array-set":93,"./base64-vlq":94,"./util":100,"amdefine":101}],99:[function(_dereq_,module,exports){
12926
+ },{"./array-set":94,"./base64-vlq":95,"./util":101,"amdefine":102}],100:[function(_dereq_,module,exports){
12724
12927
  /* -*- Mode: js; js-indent-level: 2; -*- */
12725
12928
  /*
12726
12929
  * Copyright 2011 Mozilla Foundation and contributors
@@ -13122,7 +13325,7 @@ define(function (_dereq_, exports, module) {
13122
13325
 
13123
13326
  });
13124
13327
 
13125
- },{"./source-map-generator":98,"./util":100,"amdefine":101}],100:[function(_dereq_,module,exports){
13328
+ },{"./source-map-generator":99,"./util":101,"amdefine":102}],101:[function(_dereq_,module,exports){
13126
13329
  /* -*- Mode: js; js-indent-level: 2; -*- */
13127
13330
  /*
13128
13331
  * Copyright 2011 Mozilla Foundation and contributors
@@ -13426,7 +13629,7 @@ define(function (_dereq_, exports, module) {
13426
13629
 
13427
13630
  });
13428
13631
 
13429
- },{"amdefine":101}],101:[function(_dereq_,module,exports){
13632
+ },{"amdefine":102}],102:[function(_dereq_,module,exports){
13430
13633
  (function (process,__filename){
13431
13634
  /** vim: et:ts=4:sw=4:sts=4
13432
13635
  * @license amdefine 0.1.0 Copyright (c) 2011, The Dojo Foundation All Rights Reserved.
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: 2.0.2.20140628
4
+ version: 2.1.0.20140628
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrey Sitnik