sauce_platforms 3.0.0 → 3.0.1
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/lib/sauce_platforms/platforms/ios/ios_ipad.rb +4 -0
- data/lib/sauce_platforms/platforms/ios/ios_iphone.rb +4 -0
- data/lib/sauce_platforms/platforms/linux/linux_chrome.rb +8 -4
- data/lib/sauce_platforms/platforms/linux/linux_firefox.rb +12 -8
- data/lib/sauce_platforms/platforms/mac_10_10/mac_10_10_chrome.rb +20 -0
- data/lib/sauce_platforms/platforms/mac_10_10/mac_10_10_firefox.rb +8 -4
- data/lib/sauce_platforms/platforms/mac_10_11/mac_10_11_chrome.rb +20 -0
- data/lib/sauce_platforms/platforms/mac_10_11/mac_10_11_firefox.rb +16 -4
- data/lib/sauce_platforms/platforms/mac_10_11/mac_10_11_safari.rb +2 -2
- data/lib/sauce_platforms/platforms/mac_10_8/mac_10_8_chrome.rb +12 -4
- data/lib/sauce_platforms/platforms/mac_10_8/mac_10_8_firefox.rb +16 -4
- data/lib/sauce_platforms/platforms/mac_10_9/mac_10_9_chrome.rb +20 -0
- data/lib/sauce_platforms/platforms/mac_10_9/mac_10_9_firefox.rb +16 -4
- data/lib/sauce_platforms/platforms/windows_10/windows_10_chrome.rb +20 -0
- data/lib/sauce_platforms/platforms/windows_10/windows_10_firefox.rb +20 -16
- data/lib/sauce_platforms/platforms/windows_10/windows_10_microsoftedge.rb +2 -2
- data/lib/sauce_platforms/platforms/windows_7/windows_7_chrome.rb +20 -0
- data/lib/sauce_platforms/platforms/windows_7/windows_7_firefox.rb +20 -16
- data/lib/sauce_platforms/platforms/windows_8/windows_8_chrome.rb +20 -0
- data/lib/sauce_platforms/platforms/windows_8/windows_8_firefox.rb +20 -16
- data/lib/sauce_platforms/platforms/windows_8_1/windows_8_1_chrome.rb +20 -0
- data/lib/sauce_platforms/platforms/windows_8_1/windows_8_1_firefox.rb +20 -16
- data/lib/sauce_platforms/platforms/windows_xp/windows_xp_chrome.rb +12 -4
- data/lib/sauce_platforms/platforms/windows_xp/windows_xp_firefox.rb +12 -16
- data/lib/sauce_platforms/version.rb +2 -2
- data/release_notes.md +8 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 12582a0e75afb1cca05b4c8eb621b481b4ca093f
|
4
|
+
data.tar.gz: ab6b47881d63b79835cad366aa066b8ab47f8cc0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1329a571ce897f098588d86f6a97f25f8b5b1375ac21e5a247b9759374a710598e2ed8cf80fc19c69167fb30670f6de8e089a9d4883f8e224cfa7961f6c8fe7b
|
7
|
+
data.tar.gz: abdce7fd3b102b0357d5b300491c4fe493a6b8b574ed1514f77b8d01b0d178766fd6d498e210f6e1fcdb8ede3fbde1ad960a4ec2d139780497a371e250ce14d4
|
@@ -91,12 +91,16 @@ module Platform
|
|
91
91
|
linux_chrome '45'
|
92
92
|
end
|
93
93
|
|
94
|
-
def
|
95
|
-
linux_chrome '
|
94
|
+
def v46
|
95
|
+
linux_chrome '46'
|
96
96
|
end
|
97
97
|
|
98
|
-
def
|
99
|
-
linux_chrome '
|
98
|
+
def v47
|
99
|
+
linux_chrome '47'
|
100
|
+
end
|
101
|
+
|
102
|
+
def v48
|
103
|
+
linux_chrome '48'
|
100
104
|
end
|
101
105
|
|
102
106
|
end
|
@@ -11,10 +11,6 @@ module Platform
|
|
11
11
|
linux_firefox version_string
|
12
12
|
end
|
13
13
|
|
14
|
-
def v3_6
|
15
|
-
linux_firefox '3.6'
|
16
|
-
end
|
17
|
-
|
18
14
|
def v4
|
19
15
|
linux_firefox '4'
|
20
16
|
end
|
@@ -167,12 +163,20 @@ module Platform
|
|
167
163
|
linux_firefox '41'
|
168
164
|
end
|
169
165
|
|
170
|
-
def
|
171
|
-
linux_firefox '
|
166
|
+
def v42
|
167
|
+
linux_firefox '42'
|
168
|
+
end
|
169
|
+
|
170
|
+
def v43
|
171
|
+
linux_firefox '43'
|
172
|
+
end
|
173
|
+
|
174
|
+
def v44
|
175
|
+
linux_firefox '44'
|
172
176
|
end
|
173
177
|
|
174
|
-
def
|
175
|
-
linux_firefox '
|
178
|
+
def v45
|
179
|
+
linux_firefox '45'
|
176
180
|
end
|
177
181
|
|
178
182
|
end
|
@@ -47,6 +47,26 @@ module Platform
|
|
47
47
|
mac_10_10_chrome '45'
|
48
48
|
end
|
49
49
|
|
50
|
+
def v46
|
51
|
+
mac_10_10_chrome '46'
|
52
|
+
end
|
53
|
+
|
54
|
+
def v47
|
55
|
+
mac_10_10_chrome '47'
|
56
|
+
end
|
57
|
+
|
58
|
+
def v48
|
59
|
+
mac_10_10_chrome '48'
|
60
|
+
end
|
61
|
+
|
62
|
+
def v49
|
63
|
+
mac_10_10_chrome '49'
|
64
|
+
end
|
65
|
+
|
66
|
+
def v50
|
67
|
+
mac_10_10_chrome '50'
|
68
|
+
end
|
69
|
+
|
50
70
|
def beta
|
51
71
|
mac_10_10_chrome 'beta'
|
52
72
|
end
|
@@ -51,12 +51,16 @@ module Platform
|
|
51
51
|
mac_10_10_firefox '41'
|
52
52
|
end
|
53
53
|
|
54
|
-
def
|
55
|
-
mac_10_10_firefox '
|
54
|
+
def v42
|
55
|
+
mac_10_10_firefox '42'
|
56
56
|
end
|
57
57
|
|
58
|
-
def
|
59
|
-
mac_10_10_firefox '
|
58
|
+
def v43
|
59
|
+
mac_10_10_firefox '43'
|
60
|
+
end
|
61
|
+
|
62
|
+
def v44
|
63
|
+
mac_10_10_firefox '44'
|
60
64
|
end
|
61
65
|
|
62
66
|
end
|
@@ -79,6 +79,26 @@ module Platform
|
|
79
79
|
mac_10_11_chrome '45'
|
80
80
|
end
|
81
81
|
|
82
|
+
def v46
|
83
|
+
mac_10_11_chrome '46'
|
84
|
+
end
|
85
|
+
|
86
|
+
def v47
|
87
|
+
mac_10_11_chrome '47'
|
88
|
+
end
|
89
|
+
|
90
|
+
def v48
|
91
|
+
mac_10_11_chrome '48'
|
92
|
+
end
|
93
|
+
|
94
|
+
def v49
|
95
|
+
mac_10_11_chrome '49'
|
96
|
+
end
|
97
|
+
|
98
|
+
def v50
|
99
|
+
mac_10_11_chrome '50'
|
100
|
+
end
|
101
|
+
|
82
102
|
def beta
|
83
103
|
mac_10_11_chrome 'beta'
|
84
104
|
end
|
@@ -163,12 +163,24 @@ module Platform
|
|
163
163
|
mac_10_11_firefox '41'
|
164
164
|
end
|
165
165
|
|
166
|
-
def
|
167
|
-
mac_10_11_firefox '
|
166
|
+
def v42
|
167
|
+
mac_10_11_firefox '42'
|
168
168
|
end
|
169
169
|
|
170
|
-
def
|
171
|
-
mac_10_11_firefox '
|
170
|
+
def v43
|
171
|
+
mac_10_11_firefox '43'
|
172
|
+
end
|
173
|
+
|
174
|
+
def v44
|
175
|
+
mac_10_11_firefox '44'
|
176
|
+
end
|
177
|
+
|
178
|
+
def v45
|
179
|
+
mac_10_11_firefox '45'
|
180
|
+
end
|
181
|
+
|
182
|
+
def v46
|
183
|
+
mac_10_11_firefox '46'
|
172
184
|
end
|
173
185
|
|
174
186
|
end
|
@@ -79,12 +79,20 @@ module Platform
|
|
79
79
|
mac_10_8_chrome '45'
|
80
80
|
end
|
81
81
|
|
82
|
-
def
|
83
|
-
mac_10_8_chrome '
|
82
|
+
def v46
|
83
|
+
mac_10_8_chrome '46'
|
84
84
|
end
|
85
85
|
|
86
|
-
def
|
87
|
-
mac_10_8_chrome '
|
86
|
+
def v47
|
87
|
+
mac_10_8_chrome '47'
|
88
|
+
end
|
89
|
+
|
90
|
+
def v48
|
91
|
+
mac_10_8_chrome '48'
|
92
|
+
end
|
93
|
+
|
94
|
+
def v49
|
95
|
+
mac_10_8_chrome '49'
|
88
96
|
end
|
89
97
|
|
90
98
|
end
|
@@ -163,12 +163,24 @@ module Platform
|
|
163
163
|
mac_10_8_firefox '41'
|
164
164
|
end
|
165
165
|
|
166
|
-
def
|
167
|
-
mac_10_8_firefox '
|
166
|
+
def v42
|
167
|
+
mac_10_8_firefox '42'
|
168
168
|
end
|
169
169
|
|
170
|
-
def
|
171
|
-
mac_10_8_firefox '
|
170
|
+
def v43
|
171
|
+
mac_10_8_firefox '43'
|
172
|
+
end
|
173
|
+
|
174
|
+
def v44
|
175
|
+
mac_10_8_firefox '44'
|
176
|
+
end
|
177
|
+
|
178
|
+
def v45
|
179
|
+
mac_10_8_firefox '45'
|
180
|
+
end
|
181
|
+
|
182
|
+
def v46
|
183
|
+
mac_10_8_firefox '46'
|
172
184
|
end
|
173
185
|
|
174
186
|
end
|
@@ -71,6 +71,26 @@ module Platform
|
|
71
71
|
mac_10_9_chrome '45'
|
72
72
|
end
|
73
73
|
|
74
|
+
def v46
|
75
|
+
mac_10_9_chrome '46'
|
76
|
+
end
|
77
|
+
|
78
|
+
def v47
|
79
|
+
mac_10_9_chrome '47'
|
80
|
+
end
|
81
|
+
|
82
|
+
def v48
|
83
|
+
mac_10_9_chrome '48'
|
84
|
+
end
|
85
|
+
|
86
|
+
def v49
|
87
|
+
mac_10_9_chrome '49'
|
88
|
+
end
|
89
|
+
|
90
|
+
def v50
|
91
|
+
mac_10_9_chrome '50'
|
92
|
+
end
|
93
|
+
|
74
94
|
def beta
|
75
95
|
mac_10_9_chrome 'beta'
|
76
96
|
end
|
@@ -163,12 +163,24 @@ module Platform
|
|
163
163
|
mac_10_9_firefox '41'
|
164
164
|
end
|
165
165
|
|
166
|
-
def
|
167
|
-
mac_10_9_firefox '
|
166
|
+
def v42
|
167
|
+
mac_10_9_firefox '42'
|
168
168
|
end
|
169
169
|
|
170
|
-
def
|
171
|
-
mac_10_9_firefox '
|
170
|
+
def v43
|
171
|
+
mac_10_9_firefox '43'
|
172
|
+
end
|
173
|
+
|
174
|
+
def v44
|
175
|
+
mac_10_9_firefox '44'
|
176
|
+
end
|
177
|
+
|
178
|
+
def v45
|
179
|
+
mac_10_9_firefox '45'
|
180
|
+
end
|
181
|
+
|
182
|
+
def v46
|
183
|
+
mac_10_9_firefox '46'
|
172
184
|
end
|
173
185
|
|
174
186
|
end
|
@@ -91,6 +91,26 @@ module Platform
|
|
91
91
|
windows_10_chrome '45'
|
92
92
|
end
|
93
93
|
|
94
|
+
def v46
|
95
|
+
windows_10_chrome '46'
|
96
|
+
end
|
97
|
+
|
98
|
+
def v47
|
99
|
+
windows_10_chrome '47'
|
100
|
+
end
|
101
|
+
|
102
|
+
def v48
|
103
|
+
windows_10_chrome '48'
|
104
|
+
end
|
105
|
+
|
106
|
+
def v49
|
107
|
+
windows_10_chrome '49'
|
108
|
+
end
|
109
|
+
|
110
|
+
def v50
|
111
|
+
windows_10_chrome '50'
|
112
|
+
end
|
113
|
+
|
94
114
|
def beta
|
95
115
|
windows_10_chrome 'beta'
|
96
116
|
end
|
@@ -11,18 +11,6 @@ module Platform
|
|
11
11
|
windows_10_firefox version_string
|
12
12
|
end
|
13
13
|
|
14
|
-
def v3_0
|
15
|
-
windows_10_firefox '3.0'
|
16
|
-
end
|
17
|
-
|
18
|
-
def v3_5
|
19
|
-
windows_10_firefox '3.5'
|
20
|
-
end
|
21
|
-
|
22
|
-
def v3_6
|
23
|
-
windows_10_firefox '3.6'
|
24
|
-
end
|
25
|
-
|
26
14
|
def v4
|
27
15
|
windows_10_firefox '4'
|
28
16
|
end
|
@@ -175,12 +163,28 @@ module Platform
|
|
175
163
|
windows_10_firefox '41'
|
176
164
|
end
|
177
165
|
|
178
|
-
def
|
179
|
-
windows_10_firefox '
|
166
|
+
def v42
|
167
|
+
windows_10_firefox '42'
|
168
|
+
end
|
169
|
+
|
170
|
+
def v43
|
171
|
+
windows_10_firefox '43'
|
172
|
+
end
|
173
|
+
|
174
|
+
def v44
|
175
|
+
windows_10_firefox '44'
|
176
|
+
end
|
177
|
+
|
178
|
+
def v45
|
179
|
+
windows_10_firefox '45'
|
180
180
|
end
|
181
181
|
|
182
|
-
def
|
183
|
-
windows_10_firefox '
|
182
|
+
def v46
|
183
|
+
windows_10_firefox '46'
|
184
|
+
end
|
185
|
+
|
186
|
+
def beta
|
187
|
+
windows_10_firefox 'beta'
|
184
188
|
end
|
185
189
|
|
186
190
|
end
|
@@ -91,6 +91,26 @@ module Platform
|
|
91
91
|
windows_7_chrome '45'
|
92
92
|
end
|
93
93
|
|
94
|
+
def v46
|
95
|
+
windows_7_chrome '46'
|
96
|
+
end
|
97
|
+
|
98
|
+
def v47
|
99
|
+
windows_7_chrome '47'
|
100
|
+
end
|
101
|
+
|
102
|
+
def v48
|
103
|
+
windows_7_chrome '48'
|
104
|
+
end
|
105
|
+
|
106
|
+
def v49
|
107
|
+
windows_7_chrome '49'
|
108
|
+
end
|
109
|
+
|
110
|
+
def v50
|
111
|
+
windows_7_chrome '50'
|
112
|
+
end
|
113
|
+
|
94
114
|
def beta
|
95
115
|
windows_7_chrome 'beta'
|
96
116
|
end
|
@@ -11,18 +11,6 @@ module Platform
|
|
11
11
|
windows_7_firefox version_string
|
12
12
|
end
|
13
13
|
|
14
|
-
def v3_0
|
15
|
-
windows_7_firefox '3.0'
|
16
|
-
end
|
17
|
-
|
18
|
-
def v3_5
|
19
|
-
windows_7_firefox '3.5'
|
20
|
-
end
|
21
|
-
|
22
|
-
def v3_6
|
23
|
-
windows_7_firefox '3.6'
|
24
|
-
end
|
25
|
-
|
26
14
|
def v4
|
27
15
|
windows_7_firefox '4'
|
28
16
|
end
|
@@ -175,12 +163,28 @@ module Platform
|
|
175
163
|
windows_7_firefox '41'
|
176
164
|
end
|
177
165
|
|
178
|
-
def
|
179
|
-
windows_7_firefox '
|
166
|
+
def v42
|
167
|
+
windows_7_firefox '42'
|
168
|
+
end
|
169
|
+
|
170
|
+
def v43
|
171
|
+
windows_7_firefox '43'
|
172
|
+
end
|
173
|
+
|
174
|
+
def v44
|
175
|
+
windows_7_firefox '44'
|
176
|
+
end
|
177
|
+
|
178
|
+
def v45
|
179
|
+
windows_7_firefox '45'
|
180
180
|
end
|
181
181
|
|
182
|
-
def
|
183
|
-
windows_7_firefox '
|
182
|
+
def v46
|
183
|
+
windows_7_firefox '46'
|
184
|
+
end
|
185
|
+
|
186
|
+
def beta
|
187
|
+
windows_7_firefox 'beta'
|
184
188
|
end
|
185
189
|
|
186
190
|
end
|
@@ -91,6 +91,26 @@ module Platform
|
|
91
91
|
windows_8_chrome '45'
|
92
92
|
end
|
93
93
|
|
94
|
+
def v46
|
95
|
+
windows_8_chrome '46'
|
96
|
+
end
|
97
|
+
|
98
|
+
def v47
|
99
|
+
windows_8_chrome '47'
|
100
|
+
end
|
101
|
+
|
102
|
+
def v48
|
103
|
+
windows_8_chrome '48'
|
104
|
+
end
|
105
|
+
|
106
|
+
def v49
|
107
|
+
windows_8_chrome '49'
|
108
|
+
end
|
109
|
+
|
110
|
+
def v50
|
111
|
+
windows_8_chrome '50'
|
112
|
+
end
|
113
|
+
|
94
114
|
def beta
|
95
115
|
windows_8_chrome 'beta'
|
96
116
|
end
|
@@ -11,18 +11,6 @@ module Platform
|
|
11
11
|
windows_8_firefox version_string
|
12
12
|
end
|
13
13
|
|
14
|
-
def v3_0
|
15
|
-
windows_8_firefox '3.0'
|
16
|
-
end
|
17
|
-
|
18
|
-
def v3_5
|
19
|
-
windows_8_firefox '3.5'
|
20
|
-
end
|
21
|
-
|
22
|
-
def v3_6
|
23
|
-
windows_8_firefox '3.6'
|
24
|
-
end
|
25
|
-
|
26
14
|
def v4
|
27
15
|
windows_8_firefox '4'
|
28
16
|
end
|
@@ -175,12 +163,28 @@ module Platform
|
|
175
163
|
windows_8_firefox '41'
|
176
164
|
end
|
177
165
|
|
178
|
-
def
|
179
|
-
windows_8_firefox '
|
166
|
+
def v42
|
167
|
+
windows_8_firefox '42'
|
168
|
+
end
|
169
|
+
|
170
|
+
def v43
|
171
|
+
windows_8_firefox '43'
|
172
|
+
end
|
173
|
+
|
174
|
+
def v44
|
175
|
+
windows_8_firefox '44'
|
176
|
+
end
|
177
|
+
|
178
|
+
def v45
|
179
|
+
windows_8_firefox '45'
|
180
180
|
end
|
181
181
|
|
182
|
-
def
|
183
|
-
windows_8_firefox '
|
182
|
+
def v46
|
183
|
+
windows_8_firefox '46'
|
184
|
+
end
|
185
|
+
|
186
|
+
def beta
|
187
|
+
windows_8_firefox 'beta'
|
184
188
|
end
|
185
189
|
|
186
190
|
end
|
@@ -91,6 +91,26 @@ module Platform
|
|
91
91
|
windows_8_1_chrome '45'
|
92
92
|
end
|
93
93
|
|
94
|
+
def v46
|
95
|
+
windows_8_1_chrome '46'
|
96
|
+
end
|
97
|
+
|
98
|
+
def v47
|
99
|
+
windows_8_1_chrome '47'
|
100
|
+
end
|
101
|
+
|
102
|
+
def v48
|
103
|
+
windows_8_1_chrome '48'
|
104
|
+
end
|
105
|
+
|
106
|
+
def v49
|
107
|
+
windows_8_1_chrome '49'
|
108
|
+
end
|
109
|
+
|
110
|
+
def v50
|
111
|
+
windows_8_1_chrome '50'
|
112
|
+
end
|
113
|
+
|
94
114
|
def beta
|
95
115
|
windows_8_1_chrome 'beta'
|
96
116
|
end
|
@@ -11,18 +11,6 @@ module Platform
|
|
11
11
|
windows_8_1_firefox version_string
|
12
12
|
end
|
13
13
|
|
14
|
-
def v3_0
|
15
|
-
windows_8_1_firefox '3.0'
|
16
|
-
end
|
17
|
-
|
18
|
-
def v3_5
|
19
|
-
windows_8_1_firefox '3.5'
|
20
|
-
end
|
21
|
-
|
22
|
-
def v3_6
|
23
|
-
windows_8_1_firefox '3.6'
|
24
|
-
end
|
25
|
-
|
26
14
|
def v4
|
27
15
|
windows_8_1_firefox '4'
|
28
16
|
end
|
@@ -175,12 +163,28 @@ module Platform
|
|
175
163
|
windows_8_1_firefox '41'
|
176
164
|
end
|
177
165
|
|
178
|
-
def
|
179
|
-
windows_8_1_firefox '
|
166
|
+
def v42
|
167
|
+
windows_8_1_firefox '42'
|
168
|
+
end
|
169
|
+
|
170
|
+
def v43
|
171
|
+
windows_8_1_firefox '43'
|
172
|
+
end
|
173
|
+
|
174
|
+
def v44
|
175
|
+
windows_8_1_firefox '44'
|
176
|
+
end
|
177
|
+
|
178
|
+
def v45
|
179
|
+
windows_8_1_firefox '45'
|
180
180
|
end
|
181
181
|
|
182
|
-
def
|
183
|
-
windows_8_1_firefox '
|
182
|
+
def v46
|
183
|
+
windows_8_1_firefox '46'
|
184
|
+
end
|
185
|
+
|
186
|
+
def beta
|
187
|
+
windows_8_1_firefox 'beta'
|
184
188
|
end
|
185
189
|
|
186
190
|
end
|
@@ -91,12 +91,20 @@ module Platform
|
|
91
91
|
windows_xp_chrome '45'
|
92
92
|
end
|
93
93
|
|
94
|
-
def
|
95
|
-
windows_xp_chrome '
|
94
|
+
def v46
|
95
|
+
windows_xp_chrome '46'
|
96
96
|
end
|
97
97
|
|
98
|
-
def
|
99
|
-
windows_xp_chrome '
|
98
|
+
def v47
|
99
|
+
windows_xp_chrome '47'
|
100
|
+
end
|
101
|
+
|
102
|
+
def v48
|
103
|
+
windows_xp_chrome '48'
|
104
|
+
end
|
105
|
+
|
106
|
+
def v49
|
107
|
+
windows_xp_chrome '49'
|
100
108
|
end
|
101
109
|
|
102
110
|
end
|
@@ -11,18 +11,6 @@ module Platform
|
|
11
11
|
windows_xp_firefox version_string
|
12
12
|
end
|
13
13
|
|
14
|
-
def v3_0
|
15
|
-
windows_xp_firefox '3.0'
|
16
|
-
end
|
17
|
-
|
18
|
-
def v3_5
|
19
|
-
windows_xp_firefox '3.5'
|
20
|
-
end
|
21
|
-
|
22
|
-
def v3_6
|
23
|
-
windows_xp_firefox '3.6'
|
24
|
-
end
|
25
|
-
|
26
14
|
def v4
|
27
15
|
windows_xp_firefox '4'
|
28
16
|
end
|
@@ -175,12 +163,20 @@ module Platform
|
|
175
163
|
windows_xp_firefox '41'
|
176
164
|
end
|
177
165
|
|
178
|
-
def
|
179
|
-
windows_xp_firefox '
|
166
|
+
def v42
|
167
|
+
windows_xp_firefox '42'
|
168
|
+
end
|
169
|
+
|
170
|
+
def v43
|
171
|
+
windows_xp_firefox '43'
|
172
|
+
end
|
173
|
+
|
174
|
+
def v44
|
175
|
+
windows_xp_firefox '44'
|
180
176
|
end
|
181
177
|
|
182
|
-
def
|
183
|
-
windows_xp_firefox '
|
178
|
+
def v45
|
179
|
+
windows_xp_firefox '45'
|
184
180
|
end
|
185
181
|
|
186
182
|
end
|
data/release_notes.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
#### v3.0.1 2016-05-24
|
2
|
+
|
3
|
+
- [a1bacec](https://github.com/bootstraponline/sauce_platforms/commit/a1baceceb6a2ffbcfee6192d34293ea007cf7f3f) Release 3.0.1
|
4
|
+
- [3adb60d](https://github.com/bootstraponline/sauce_platforms/commit/3adb60da3568f4047dd571783c8d8bda025fa494) Run thor gen
|
5
|
+
- [0f595ed](https://github.com/bootstraponline/sauce_platforms/commit/0f595ed66076342adb94626d487429a653e5d1a2) Merge pull request #5 from mycargus/master
|
6
|
+
- [ff881cd](https://github.com/bootstraponline/sauce_platforms/commit/ff881cd3aab3be8fdf86ae643e85fa225838a906) add current browser versions for desktops, add specs
|
7
|
+
|
8
|
+
|
1
9
|
#### v3.0.0 2015-10-12
|
2
10
|
|
3
11
|
- [d453d9e](https://github.com/bootstraponline/sauce_platforms/commit/d453d9e8edf4bc647cf4567e4e84e92fa161d00e) Release 3.0.0
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sauce_platforms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- code@bootstraponline.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-05-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -200,7 +200,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
200
200
|
version: '0'
|
201
201
|
requirements: []
|
202
202
|
rubyforge_project:
|
203
|
-
rubygems_version: 2.4
|
203
|
+
rubygems_version: 2.6.4
|
204
204
|
signing_key:
|
205
205
|
specification_version: 4
|
206
206
|
summary: Sauce platforms
|