autoprefixer-rails 0.4.20130527 → 0.4.20130528
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.
- data/ChangeLog +4 -0
- data/Gemfile.lock +1 -1
- data/lib/autoprefixer-rails/version.rb +1 -1
- data/vendor/autoprefixer.js +619 -83
- metadata +4 -4
data/ChangeLog
CHANGED
@@ -21,6 +21,10 @@
|
|
21
21
|
20130527:
|
22
22
|
* Fix new css-stringify issue.
|
23
23
|
|
24
|
+
20130528:
|
25
|
+
* Fix compatibilty with Rework from git master.
|
26
|
+
* Add minor browsers to data, which can be selected only directly.
|
27
|
+
|
24
28
|
== 0.3 (Growing Strong)
|
25
29
|
* Use own filters instead of Rework’s `prefix` and `prefixValue`.
|
26
30
|
* Smarter value prefixer without false match “order” in “border”.
|
data/Gemfile.lock
CHANGED
data/vendor/autoprefixer.js
CHANGED
@@ -2445,6 +2445,40 @@ require.register("autoprefixer/data/browsers.js", function(exports, require, mod
|
|
2445
2445
|
// See updaters/ dir for generator. Run bin/update to update.
|
2446
2446
|
|
2447
2447
|
module.exports = {
|
2448
|
+
android: {
|
2449
|
+
prefix: "-webkit-",
|
2450
|
+
versions: [
|
2451
|
+
4.2,
|
2452
|
+
4.1,
|
2453
|
+
4,
|
2454
|
+
3,
|
2455
|
+
2.3,
|
2456
|
+
2.2,
|
2457
|
+
2.1
|
2458
|
+
],
|
2459
|
+
minor: true,
|
2460
|
+
popularity: [
|
2461
|
+
0.113747,
|
2462
|
+
1.29078,
|
2463
|
+
1.36002,
|
2464
|
+
0.00494553,
|
2465
|
+
1.90403,
|
2466
|
+
0.182984,
|
2467
|
+
0.0840739
|
2468
|
+
]
|
2469
|
+
},
|
2470
|
+
bb: {
|
2471
|
+
prefix: "-webkit-",
|
2472
|
+
versions: [
|
2473
|
+
10,
|
2474
|
+
7
|
2475
|
+
],
|
2476
|
+
minor: true,
|
2477
|
+
popularity: [
|
2478
|
+
0,
|
2479
|
+
0.102165
|
2480
|
+
]
|
2481
|
+
},
|
2448
2482
|
chrome: {
|
2449
2483
|
prefix: "-webkit-",
|
2450
2484
|
versions: [
|
@@ -2686,7 +2720,8 @@ module.exports = {
|
|
2686
2720
|
"chrome 24",
|
2687
2721
|
"chrome 25",
|
2688
2722
|
"safari 6",
|
2689
|
-
"ios 6"
|
2723
|
+
"ios 6",
|
2724
|
+
"bb 10"
|
2690
2725
|
]
|
2691
2726
|
},
|
2692
2727
|
flex: {
|
@@ -2756,7 +2791,16 @@ module.exports = {
|
|
2756
2791
|
"ios 4.2",
|
2757
2792
|
"ios 4.3",
|
2758
2793
|
"ios 5.0",
|
2759
|
-
"ios 5.1"
|
2794
|
+
"ios 5.1",
|
2795
|
+
"android 3",
|
2796
|
+
"android 4",
|
2797
|
+
"android 2.1",
|
2798
|
+
"android 2.2",
|
2799
|
+
"android 2.3",
|
2800
|
+
"android 4.1",
|
2801
|
+
"android 4.2",
|
2802
|
+
"bb 7",
|
2803
|
+
"bb 10"
|
2760
2804
|
],
|
2761
2805
|
replace: function (string, prefix, rules) {
|
2762
2806
|
if (prefix === '-webkit-') {
|
@@ -2836,7 +2880,16 @@ module.exports = {
|
|
2836
2880
|
"ios 4.2",
|
2837
2881
|
"ios 4.3",
|
2838
2882
|
"ios 5.0",
|
2839
|
-
"ios 5.1"
|
2883
|
+
"ios 5.1",
|
2884
|
+
"android 3",
|
2885
|
+
"android 4",
|
2886
|
+
"android 2.1",
|
2887
|
+
"android 2.2",
|
2888
|
+
"android 2.3",
|
2889
|
+
"android 4.1",
|
2890
|
+
"android 4.2",
|
2891
|
+
"bb 7",
|
2892
|
+
"bb 10"
|
2840
2893
|
]
|
2841
2894
|
},
|
2842
2895
|
"linear-gradient": {
|
@@ -2895,7 +2948,16 @@ module.exports = {
|
|
2895
2948
|
"ios 4.2",
|
2896
2949
|
"ios 4.3",
|
2897
2950
|
"ios 5.0",
|
2898
|
-
"ios 5.1"
|
2951
|
+
"ios 5.1",
|
2952
|
+
"android 3",
|
2953
|
+
"android 4",
|
2954
|
+
"android 2.1",
|
2955
|
+
"android 2.2",
|
2956
|
+
"android 2.3",
|
2957
|
+
"android 4.1",
|
2958
|
+
"android 4.2",
|
2959
|
+
"bb 7",
|
2960
|
+
"bb 10"
|
2899
2961
|
],
|
2900
2962
|
replace: function (string, prefix) {
|
2901
2963
|
var regexp;
|
@@ -2993,7 +3055,16 @@ module.exports = {
|
|
2993
3055
|
"ios 4.2",
|
2994
3056
|
"ios 4.3",
|
2995
3057
|
"ios 5.0",
|
2996
|
-
"ios 5.1"
|
3058
|
+
"ios 5.1",
|
3059
|
+
"android 3",
|
3060
|
+
"android 4",
|
3061
|
+
"android 2.1",
|
3062
|
+
"android 2.2",
|
3063
|
+
"android 2.3",
|
3064
|
+
"android 4.1",
|
3065
|
+
"android 4.2",
|
3066
|
+
"bb 7",
|
3067
|
+
"bb 10"
|
2997
3068
|
],
|
2998
3069
|
replace: function (string, prefix) {
|
2999
3070
|
var regexp;
|
@@ -3091,7 +3162,16 @@ module.exports = {
|
|
3091
3162
|
"ios 4.2",
|
3092
3163
|
"ios 4.3",
|
3093
3164
|
"ios 5.0",
|
3094
|
-
"ios 5.1"
|
3165
|
+
"ios 5.1",
|
3166
|
+
"android 3",
|
3167
|
+
"android 4",
|
3168
|
+
"android 2.1",
|
3169
|
+
"android 2.2",
|
3170
|
+
"android 2.3",
|
3171
|
+
"android 4.1",
|
3172
|
+
"android 4.2",
|
3173
|
+
"bb 7",
|
3174
|
+
"bb 10"
|
3095
3175
|
],
|
3096
3176
|
replace: function (string, prefix) {
|
3097
3177
|
var regexp;
|
@@ -3189,7 +3269,16 @@ module.exports = {
|
|
3189
3269
|
"ios 4.2",
|
3190
3270
|
"ios 4.3",
|
3191
3271
|
"ios 5.0",
|
3192
|
-
"ios 5.1"
|
3272
|
+
"ios 5.1",
|
3273
|
+
"android 3",
|
3274
|
+
"android 4",
|
3275
|
+
"android 2.1",
|
3276
|
+
"android 2.2",
|
3277
|
+
"android 2.3",
|
3278
|
+
"android 4.1",
|
3279
|
+
"android 4.2",
|
3280
|
+
"bb 7",
|
3281
|
+
"bb 10"
|
3193
3282
|
],
|
3194
3283
|
replace: function (string, prefix) {
|
3195
3284
|
var regexp;
|
@@ -3290,7 +3379,16 @@ module.exports = {
|
|
3290
3379
|
"ios 4.2",
|
3291
3380
|
"ios 4.3",
|
3292
3381
|
"ios 5.0",
|
3293
|
-
"ios 5.1"
|
3382
|
+
"ios 5.1",
|
3383
|
+
"android 3",
|
3384
|
+
"android 4",
|
3385
|
+
"android 2.1",
|
3386
|
+
"android 2.2",
|
3387
|
+
"android 2.3",
|
3388
|
+
"android 4.1",
|
3389
|
+
"android 4.2",
|
3390
|
+
"bb 7",
|
3391
|
+
"bb 10"
|
3294
3392
|
]
|
3295
3393
|
},
|
3296
3394
|
"align-content": {
|
@@ -3357,7 +3455,16 @@ module.exports = {
|
|
3357
3455
|
"ios 4.2",
|
3358
3456
|
"ios 4.3",
|
3359
3457
|
"ios 5.0",
|
3360
|
-
"ios 5.1"
|
3458
|
+
"ios 5.1",
|
3459
|
+
"android 3",
|
3460
|
+
"android 4",
|
3461
|
+
"android 2.1",
|
3462
|
+
"android 2.2",
|
3463
|
+
"android 2.3",
|
3464
|
+
"android 4.1",
|
3465
|
+
"android 4.2",
|
3466
|
+
"bb 7",
|
3467
|
+
"bb 10"
|
3361
3468
|
],
|
3362
3469
|
transition: true
|
3363
3470
|
},
|
@@ -3425,7 +3532,16 @@ module.exports = {
|
|
3425
3532
|
"ios 4.2",
|
3426
3533
|
"ios 4.3",
|
3427
3534
|
"ios 5.0",
|
3428
|
-
"ios 5.1"
|
3535
|
+
"ios 5.1",
|
3536
|
+
"android 3",
|
3537
|
+
"android 4",
|
3538
|
+
"android 2.1",
|
3539
|
+
"android 2.2",
|
3540
|
+
"android 2.3",
|
3541
|
+
"android 4.1",
|
3542
|
+
"android 4.2",
|
3543
|
+
"bb 7",
|
3544
|
+
"bb 10"
|
3429
3545
|
],
|
3430
3546
|
transition: true
|
3431
3547
|
},
|
@@ -3493,7 +3609,16 @@ module.exports = {
|
|
3493
3609
|
"ios 4.2",
|
3494
3610
|
"ios 4.3",
|
3495
3611
|
"ios 5.0",
|
3496
|
-
"ios 5.1"
|
3612
|
+
"ios 5.1",
|
3613
|
+
"android 3",
|
3614
|
+
"android 4",
|
3615
|
+
"android 2.1",
|
3616
|
+
"android 2.2",
|
3617
|
+
"android 2.3",
|
3618
|
+
"android 4.1",
|
3619
|
+
"android 4.2",
|
3620
|
+
"bb 7",
|
3621
|
+
"bb 10"
|
3497
3622
|
],
|
3498
3623
|
transition: true
|
3499
3624
|
},
|
@@ -3548,7 +3673,16 @@ module.exports = {
|
|
3548
3673
|
"ios 4.2",
|
3549
3674
|
"ios 4.3",
|
3550
3675
|
"ios 5.0",
|
3551
|
-
"ios 5.1"
|
3676
|
+
"ios 5.1",
|
3677
|
+
"android 3",
|
3678
|
+
"android 4",
|
3679
|
+
"android 2.1",
|
3680
|
+
"android 2.2",
|
3681
|
+
"android 2.3",
|
3682
|
+
"android 4.1",
|
3683
|
+
"android 4.2",
|
3684
|
+
"bb 7",
|
3685
|
+
"bb 10"
|
3552
3686
|
]
|
3553
3687
|
},
|
3554
3688
|
"animation-delay": {
|
@@ -3602,7 +3736,16 @@ module.exports = {
|
|
3602
3736
|
"ios 4.2",
|
3603
3737
|
"ios 4.3",
|
3604
3738
|
"ios 5.0",
|
3605
|
-
"ios 5.1"
|
3739
|
+
"ios 5.1",
|
3740
|
+
"android 3",
|
3741
|
+
"android 4",
|
3742
|
+
"android 2.1",
|
3743
|
+
"android 2.2",
|
3744
|
+
"android 2.3",
|
3745
|
+
"android 4.1",
|
3746
|
+
"android 4.2",
|
3747
|
+
"bb 7",
|
3748
|
+
"bb 10"
|
3606
3749
|
]
|
3607
3750
|
},
|
3608
3751
|
"animation-direction": {
|
@@ -3656,7 +3799,16 @@ module.exports = {
|
|
3656
3799
|
"ios 4.2",
|
3657
3800
|
"ios 4.3",
|
3658
3801
|
"ios 5.0",
|
3659
|
-
"ios 5.1"
|
3802
|
+
"ios 5.1",
|
3803
|
+
"android 3",
|
3804
|
+
"android 4",
|
3805
|
+
"android 2.1",
|
3806
|
+
"android 2.2",
|
3807
|
+
"android 2.3",
|
3808
|
+
"android 4.1",
|
3809
|
+
"android 4.2",
|
3810
|
+
"bb 7",
|
3811
|
+
"bb 10"
|
3660
3812
|
]
|
3661
3813
|
},
|
3662
3814
|
"animation-duration": {
|
@@ -3710,7 +3862,16 @@ module.exports = {
|
|
3710
3862
|
"ios 4.2",
|
3711
3863
|
"ios 4.3",
|
3712
3864
|
"ios 5.0",
|
3713
|
-
"ios 5.1"
|
3865
|
+
"ios 5.1",
|
3866
|
+
"android 3",
|
3867
|
+
"android 4",
|
3868
|
+
"android 2.1",
|
3869
|
+
"android 2.2",
|
3870
|
+
"android 2.3",
|
3871
|
+
"android 4.1",
|
3872
|
+
"android 4.2",
|
3873
|
+
"bb 7",
|
3874
|
+
"bb 10"
|
3714
3875
|
]
|
3715
3876
|
},
|
3716
3877
|
"animation-fill-mode": {
|
@@ -3764,7 +3925,16 @@ module.exports = {
|
|
3764
3925
|
"ios 4.2",
|
3765
3926
|
"ios 4.3",
|
3766
3927
|
"ios 5.0",
|
3767
|
-
"ios 5.1"
|
3928
|
+
"ios 5.1",
|
3929
|
+
"android 3",
|
3930
|
+
"android 4",
|
3931
|
+
"android 2.1",
|
3932
|
+
"android 2.2",
|
3933
|
+
"android 2.3",
|
3934
|
+
"android 4.1",
|
3935
|
+
"android 4.2",
|
3936
|
+
"bb 7",
|
3937
|
+
"bb 10"
|
3768
3938
|
]
|
3769
3939
|
},
|
3770
3940
|
"animation-iteration-count": {
|
@@ -3818,7 +3988,16 @@ module.exports = {
|
|
3818
3988
|
"ios 4.2",
|
3819
3989
|
"ios 4.3",
|
3820
3990
|
"ios 5.0",
|
3821
|
-
"ios 5.1"
|
3991
|
+
"ios 5.1",
|
3992
|
+
"android 3",
|
3993
|
+
"android 4",
|
3994
|
+
"android 2.1",
|
3995
|
+
"android 2.2",
|
3996
|
+
"android 2.3",
|
3997
|
+
"android 4.1",
|
3998
|
+
"android 4.2",
|
3999
|
+
"bb 7",
|
4000
|
+
"bb 10"
|
3822
4001
|
]
|
3823
4002
|
},
|
3824
4003
|
"animation-name": {
|
@@ -3872,7 +4051,16 @@ module.exports = {
|
|
3872
4051
|
"ios 4.2",
|
3873
4052
|
"ios 4.3",
|
3874
4053
|
"ios 5.0",
|
3875
|
-
"ios 5.1"
|
4054
|
+
"ios 5.1",
|
4055
|
+
"android 3",
|
4056
|
+
"android 4",
|
4057
|
+
"android 2.1",
|
4058
|
+
"android 2.2",
|
4059
|
+
"android 2.3",
|
4060
|
+
"android 4.1",
|
4061
|
+
"android 4.2",
|
4062
|
+
"bb 7",
|
4063
|
+
"bb 10"
|
3876
4064
|
]
|
3877
4065
|
},
|
3878
4066
|
"animation-play-state": {
|
@@ -3926,7 +4114,16 @@ module.exports = {
|
|
3926
4114
|
"ios 4.2",
|
3927
4115
|
"ios 4.3",
|
3928
4116
|
"ios 5.0",
|
3929
|
-
"ios 5.1"
|
4117
|
+
"ios 5.1",
|
4118
|
+
"android 3",
|
4119
|
+
"android 4",
|
4120
|
+
"android 2.1",
|
4121
|
+
"android 2.2",
|
4122
|
+
"android 2.3",
|
4123
|
+
"android 4.1",
|
4124
|
+
"android 4.2",
|
4125
|
+
"bb 7",
|
4126
|
+
"bb 10"
|
3930
4127
|
]
|
3931
4128
|
},
|
3932
4129
|
"animation-timing-function": {
|
@@ -3980,7 +4177,16 @@ module.exports = {
|
|
3980
4177
|
"ios 4.2",
|
3981
4178
|
"ios 4.3",
|
3982
4179
|
"ios 5.0",
|
3983
|
-
"ios 5.1"
|
4180
|
+
"ios 5.1",
|
4181
|
+
"android 3",
|
4182
|
+
"android 4",
|
4183
|
+
"android 2.1",
|
4184
|
+
"android 2.2",
|
4185
|
+
"android 2.3",
|
4186
|
+
"android 4.1",
|
4187
|
+
"android 4.2",
|
4188
|
+
"bb 7",
|
4189
|
+
"bb 10"
|
3984
4190
|
]
|
3985
4191
|
},
|
3986
4192
|
"backface-visibility": {
|
@@ -4046,7 +4252,16 @@ module.exports = {
|
|
4046
4252
|
"ios 4.2",
|
4047
4253
|
"ios 4.3",
|
4048
4254
|
"ios 5.0",
|
4049
|
-
"ios 5.1"
|
4255
|
+
"ios 5.1",
|
4256
|
+
"android 3",
|
4257
|
+
"android 4",
|
4258
|
+
"android 2.1",
|
4259
|
+
"android 2.2",
|
4260
|
+
"android 2.3",
|
4261
|
+
"android 4.1",
|
4262
|
+
"android 4.2",
|
4263
|
+
"bb 7",
|
4264
|
+
"bb 10"
|
4050
4265
|
],
|
4051
4266
|
transition: true
|
4052
4267
|
},
|
@@ -4060,7 +4275,8 @@ module.exports = {
|
|
4060
4275
|
"safari 4",
|
4061
4276
|
"safari 3.1",
|
4062
4277
|
"safari 3.2",
|
4063
|
-
"ios 3.2"
|
4278
|
+
"ios 3.2",
|
4279
|
+
"android 2.1"
|
4064
4280
|
],
|
4065
4281
|
transition: true,
|
4066
4282
|
prefixed: {
|
@@ -4077,7 +4293,8 @@ module.exports = {
|
|
4077
4293
|
"safari 4",
|
4078
4294
|
"safari 3.1",
|
4079
4295
|
"safari 3.2",
|
4080
|
-
"ios 3.2"
|
4296
|
+
"ios 3.2",
|
4297
|
+
"android 2.1"
|
4081
4298
|
],
|
4082
4299
|
transition: true,
|
4083
4300
|
prefixed: {
|
@@ -4094,7 +4311,8 @@ module.exports = {
|
|
4094
4311
|
"safari 4",
|
4095
4312
|
"safari 3.1",
|
4096
4313
|
"safari 3.2",
|
4097
|
-
"ios 3.2"
|
4314
|
+
"ios 3.2",
|
4315
|
+
"android 2.1"
|
4098
4316
|
],
|
4099
4317
|
transition: true
|
4100
4318
|
},
|
@@ -4108,7 +4326,8 @@ module.exports = {
|
|
4108
4326
|
"safari 4",
|
4109
4327
|
"safari 3.1",
|
4110
4328
|
"safari 3.2",
|
4111
|
-
"ios 3.2"
|
4329
|
+
"ios 3.2",
|
4330
|
+
"android 2.1"
|
4112
4331
|
],
|
4113
4332
|
transition: true,
|
4114
4333
|
prefixed: {
|
@@ -4125,7 +4344,8 @@ module.exports = {
|
|
4125
4344
|
"safari 4",
|
4126
4345
|
"safari 3.1",
|
4127
4346
|
"safari 3.2",
|
4128
|
-
"ios 3.2"
|
4347
|
+
"ios 3.2",
|
4348
|
+
"android 2.1"
|
4129
4349
|
],
|
4130
4350
|
transition: true,
|
4131
4351
|
prefixed: {
|
@@ -4150,7 +4370,12 @@ module.exports = {
|
|
4150
4370
|
"ios 4.0",
|
4151
4371
|
"ios 4.1",
|
4152
4372
|
"ios 4.2",
|
4153
|
-
"ios 4.3"
|
4373
|
+
"ios 4.3",
|
4374
|
+
"android 3",
|
4375
|
+
"android 2.1",
|
4376
|
+
"android 2.2",
|
4377
|
+
"android 2.3",
|
4378
|
+
"bb 7"
|
4154
4379
|
],
|
4155
4380
|
transition: true
|
4156
4381
|
},
|
@@ -4194,7 +4419,12 @@ module.exports = {
|
|
4194
4419
|
"ios 4.0",
|
4195
4420
|
"ios 4.1",
|
4196
4421
|
"ios 4.2",
|
4197
|
-
"ios 4.3"
|
4422
|
+
"ios 4.3",
|
4423
|
+
"android 3",
|
4424
|
+
"android 2.1",
|
4425
|
+
"android 2.2",
|
4426
|
+
"android 2.3",
|
4427
|
+
"bb 7"
|
4198
4428
|
]
|
4199
4429
|
},
|
4200
4430
|
"break-after": {
|
@@ -4262,7 +4492,16 @@ module.exports = {
|
|
4262
4492
|
"ios 4.2",
|
4263
4493
|
"ios 4.3",
|
4264
4494
|
"ios 5.0",
|
4265
|
-
"ios 5.1"
|
4495
|
+
"ios 5.1",
|
4496
|
+
"android 3",
|
4497
|
+
"android 4",
|
4498
|
+
"android 2.1",
|
4499
|
+
"android 2.2",
|
4500
|
+
"android 2.3",
|
4501
|
+
"android 4.1",
|
4502
|
+
"android 4.2",
|
4503
|
+
"bb 7",
|
4504
|
+
"bb 10"
|
4266
4505
|
],
|
4267
4506
|
transition: true
|
4268
4507
|
},
|
@@ -4331,7 +4570,16 @@ module.exports = {
|
|
4331
4570
|
"ios 4.2",
|
4332
4571
|
"ios 4.3",
|
4333
4572
|
"ios 5.0",
|
4334
|
-
"ios 5.1"
|
4573
|
+
"ios 5.1",
|
4574
|
+
"android 3",
|
4575
|
+
"android 4",
|
4576
|
+
"android 2.1",
|
4577
|
+
"android 2.2",
|
4578
|
+
"android 2.3",
|
4579
|
+
"android 4.1",
|
4580
|
+
"android 4.2",
|
4581
|
+
"bb 7",
|
4582
|
+
"bb 10"
|
4335
4583
|
],
|
4336
4584
|
transition: true
|
4337
4585
|
},
|
@@ -4400,7 +4648,16 @@ module.exports = {
|
|
4400
4648
|
"ios 4.2",
|
4401
4649
|
"ios 4.3",
|
4402
4650
|
"ios 5.0",
|
4403
|
-
"ios 5.1"
|
4651
|
+
"ios 5.1",
|
4652
|
+
"android 3",
|
4653
|
+
"android 4",
|
4654
|
+
"android 2.1",
|
4655
|
+
"android 2.2",
|
4656
|
+
"android 2.3",
|
4657
|
+
"android 4.1",
|
4658
|
+
"android 4.2",
|
4659
|
+
"bb 7",
|
4660
|
+
"bb 10"
|
4404
4661
|
],
|
4405
4662
|
transition: true
|
4406
4663
|
},
|
@@ -4469,7 +4726,16 @@ module.exports = {
|
|
4469
4726
|
"ios 4.2",
|
4470
4727
|
"ios 4.3",
|
4471
4728
|
"ios 5.0",
|
4472
|
-
"ios 5.1"
|
4729
|
+
"ios 5.1",
|
4730
|
+
"android 3",
|
4731
|
+
"android 4",
|
4732
|
+
"android 2.1",
|
4733
|
+
"android 2.2",
|
4734
|
+
"android 2.3",
|
4735
|
+
"android 4.1",
|
4736
|
+
"android 4.2",
|
4737
|
+
"bb 7",
|
4738
|
+
"bb 10"
|
4473
4739
|
],
|
4474
4740
|
transition: true
|
4475
4741
|
},
|
@@ -4538,7 +4804,16 @@ module.exports = {
|
|
4538
4804
|
"ios 4.2",
|
4539
4805
|
"ios 4.3",
|
4540
4806
|
"ios 5.0",
|
4541
|
-
"ios 5.1"
|
4807
|
+
"ios 5.1",
|
4808
|
+
"android 3",
|
4809
|
+
"android 4",
|
4810
|
+
"android 2.1",
|
4811
|
+
"android 2.2",
|
4812
|
+
"android 2.3",
|
4813
|
+
"android 4.1",
|
4814
|
+
"android 4.2",
|
4815
|
+
"bb 7",
|
4816
|
+
"bb 10"
|
4542
4817
|
],
|
4543
4818
|
transition: true
|
4544
4819
|
},
|
@@ -4607,7 +4882,16 @@ module.exports = {
|
|
4607
4882
|
"ios 4.2",
|
4608
4883
|
"ios 4.3",
|
4609
4884
|
"ios 5.0",
|
4610
|
-
"ios 5.1"
|
4885
|
+
"ios 5.1",
|
4886
|
+
"android 3",
|
4887
|
+
"android 4",
|
4888
|
+
"android 2.1",
|
4889
|
+
"android 2.2",
|
4890
|
+
"android 2.3",
|
4891
|
+
"android 4.1",
|
4892
|
+
"android 4.2",
|
4893
|
+
"bb 7",
|
4894
|
+
"bb 10"
|
4611
4895
|
],
|
4612
4896
|
transition: true
|
4613
4897
|
},
|
@@ -4676,7 +4960,16 @@ module.exports = {
|
|
4676
4960
|
"ios 4.2",
|
4677
4961
|
"ios 4.3",
|
4678
4962
|
"ios 5.0",
|
4679
|
-
"ios 5.1"
|
4963
|
+
"ios 5.1",
|
4964
|
+
"android 3",
|
4965
|
+
"android 4",
|
4966
|
+
"android 2.1",
|
4967
|
+
"android 2.2",
|
4968
|
+
"android 2.3",
|
4969
|
+
"android 4.1",
|
4970
|
+
"android 4.2",
|
4971
|
+
"bb 7",
|
4972
|
+
"bb 10"
|
4680
4973
|
],
|
4681
4974
|
transition: true
|
4682
4975
|
},
|
@@ -4745,7 +5038,16 @@ module.exports = {
|
|
4745
5038
|
"ios 4.2",
|
4746
5039
|
"ios 4.3",
|
4747
5040
|
"ios 5.0",
|
4748
|
-
"ios 5.1"
|
5041
|
+
"ios 5.1",
|
5042
|
+
"android 3",
|
5043
|
+
"android 4",
|
5044
|
+
"android 2.1",
|
5045
|
+
"android 2.2",
|
5046
|
+
"android 2.3",
|
5047
|
+
"android 4.1",
|
5048
|
+
"android 4.2",
|
5049
|
+
"bb 7",
|
5050
|
+
"bb 10"
|
4749
5051
|
],
|
4750
5052
|
transition: true
|
4751
5053
|
},
|
@@ -4814,7 +5116,16 @@ module.exports = {
|
|
4814
5116
|
"ios 4.2",
|
4815
5117
|
"ios 4.3",
|
4816
5118
|
"ios 5.0",
|
4817
|
-
"ios 5.1"
|
5119
|
+
"ios 5.1",
|
5120
|
+
"android 3",
|
5121
|
+
"android 4",
|
5122
|
+
"android 2.1",
|
5123
|
+
"android 2.2",
|
5124
|
+
"android 2.3",
|
5125
|
+
"android 4.1",
|
5126
|
+
"android 4.2",
|
5127
|
+
"bb 7",
|
5128
|
+
"bb 10"
|
4818
5129
|
],
|
4819
5130
|
transition: true
|
4820
5131
|
},
|
@@ -4883,7 +5194,16 @@ module.exports = {
|
|
4883
5194
|
"ios 4.2",
|
4884
5195
|
"ios 4.3",
|
4885
5196
|
"ios 5.0",
|
4886
|
-
"ios 5.1"
|
5197
|
+
"ios 5.1",
|
5198
|
+
"android 3",
|
5199
|
+
"android 4",
|
5200
|
+
"android 2.1",
|
5201
|
+
"android 2.2",
|
5202
|
+
"android 2.3",
|
5203
|
+
"android 4.1",
|
5204
|
+
"android 4.2",
|
5205
|
+
"bb 7",
|
5206
|
+
"bb 10"
|
4887
5207
|
],
|
4888
5208
|
transition: true
|
4889
5209
|
},
|
@@ -4952,7 +5272,16 @@ module.exports = {
|
|
4952
5272
|
"ios 4.2",
|
4953
5273
|
"ios 4.3",
|
4954
5274
|
"ios 5.0",
|
4955
|
-
"ios 5.1"
|
5275
|
+
"ios 5.1",
|
5276
|
+
"android 3",
|
5277
|
+
"android 4",
|
5278
|
+
"android 2.1",
|
5279
|
+
"android 2.2",
|
5280
|
+
"android 2.3",
|
5281
|
+
"android 4.1",
|
5282
|
+
"android 4.2",
|
5283
|
+
"bb 7",
|
5284
|
+
"bb 10"
|
4956
5285
|
],
|
4957
5286
|
transition: true
|
4958
5287
|
},
|
@@ -5021,7 +5350,16 @@ module.exports = {
|
|
5021
5350
|
"ios 4.2",
|
5022
5351
|
"ios 4.3",
|
5023
5352
|
"ios 5.0",
|
5024
|
-
"ios 5.1"
|
5353
|
+
"ios 5.1",
|
5354
|
+
"android 3",
|
5355
|
+
"android 4",
|
5356
|
+
"android 2.1",
|
5357
|
+
"android 2.2",
|
5358
|
+
"android 2.3",
|
5359
|
+
"android 4.1",
|
5360
|
+
"android 4.2",
|
5361
|
+
"bb 7",
|
5362
|
+
"bb 10"
|
5025
5363
|
],
|
5026
5364
|
transition: true
|
5027
5365
|
},
|
@@ -5090,7 +5428,16 @@ module.exports = {
|
|
5090
5428
|
"ios 4.2",
|
5091
5429
|
"ios 4.3",
|
5092
5430
|
"ios 5.0",
|
5093
|
-
"ios 5.1"
|
5431
|
+
"ios 5.1",
|
5432
|
+
"android 3",
|
5433
|
+
"android 4",
|
5434
|
+
"android 2.1",
|
5435
|
+
"android 2.2",
|
5436
|
+
"android 2.3",
|
5437
|
+
"android 4.1",
|
5438
|
+
"android 4.2",
|
5439
|
+
"bb 7",
|
5440
|
+
"bb 10"
|
5094
5441
|
],
|
5095
5442
|
transition: true
|
5096
5443
|
},
|
@@ -5109,7 +5456,8 @@ module.exports = {
|
|
5109
5456
|
"chrome 28",
|
5110
5457
|
"chrome 29",
|
5111
5458
|
"safari 6",
|
5112
|
-
"ios 6"
|
5459
|
+
"ios 6",
|
5460
|
+
"bb 10"
|
5113
5461
|
],
|
5114
5462
|
transition: true,
|
5115
5463
|
check: function () {
|
@@ -5180,7 +5528,16 @@ module.exports = {
|
|
5180
5528
|
"ios 4.2",
|
5181
5529
|
"ios 4.3",
|
5182
5530
|
"ios 5.0",
|
5183
|
-
"ios 5.1"
|
5531
|
+
"ios 5.1",
|
5532
|
+
"android 3",
|
5533
|
+
"android 4",
|
5534
|
+
"android 2.1",
|
5535
|
+
"android 2.2",
|
5536
|
+
"android 2.3",
|
5537
|
+
"android 4.1",
|
5538
|
+
"android 4.2",
|
5539
|
+
"bb 7",
|
5540
|
+
"bb 10"
|
5184
5541
|
],
|
5185
5542
|
transition: true
|
5186
5543
|
},
|
@@ -5248,7 +5605,16 @@ module.exports = {
|
|
5248
5605
|
"ios 4.2",
|
5249
5606
|
"ios 4.3",
|
5250
5607
|
"ios 5.0",
|
5251
|
-
"ios 5.1"
|
5608
|
+
"ios 5.1",
|
5609
|
+
"android 3",
|
5610
|
+
"android 4",
|
5611
|
+
"android 2.1",
|
5612
|
+
"android 2.2",
|
5613
|
+
"android 2.3",
|
5614
|
+
"android 4.1",
|
5615
|
+
"android 4.2",
|
5616
|
+
"bb 7",
|
5617
|
+
"bb 10"
|
5252
5618
|
],
|
5253
5619
|
transition: true
|
5254
5620
|
},
|
@@ -5316,7 +5682,16 @@ module.exports = {
|
|
5316
5682
|
"ios 4.2",
|
5317
5683
|
"ios 4.3",
|
5318
5684
|
"ios 5.0",
|
5319
|
-
"ios 5.1"
|
5685
|
+
"ios 5.1",
|
5686
|
+
"android 3",
|
5687
|
+
"android 4",
|
5688
|
+
"android 2.1",
|
5689
|
+
"android 2.2",
|
5690
|
+
"android 2.3",
|
5691
|
+
"android 4.1",
|
5692
|
+
"android 4.2",
|
5693
|
+
"bb 7",
|
5694
|
+
"bb 10"
|
5320
5695
|
],
|
5321
5696
|
transition: true
|
5322
5697
|
},
|
@@ -5384,7 +5759,16 @@ module.exports = {
|
|
5384
5759
|
"ios 4.2",
|
5385
5760
|
"ios 4.3",
|
5386
5761
|
"ios 5.0",
|
5387
|
-
"ios 5.1"
|
5762
|
+
"ios 5.1",
|
5763
|
+
"android 3",
|
5764
|
+
"android 4",
|
5765
|
+
"android 2.1",
|
5766
|
+
"android 2.2",
|
5767
|
+
"android 2.3",
|
5768
|
+
"android 4.1",
|
5769
|
+
"android 4.2",
|
5770
|
+
"bb 7",
|
5771
|
+
"bb 10"
|
5388
5772
|
],
|
5389
5773
|
transition: true
|
5390
5774
|
},
|
@@ -5452,7 +5836,16 @@ module.exports = {
|
|
5452
5836
|
"ios 4.2",
|
5453
5837
|
"ios 4.3",
|
5454
5838
|
"ios 5.0",
|
5455
|
-
"ios 5.1"
|
5839
|
+
"ios 5.1",
|
5840
|
+
"android 3",
|
5841
|
+
"android 4",
|
5842
|
+
"android 2.1",
|
5843
|
+
"android 2.2",
|
5844
|
+
"android 2.3",
|
5845
|
+
"android 4.1",
|
5846
|
+
"android 4.2",
|
5847
|
+
"bb 7",
|
5848
|
+
"bb 10"
|
5456
5849
|
],
|
5457
5850
|
transition: true
|
5458
5851
|
},
|
@@ -5520,7 +5913,16 @@ module.exports = {
|
|
5520
5913
|
"ios 4.2",
|
5521
5914
|
"ios 4.3",
|
5522
5915
|
"ios 5.0",
|
5523
|
-
"ios 5.1"
|
5916
|
+
"ios 5.1",
|
5917
|
+
"android 3",
|
5918
|
+
"android 4",
|
5919
|
+
"android 2.1",
|
5920
|
+
"android 2.2",
|
5921
|
+
"android 2.3",
|
5922
|
+
"android 4.1",
|
5923
|
+
"android 4.2",
|
5924
|
+
"bb 7",
|
5925
|
+
"bb 10"
|
5524
5926
|
],
|
5525
5927
|
transition: true
|
5526
5928
|
},
|
@@ -5588,7 +5990,16 @@ module.exports = {
|
|
5588
5990
|
"ios 4.2",
|
5589
5991
|
"ios 4.3",
|
5590
5992
|
"ios 5.0",
|
5591
|
-
"ios 5.1"
|
5993
|
+
"ios 5.1",
|
5994
|
+
"android 3",
|
5995
|
+
"android 4",
|
5996
|
+
"android 2.1",
|
5997
|
+
"android 2.2",
|
5998
|
+
"android 2.3",
|
5999
|
+
"android 4.1",
|
6000
|
+
"android 4.2",
|
6001
|
+
"bb 7",
|
6002
|
+
"bb 10"
|
5592
6003
|
],
|
5593
6004
|
transition: true
|
5594
6005
|
},
|
@@ -5656,7 +6067,16 @@ module.exports = {
|
|
5656
6067
|
"ios 4.2",
|
5657
6068
|
"ios 4.3",
|
5658
6069
|
"ios 5.0",
|
5659
|
-
"ios 5.1"
|
6070
|
+
"ios 5.1",
|
6071
|
+
"android 3",
|
6072
|
+
"android 4",
|
6073
|
+
"android 2.1",
|
6074
|
+
"android 2.2",
|
6075
|
+
"android 2.3",
|
6076
|
+
"android 4.1",
|
6077
|
+
"android 4.2",
|
6078
|
+
"bb 7",
|
6079
|
+
"bb 10"
|
5660
6080
|
],
|
5661
6081
|
transition: true
|
5662
6082
|
},
|
@@ -5724,7 +6144,16 @@ module.exports = {
|
|
5724
6144
|
"ios 4.2",
|
5725
6145
|
"ios 4.3",
|
5726
6146
|
"ios 5.0",
|
5727
|
-
"ios 5.1"
|
6147
|
+
"ios 5.1",
|
6148
|
+
"android 3",
|
6149
|
+
"android 4",
|
6150
|
+
"android 2.1",
|
6151
|
+
"android 2.2",
|
6152
|
+
"android 2.3",
|
6153
|
+
"android 4.1",
|
6154
|
+
"android 4.2",
|
6155
|
+
"bb 7",
|
6156
|
+
"bb 10"
|
5728
6157
|
],
|
5729
6158
|
transition: true
|
5730
6159
|
},
|
@@ -5791,7 +6220,16 @@ module.exports = {
|
|
5791
6220
|
"ios 4.2",
|
5792
6221
|
"ios 4.3",
|
5793
6222
|
"ios 5.0",
|
5794
|
-
"ios 5.1"
|
6223
|
+
"ios 5.1",
|
6224
|
+
"android 3",
|
6225
|
+
"android 4",
|
6226
|
+
"android 2.1",
|
6227
|
+
"android 2.2",
|
6228
|
+
"android 2.3",
|
6229
|
+
"android 4.1",
|
6230
|
+
"android 4.2",
|
6231
|
+
"bb 7",
|
6232
|
+
"bb 10"
|
5795
6233
|
],
|
5796
6234
|
transition: true
|
5797
6235
|
},
|
@@ -5858,7 +6296,16 @@ module.exports = {
|
|
5858
6296
|
"ios 4.2",
|
5859
6297
|
"ios 4.3",
|
5860
6298
|
"ios 5.0",
|
5861
|
-
"ios 5.1"
|
6299
|
+
"ios 5.1",
|
6300
|
+
"android 3",
|
6301
|
+
"android 4",
|
6302
|
+
"android 2.1",
|
6303
|
+
"android 2.2",
|
6304
|
+
"android 2.3",
|
6305
|
+
"android 4.1",
|
6306
|
+
"android 4.2",
|
6307
|
+
"bb 7",
|
6308
|
+
"bb 10"
|
5862
6309
|
],
|
5863
6310
|
transition: true
|
5864
6311
|
},
|
@@ -5925,7 +6372,16 @@ module.exports = {
|
|
5925
6372
|
"ios 4.2",
|
5926
6373
|
"ios 4.3",
|
5927
6374
|
"ios 5.0",
|
5928
|
-
"ios 5.1"
|
6375
|
+
"ios 5.1",
|
6376
|
+
"android 3",
|
6377
|
+
"android 4",
|
6378
|
+
"android 2.1",
|
6379
|
+
"android 2.2",
|
6380
|
+
"android 2.3",
|
6381
|
+
"android 4.1",
|
6382
|
+
"android 4.2",
|
6383
|
+
"bb 7",
|
6384
|
+
"bb 10"
|
5929
6385
|
],
|
5930
6386
|
transition: true
|
5931
6387
|
},
|
@@ -5992,7 +6448,16 @@ module.exports = {
|
|
5992
6448
|
"ios 4.2",
|
5993
6449
|
"ios 4.3",
|
5994
6450
|
"ios 5.0",
|
5995
|
-
"ios 5.1"
|
6451
|
+
"ios 5.1",
|
6452
|
+
"android 3",
|
6453
|
+
"android 4",
|
6454
|
+
"android 2.1",
|
6455
|
+
"android 2.2",
|
6456
|
+
"android 2.3",
|
6457
|
+
"android 4.1",
|
6458
|
+
"android 4.2",
|
6459
|
+
"bb 7",
|
6460
|
+
"bb 10"
|
5996
6461
|
],
|
5997
6462
|
transition: true
|
5998
6463
|
},
|
@@ -6059,7 +6524,16 @@ module.exports = {
|
|
6059
6524
|
"ios 4.2",
|
6060
6525
|
"ios 4.3",
|
6061
6526
|
"ios 5.0",
|
6062
|
-
"ios 5.1"
|
6527
|
+
"ios 5.1",
|
6528
|
+
"android 3",
|
6529
|
+
"android 4",
|
6530
|
+
"android 2.1",
|
6531
|
+
"android 2.2",
|
6532
|
+
"android 2.3",
|
6533
|
+
"android 4.1",
|
6534
|
+
"android 4.2",
|
6535
|
+
"bb 7",
|
6536
|
+
"bb 10"
|
6063
6537
|
],
|
6064
6538
|
transition: true
|
6065
6539
|
},
|
@@ -6119,7 +6593,16 @@ module.exports = {
|
|
6119
6593
|
"ios 4.2",
|
6120
6594
|
"ios 4.3",
|
6121
6595
|
"ios 5.0",
|
6122
|
-
"ios 5.1"
|
6596
|
+
"ios 5.1",
|
6597
|
+
"android 3",
|
6598
|
+
"android 4",
|
6599
|
+
"android 2.1",
|
6600
|
+
"android 2.2",
|
6601
|
+
"android 2.3",
|
6602
|
+
"android 4.1",
|
6603
|
+
"android 4.2",
|
6604
|
+
"bb 7",
|
6605
|
+
"bb 10"
|
6123
6606
|
]
|
6124
6607
|
},
|
6125
6608
|
"transition-delay": {
|
@@ -6178,7 +6661,16 @@ module.exports = {
|
|
6178
6661
|
"ios 4.2",
|
6179
6662
|
"ios 4.3",
|
6180
6663
|
"ios 5.0",
|
6181
|
-
"ios 5.1"
|
6664
|
+
"ios 5.1",
|
6665
|
+
"android 3",
|
6666
|
+
"android 4",
|
6667
|
+
"android 2.1",
|
6668
|
+
"android 2.2",
|
6669
|
+
"android 2.3",
|
6670
|
+
"android 4.1",
|
6671
|
+
"android 4.2",
|
6672
|
+
"bb 7",
|
6673
|
+
"bb 10"
|
6182
6674
|
]
|
6183
6675
|
},
|
6184
6676
|
"transition-duration": {
|
@@ -6237,7 +6729,16 @@ module.exports = {
|
|
6237
6729
|
"ios 4.2",
|
6238
6730
|
"ios 4.3",
|
6239
6731
|
"ios 5.0",
|
6240
|
-
"ios 5.1"
|
6732
|
+
"ios 5.1",
|
6733
|
+
"android 3",
|
6734
|
+
"android 4",
|
6735
|
+
"android 2.1",
|
6736
|
+
"android 2.2",
|
6737
|
+
"android 2.3",
|
6738
|
+
"android 4.1",
|
6739
|
+
"android 4.2",
|
6740
|
+
"bb 7",
|
6741
|
+
"bb 10"
|
6241
6742
|
]
|
6242
6743
|
},
|
6243
6744
|
"transition-property": {
|
@@ -6296,7 +6797,16 @@ module.exports = {
|
|
6296
6797
|
"ios 4.2",
|
6297
6798
|
"ios 4.3",
|
6298
6799
|
"ios 5.0",
|
6299
|
-
"ios 5.1"
|
6800
|
+
"ios 5.1",
|
6801
|
+
"android 3",
|
6802
|
+
"android 4",
|
6803
|
+
"android 2.1",
|
6804
|
+
"android 2.2",
|
6805
|
+
"android 2.3",
|
6806
|
+
"android 4.1",
|
6807
|
+
"android 4.2",
|
6808
|
+
"bb 7",
|
6809
|
+
"bb 10"
|
6300
6810
|
]
|
6301
6811
|
},
|
6302
6812
|
"transition-timing-function": {
|
@@ -6355,7 +6865,16 @@ module.exports = {
|
|
6355
6865
|
"ios 4.2",
|
6356
6866
|
"ios 4.3",
|
6357
6867
|
"ios 5.0",
|
6358
|
-
"ios 5.1"
|
6868
|
+
"ios 5.1",
|
6869
|
+
"android 3",
|
6870
|
+
"android 4",
|
6871
|
+
"android 2.1",
|
6872
|
+
"android 2.2",
|
6873
|
+
"android 2.3",
|
6874
|
+
"android 4.1",
|
6875
|
+
"android 4.2",
|
6876
|
+
"bb 7",
|
6877
|
+
"bb 10"
|
6359
6878
|
]
|
6360
6879
|
},
|
6361
6880
|
"user-select": {
|
@@ -6423,7 +6942,16 @@ module.exports = {
|
|
6423
6942
|
"ios 4.2",
|
6424
6943
|
"ios 4.3",
|
6425
6944
|
"ios 5.0",
|
6426
|
-
"ios 5.1"
|
6945
|
+
"ios 5.1",
|
6946
|
+
"android 3",
|
6947
|
+
"android 4",
|
6948
|
+
"android 2.1",
|
6949
|
+
"android 2.2",
|
6950
|
+
"android 2.3",
|
6951
|
+
"android 4.1",
|
6952
|
+
"android 4.2",
|
6953
|
+
"bb 7",
|
6954
|
+
"bb 10"
|
6427
6955
|
]
|
6428
6956
|
}
|
6429
6957
|
};
|
@@ -6577,7 +7105,9 @@ Rules.prototype = {
|
|
6577
7105
|
// Execute `callback` on every rule.
|
6578
7106
|
forEach: function (callback) {
|
6579
7107
|
for ( this.num = 0; this.num < this.rules.length; this.num += 1 ) {
|
6580
|
-
|
7108
|
+
if ( this.rules[this.num].property ) {
|
7109
|
+
callback(this.rules[this.num]);
|
7110
|
+
}
|
6581
7111
|
}
|
6582
7112
|
},
|
6583
7113
|
|
@@ -6825,14 +7355,14 @@ var autoprefixer = {
|
|
6825
7355
|
return !(rule.keyframes && remove.keyframes[rule.vendor]);
|
6826
7356
|
});
|
6827
7357
|
|
6828
|
-
rework.visit.declarations(style, function (
|
6829
|
-
|
6830
|
-
var rule = rules[num];
|
7358
|
+
rework.visit.declarations(style, function (list) {
|
7359
|
+
var rules = new Rules(list);
|
6831
7360
|
|
7361
|
+
rules.forEach(function (rule) {
|
6832
7362
|
// Properties
|
6833
7363
|
if ( remove.props[rule.property] ) {
|
6834
|
-
rules.
|
6835
|
-
|
7364
|
+
rules.removeCurrent();
|
7365
|
+
return;
|
6836
7366
|
}
|
6837
7367
|
|
6838
7368
|
// Values
|
@@ -6846,11 +7376,11 @@ var autoprefixer = {
|
|
6846
7376
|
}
|
6847
7377
|
values.forEach(function (value) {
|
6848
7378
|
if ( rule.value.match(value) ) {
|
6849
|
-
rules.
|
7379
|
+
rules.removeCurrent();
|
6850
7380
|
return false;
|
6851
7381
|
}
|
6852
7382
|
});
|
6853
|
-
}
|
7383
|
+
});
|
6854
7384
|
});
|
6855
7385
|
},
|
6856
7386
|
|
@@ -6864,21 +7394,27 @@ var autoprefixer = {
|
|
6864
7394
|
var browsers = [];
|
6865
7395
|
requirements.map(function (req) {
|
6866
7396
|
|
6867
|
-
|
6868
|
-
|
6869
|
-
|
6870
|
-
|
7397
|
+
if ( match = req.match(/^last (\d+) versions?$/i) ) {
|
7398
|
+
return autoprefixer.browsers(function(browser) {
|
7399
|
+
if ( browser.minor ) {
|
7400
|
+
return [];
|
7401
|
+
}
|
7402
|
+
return browser.versions.slice(0, match[1]);
|
7403
|
+
});
|
6871
7404
|
|
6872
|
-
|
6873
|
-
|
6874
|
-
|
6875
|
-
|
6876
|
-
|
6877
|
-
|
7405
|
+
} else if ( match = req.match(/^> (\d+(\.\d+)?)%$/i) ) {
|
7406
|
+
return autoprefixer.browsers(function(browser) {
|
7407
|
+
if ( browser.minor ) {
|
7408
|
+
return [];
|
7409
|
+
}
|
7410
|
+
return browser.versions.filter(function (version, i) {
|
7411
|
+
return browser.popularity[i] > match[1];
|
7412
|
+
});
|
7413
|
+
});
|
6878
7414
|
|
6879
|
-
|
6880
|
-
|
6881
|
-
|
7415
|
+
} else {
|
7416
|
+
return [autoprefixer.check(req)];
|
7417
|
+
}
|
6882
7418
|
|
6883
7419
|
}).forEach(function (reqBrowsers) {
|
6884
7420
|
browsers = browsers.concat(reqBrowsers);
|
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: 0.4.
|
4
|
+
version: 0.4.20130528
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-05-
|
12
|
+
date: 2013-05-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: execjs
|
@@ -82,7 +82,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
82
82
|
version: '0'
|
83
83
|
segments:
|
84
84
|
- 0
|
85
|
-
hash:
|
85
|
+
hash: -1653094769173327979
|
86
86
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
87
87
|
none: false
|
88
88
|
requirements:
|
@@ -91,7 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
91
91
|
version: '0'
|
92
92
|
segments:
|
93
93
|
- 0
|
94
|
-
hash:
|
94
|
+
hash: -1653094769173327979
|
95
95
|
requirements: []
|
96
96
|
rubyforge_project:
|
97
97
|
rubygems_version: 1.8.23
|