sauce_platforms 0.0.2 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 93a40a86ef54bb2aca287cd99993756680b8fa36
4
- data.tar.gz: fe8578fa564c19b161560e466ce0a88f17dae2a8
3
+ metadata.gz: bd1d0103a13a782f72961969aa81b73437802d64
4
+ data.tar.gz: 293e06e2a34094354545597a46f451ab354e2171
5
5
  SHA512:
6
- metadata.gz: 7e065ec6039e67f820f57609b6c9719c21a5d2027ae1c9bd28d932f8665f37bf019fe286fbcb90b640c789d30010912ae654a70896210f7b5776b267501c6e9c
7
- data.tar.gz: 64dd053b125b1a7c2fa691726efb6832703d78b7edfb2de3eeb7882c2d26e93af15ad0a4077a824aa29ecd04e4e7aec28c8c926f836f70a793ddcf696b9d4883
6
+ metadata.gz: 5f5c3a0c8234e61f285a56a0a958ebbfad5b3833498c353622791cda8e21c5bbbbbcbdca48bdea5c00c3aae977fd0808092ffebe94a844319c1c7c6b456e1efa
7
+ data.tar.gz: 2ef550641e2a44cdefd839da7983cd17dc727039c55cb1d584af86cea4770a809e637d65e7f75098f85b5f7aaee8c57628938d2232359dee90e8058f675346b9
@@ -1,4 +1,4 @@
1
1
  module Platforms
2
- VERSION = '0.0.2' unless defined? ::Platforms::VERSION
2
+ VERSION = '1.0.0' unless defined? ::Platforms::VERSION
3
3
  DATE = '2015-06-06' unless defined? ::Platforms::DATE
4
4
  end
@@ -19,7 +19,7 @@ module Platform
19
19
  Mac_10_9
20
20
  end
21
21
 
22
- def windows_2003
22
+ def windows_xp
23
23
  Windows_2003
24
24
  end
25
25
 
@@ -27,7 +27,7 @@ module Platform
27
27
  Mac_10_8
28
28
  end
29
29
 
30
- def windows_2012
30
+ def windows_8
31
31
  Windows_2012
32
32
  end
33
33
 
@@ -35,11 +35,11 @@ module Platform
35
35
  Linux
36
36
  end
37
37
 
38
- def windows_2012_r2
38
+ def windows_8_1
39
39
  Windows_2012_r2
40
40
  end
41
41
 
42
- def windows_2008
42
+ def windows_7
43
43
  Windows_2008
44
44
  end
45
45
 
data/readme.md CHANGED
@@ -8,25 +8,24 @@ RSpec tests are also automatically generated to ensure the method calls don't er
8
8
 
9
9
  `require 'sauce_platforms'`
10
10
 
11
- - `Platforms.mac_10_6.firefox.v7` - built in version numbers
12
- - `Platforms.mac_10_6.firefox.v'39'` - custom version number via `v` method
11
+ - `Platform.mac_10_6.firefox.v7` - built in version numbers
12
+ - `Platform.mac_10_6.firefox.v'39'` - custom version number via `v` method
13
13
 
14
14
  Example in Pry:
15
15
 
16
16
  ```ruby
17
17
  require 'sauce_platforms'
18
- > Platforms.mac_10_6.chrome.v33
18
+ > Platform.mac_10_6.chrome.v33
19
19
  => ["Mac 10.6", "chrome", "33"]
20
20
 
21
- > Platforms.mac_10_6.chrome.v'100'
21
+ > Platform.mac_10_6.chrome.v'100'
22
22
  => ["Mac 10.6", "chrome", "100"]
23
23
 
24
24
  # Invalid combinations correctly throw undefined method error
25
- > Platforms.mac_10_6.chrome.v999
26
- NoMethodError: undefined method `v999` for Platforms::Mac_10_6_chrome:Module
25
+ > Platform.mac_10_6.chrome.v999
26
+ NoMethodError: undefined method `v999` for Platform::Mac_10_6_chrome:Module
27
27
  ```
28
28
 
29
-
30
29
  Advantages over magic strings:
31
30
 
32
31
  - RubyMine auto completes the values
@@ -44,494 +43,502 @@ Intended to be used with the [sauce_ruby gem.](https://github.com/saucelabs/sauc
44
43
  $ rspec
45
44
 
46
45
  mac_10_6
47
- Platforms.mac_10_6.ipad.v4_3
48
- Platforms.mac_10_6.ipad.v5_0
49
- Platforms.mac_10_6.firefox.v4
50
- Platforms.mac_10_6.firefox.v5
51
- Platforms.mac_10_6.firefox.v6
52
- Platforms.mac_10_6.firefox.v7
53
- Platforms.mac_10_6.firefox.v8
54
- Platforms.mac_10_6.firefox.v9
55
- Platforms.mac_10_6.firefox.v10
56
- Platforms.mac_10_6.firefox.v11
57
- Platforms.mac_10_6.firefox.v12
58
- Platforms.mac_10_6.firefox.v13
59
- Platforms.mac_10_6.firefox.v14
60
- Platforms.mac_10_6.firefox.v15
61
- Platforms.mac_10_6.firefox.v16
62
- Platforms.mac_10_6.firefox.v17
63
- Platforms.mac_10_6.firefox.v18
64
- Platforms.mac_10_6.firefox.v19
65
- Platforms.mac_10_6.firefox.v20
66
- Platforms.mac_10_6.firefox.v21
67
- Platforms.mac_10_6.firefox.v22
68
- Platforms.mac_10_6.firefox.v23
69
- Platforms.mac_10_6.firefox.v24
70
- Platforms.mac_10_6.firefox.v25
71
- Platforms.mac_10_6.firefox.v26
72
- Platforms.mac_10_6.firefox.v27
73
- Platforms.mac_10_6.firefox.v28
74
- Platforms.mac_10_6.firefox.v29
75
- Platforms.mac_10_6.firefox.v30
76
- Platforms.mac_10_6.firefox.v31
77
- Platforms.mac_10_6.firefox.v32
78
- Platforms.mac_10_6.firefox.v33
79
- Platforms.mac_10_6.firefox.v34
80
- Platforms.mac_10_6.firefox.v35
81
- Platforms.mac_10_6.firefox.v36
82
- Platforms.mac_10_6.firefox.v37
83
- Platforms.mac_10_6.firefox.beta
84
- Platforms.mac_10_6.firefox.dev
85
- Platforms.mac_10_6.iphone.v4_3
86
- Platforms.mac_10_6.iphone.v5_0
87
- Platforms.mac_10_6.safari.v5
88
- Platforms.mac_10_6.chrome.v27
89
- Platforms.mac_10_6.chrome.v28
90
- Platforms.mac_10_6.chrome.v31
91
- Platforms.mac_10_6.chrome.v32
92
- Platforms.mac_10_6.chrome.v33
93
- Platforms.mac_10_6.chrome.v34
94
- Platforms.mac_10_6.chrome.v35
95
- Platforms.mac_10_6.chrome.v36
96
- Platforms.mac_10_6.chrome.v37
97
- Platforms.mac_10_6.chrome.v38
98
- Platforms.mac_10_6.chrome.v39
99
- Platforms.mac_10_6.chrome.v40
100
- Platforms.mac_10_6.chrome.v41
101
- Platforms.mac_10_6.chrome.v42
102
- Platforms.mac_10_6.chrome.beta
103
- Platforms.mac_10_6.chrome.dev
46
+ Platform.mac_10_6.ipad.v4_3
47
+ Platform.mac_10_6.ipad.v5_0
48
+ Platform.mac_10_6.firefox.v4
49
+ Platform.mac_10_6.firefox.v5
50
+ Platform.mac_10_6.firefox.v6
51
+ Platform.mac_10_6.firefox.v7
52
+ Platform.mac_10_6.firefox.v8
53
+ Platform.mac_10_6.firefox.v9
54
+ Platform.mac_10_6.firefox.v10
55
+ Platform.mac_10_6.firefox.v11
56
+ Platform.mac_10_6.firefox.v12
57
+ Platform.mac_10_6.firefox.v13
58
+ Platform.mac_10_6.firefox.v14
59
+ Platform.mac_10_6.firefox.v15
60
+ Platform.mac_10_6.firefox.v16
61
+ Platform.mac_10_6.firefox.v17
62
+ Platform.mac_10_6.firefox.v18
63
+ Platform.mac_10_6.firefox.v19
64
+ Platform.mac_10_6.firefox.v20
65
+ Platform.mac_10_6.firefox.v21
66
+ Platform.mac_10_6.firefox.v22
67
+ Platform.mac_10_6.firefox.v23
68
+ Platform.mac_10_6.firefox.v24
69
+ Platform.mac_10_6.firefox.v25
70
+ Platform.mac_10_6.firefox.v26
71
+ Platform.mac_10_6.firefox.v27
72
+ Platform.mac_10_6.firefox.v28
73
+ Platform.mac_10_6.firefox.v29
74
+ Platform.mac_10_6.firefox.v30
75
+ Platform.mac_10_6.firefox.v31
76
+ Platform.mac_10_6.firefox.v32
77
+ Platform.mac_10_6.firefox.v33
78
+ Platform.mac_10_6.firefox.v34
79
+ Platform.mac_10_6.firefox.v35
80
+ Platform.mac_10_6.firefox.v36
81
+ Platform.mac_10_6.firefox.v37
82
+ Platform.mac_10_6.firefox.beta
83
+ Platform.mac_10_6.firefox.dev
84
+ Platform.mac_10_6.iphone.v4_3
85
+ Platform.mac_10_6.iphone.v5_0
86
+ Platform.mac_10_6.safari.v5
87
+ Platform.mac_10_6.chrome.v27
88
+ Platform.mac_10_6.chrome.v28
89
+ Platform.mac_10_6.chrome.v31
90
+ Platform.mac_10_6.chrome.v32
91
+ Platform.mac_10_6.chrome.v33
92
+ Platform.mac_10_6.chrome.v34
93
+ Platform.mac_10_6.chrome.v35
94
+ Platform.mac_10_6.chrome.v36
95
+ Platform.mac_10_6.chrome.v37
96
+ Platform.mac_10_6.chrome.v38
97
+ Platform.mac_10_6.chrome.v39
98
+ Platform.mac_10_6.chrome.v40
99
+ Platform.mac_10_6.chrome.v41
100
+ Platform.mac_10_6.chrome.v42
101
+ Platform.mac_10_6.chrome.v43
102
+ Platform.mac_10_6.chrome.beta
103
+ Platform.mac_10_6.chrome.dev
104
104
 
105
105
  mac_10_9
106
- Platforms.mac_10_9.ipad.v7_0
107
- Platforms.mac_10_9.ipad.v7_1
108
- Platforms.mac_10_9.firefox.v4
109
- Platforms.mac_10_9.firefox.v5
110
- Platforms.mac_10_9.firefox.v6
111
- Platforms.mac_10_9.firefox.v7
112
- Platforms.mac_10_9.firefox.v8
113
- Platforms.mac_10_9.firefox.v9
114
- Platforms.mac_10_9.firefox.v10
115
- Platforms.mac_10_9.firefox.v11
116
- Platforms.mac_10_9.firefox.v12
117
- Platforms.mac_10_9.firefox.v13
118
- Platforms.mac_10_9.firefox.v14
119
- Platforms.mac_10_9.firefox.v15
120
- Platforms.mac_10_9.firefox.v16
121
- Platforms.mac_10_9.firefox.v17
122
- Platforms.mac_10_9.firefox.v18
123
- Platforms.mac_10_9.firefox.v19
124
- Platforms.mac_10_9.firefox.v20
125
- Platforms.mac_10_9.firefox.v21
126
- Platforms.mac_10_9.firefox.v22
127
- Platforms.mac_10_9.firefox.v23
128
- Platforms.mac_10_9.firefox.v24
129
- Platforms.mac_10_9.firefox.v25
130
- Platforms.mac_10_9.firefox.v26
131
- Platforms.mac_10_9.firefox.v27
132
- Platforms.mac_10_9.firefox.v28
133
- Platforms.mac_10_9.firefox.v29
134
- Platforms.mac_10_9.firefox.v30
135
- Platforms.mac_10_9.firefox.v31
136
- Platforms.mac_10_9.firefox.v32
137
- Platforms.mac_10_9.firefox.v33
138
- Platforms.mac_10_9.firefox.v34
139
- Platforms.mac_10_9.firefox.v35
140
- Platforms.mac_10_9.firefox.v36
141
- Platforms.mac_10_9.firefox.v37
142
- Platforms.mac_10_9.firefox.beta
143
- Platforms.mac_10_9.firefox.dev
144
- Platforms.mac_10_9.iphone.v7_0
145
- Platforms.mac_10_9.iphone.v7_1
146
- Platforms.mac_10_9.safari.v7
147
- Platforms.mac_10_9.chrome.v31
148
- Platforms.mac_10_9.chrome.v32
149
- Platforms.mac_10_9.chrome.v33
150
- Platforms.mac_10_9.chrome.v34
151
- Platforms.mac_10_9.chrome.v35
152
- Platforms.mac_10_9.chrome.v36
153
- Platforms.mac_10_9.chrome.v37
154
- Platforms.mac_10_9.chrome.v38
155
- Platforms.mac_10_9.chrome.v39
156
- Platforms.mac_10_9.chrome.v40
157
- Platforms.mac_10_9.chrome.v41
158
- Platforms.mac_10_9.chrome.v42
159
- Platforms.mac_10_9.chrome.beta
160
- Platforms.mac_10_9.chrome.dev
106
+ Platform.mac_10_9.ipad.v7_0
107
+ Platform.mac_10_9.ipad.v7_1
108
+ Platform.mac_10_9.firefox.v4
109
+ Platform.mac_10_9.firefox.v5
110
+ Platform.mac_10_9.firefox.v6
111
+ Platform.mac_10_9.firefox.v7
112
+ Platform.mac_10_9.firefox.v8
113
+ Platform.mac_10_9.firefox.v9
114
+ Platform.mac_10_9.firefox.v10
115
+ Platform.mac_10_9.firefox.v11
116
+ Platform.mac_10_9.firefox.v12
117
+ Platform.mac_10_9.firefox.v13
118
+ Platform.mac_10_9.firefox.v14
119
+ Platform.mac_10_9.firefox.v15
120
+ Platform.mac_10_9.firefox.v16
121
+ Platform.mac_10_9.firefox.v17
122
+ Platform.mac_10_9.firefox.v18
123
+ Platform.mac_10_9.firefox.v19
124
+ Platform.mac_10_9.firefox.v20
125
+ Platform.mac_10_9.firefox.v21
126
+ Platform.mac_10_9.firefox.v22
127
+ Platform.mac_10_9.firefox.v23
128
+ Platform.mac_10_9.firefox.v24
129
+ Platform.mac_10_9.firefox.v25
130
+ Platform.mac_10_9.firefox.v26
131
+ Platform.mac_10_9.firefox.v27
132
+ Platform.mac_10_9.firefox.v28
133
+ Platform.mac_10_9.firefox.v29
134
+ Platform.mac_10_9.firefox.v30
135
+ Platform.mac_10_9.firefox.v31
136
+ Platform.mac_10_9.firefox.v32
137
+ Platform.mac_10_9.firefox.v33
138
+ Platform.mac_10_9.firefox.v34
139
+ Platform.mac_10_9.firefox.v35
140
+ Platform.mac_10_9.firefox.v36
141
+ Platform.mac_10_9.firefox.v37
142
+ Platform.mac_10_9.firefox.beta
143
+ Platform.mac_10_9.firefox.dev
144
+ Platform.mac_10_9.iphone.v7_0
145
+ Platform.mac_10_9.iphone.v7_1
146
+ Platform.mac_10_9.safari.v7
147
+ Platform.mac_10_9.chrome.v31
148
+ Platform.mac_10_9.chrome.v32
149
+ Platform.mac_10_9.chrome.v33
150
+ Platform.mac_10_9.chrome.v34
151
+ Platform.mac_10_9.chrome.v35
152
+ Platform.mac_10_9.chrome.v36
153
+ Platform.mac_10_9.chrome.v37
154
+ Platform.mac_10_9.chrome.v38
155
+ Platform.mac_10_9.chrome.v39
156
+ Platform.mac_10_9.chrome.v40
157
+ Platform.mac_10_9.chrome.v41
158
+ Platform.mac_10_9.chrome.v42
159
+ Platform.mac_10_9.chrome.v43
160
+ Platform.mac_10_9.chrome.beta
161
+ Platform.mac_10_9.chrome.dev
161
162
 
162
163
  windows_2003
163
- Platforms.windows_2003.opera.v11
164
- Platforms.windows_2003.opera.v12
165
- Platforms.windows_2003.internet_explorer.v8
166
- Platforms.windows_2003.internet_explorer.v6
167
- Platforms.windows_2003.internet_explorer.v7
168
- Platforms.windows_2003.firefox.v3_0
169
- Platforms.windows_2003.firefox.v3_5
170
- Platforms.windows_2003.firefox.v3_6
171
- Platforms.windows_2003.firefox.v4
172
- Platforms.windows_2003.firefox.v5
173
- Platforms.windows_2003.firefox.v6
174
- Platforms.windows_2003.firefox.v7
175
- Platforms.windows_2003.firefox.v8
176
- Platforms.windows_2003.firefox.v9
177
- Platforms.windows_2003.firefox.v10
178
- Platforms.windows_2003.firefox.v11
179
- Platforms.windows_2003.firefox.v12
180
- Platforms.windows_2003.firefox.v13
181
- Platforms.windows_2003.firefox.v14
182
- Platforms.windows_2003.firefox.v15
183
- Platforms.windows_2003.firefox.v16
184
- Platforms.windows_2003.firefox.v17
185
- Platforms.windows_2003.firefox.v18
186
- Platforms.windows_2003.firefox.v19
187
- Platforms.windows_2003.firefox.v20
188
- Platforms.windows_2003.firefox.v21
189
- Platforms.windows_2003.firefox.v22
190
- Platforms.windows_2003.firefox.v23
191
- Platforms.windows_2003.firefox.v24
192
- Platforms.windows_2003.firefox.v25
193
- Platforms.windows_2003.firefox.v26
194
- Platforms.windows_2003.firefox.v27
195
- Platforms.windows_2003.firefox.v28
196
- Platforms.windows_2003.firefox.v29
197
- Platforms.windows_2003.firefox.v30
198
- Platforms.windows_2003.firefox.v31
199
- Platforms.windows_2003.firefox.v32
200
- Platforms.windows_2003.firefox.v33
201
- Platforms.windows_2003.firefox.v34
202
- Platforms.windows_2003.firefox.v35
203
- Platforms.windows_2003.firefox.v36
204
- Platforms.windows_2003.firefox.v37
205
- Platforms.windows_2003.firefox.beta
206
- Platforms.windows_2003.firefox.dev
207
- Platforms.windows_2003.chrome.v26
208
- Platforms.windows_2003.chrome.v27
209
- Platforms.windows_2003.chrome.v28
210
- Platforms.windows_2003.chrome.v29
211
- Platforms.windows_2003.chrome.v30
212
- Platforms.windows_2003.chrome.v31
213
- Platforms.windows_2003.chrome.v32
214
- Platforms.windows_2003.chrome.v33
215
- Platforms.windows_2003.chrome.v34
216
- Platforms.windows_2003.chrome.v35
217
- Platforms.windows_2003.chrome.v36
218
- Platforms.windows_2003.chrome.v37
219
- Platforms.windows_2003.chrome.v38
220
- Platforms.windows_2003.chrome.v39
221
- Platforms.windows_2003.chrome.v40
222
- Platforms.windows_2003.chrome.v41
223
- Platforms.windows_2003.chrome.v42
224
- Platforms.windows_2003.chrome.beta
225
- Platforms.windows_2003.chrome.dev
164
+ Platform.windows_xp.opera.v11
165
+ Platform.windows_xp.opera.v12
166
+ Platform.windows_xp.internet_explorer.v8
167
+ Platform.windows_xp.internet_explorer.v6
168
+ Platform.windows_xp.internet_explorer.v7
169
+ Platform.windows_xp.firefox.v3_0
170
+ Platform.windows_xp.firefox.v3_5
171
+ Platform.windows_xp.firefox.v3_6
172
+ Platform.windows_xp.firefox.v4
173
+ Platform.windows_xp.firefox.v5
174
+ Platform.windows_xp.firefox.v6
175
+ Platform.windows_xp.firefox.v7
176
+ Platform.windows_xp.firefox.v8
177
+ Platform.windows_xp.firefox.v9
178
+ Platform.windows_xp.firefox.v10
179
+ Platform.windows_xp.firefox.v11
180
+ Platform.windows_xp.firefox.v12
181
+ Platform.windows_xp.firefox.v13
182
+ Platform.windows_xp.firefox.v14
183
+ Platform.windows_xp.firefox.v15
184
+ Platform.windows_xp.firefox.v16
185
+ Platform.windows_xp.firefox.v17
186
+ Platform.windows_xp.firefox.v18
187
+ Platform.windows_xp.firefox.v19
188
+ Platform.windows_xp.firefox.v20
189
+ Platform.windows_xp.firefox.v21
190
+ Platform.windows_xp.firefox.v22
191
+ Platform.windows_xp.firefox.v23
192
+ Platform.windows_xp.firefox.v24
193
+ Platform.windows_xp.firefox.v25
194
+ Platform.windows_xp.firefox.v26
195
+ Platform.windows_xp.firefox.v27
196
+ Platform.windows_xp.firefox.v28
197
+ Platform.windows_xp.firefox.v29
198
+ Platform.windows_xp.firefox.v30
199
+ Platform.windows_xp.firefox.v31
200
+ Platform.windows_xp.firefox.v32
201
+ Platform.windows_xp.firefox.v33
202
+ Platform.windows_xp.firefox.v34
203
+ Platform.windows_xp.firefox.v35
204
+ Platform.windows_xp.firefox.v36
205
+ Platform.windows_xp.firefox.v37
206
+ Platform.windows_xp.firefox.beta
207
+ Platform.windows_xp.firefox.dev
208
+ Platform.windows_xp.chrome.v26
209
+ Platform.windows_xp.chrome.v27
210
+ Platform.windows_xp.chrome.v28
211
+ Platform.windows_xp.chrome.v29
212
+ Platform.windows_xp.chrome.v30
213
+ Platform.windows_xp.chrome.v31
214
+ Platform.windows_xp.chrome.v32
215
+ Platform.windows_xp.chrome.v33
216
+ Platform.windows_xp.chrome.v34
217
+ Platform.windows_xp.chrome.v35
218
+ Platform.windows_xp.chrome.v36
219
+ Platform.windows_xp.chrome.v37
220
+ Platform.windows_xp.chrome.v38
221
+ Platform.windows_xp.chrome.v39
222
+ Platform.windows_xp.chrome.v40
223
+ Platform.windows_xp.chrome.v41
224
+ Platform.windows_xp.chrome.v42
225
+ Platform.windows_xp.chrome.v43
226
+ Platform.windows_xp.chrome.beta
227
+ Platform.windows_xp.chrome.dev
226
228
 
227
229
  mac_10_8
228
- Platforms.mac_10_8.ipad.v5_1
229
- Platforms.mac_10_8.ipad.v6_0
230
- Platforms.mac_10_8.ipad.v6_1
231
- Platforms.mac_10_8.iphone.v5_1
232
- Platforms.mac_10_8.iphone.v6_0
233
- Platforms.mac_10_8.iphone.v6_1
234
- Platforms.mac_10_8.safari.v6
235
- Platforms.mac_10_8.chrome.v27
236
- Platforms.mac_10_8.chrome.v28
237
- Platforms.mac_10_8.chrome.v31
238
- Platforms.mac_10_8.chrome.v32
239
- Platforms.mac_10_8.chrome.v33
240
- Platforms.mac_10_8.chrome.v34
241
- Platforms.mac_10_8.chrome.v35
242
- Platforms.mac_10_8.chrome.v36
243
- Platforms.mac_10_8.chrome.v37
244
- Platforms.mac_10_8.chrome.v38
245
- Platforms.mac_10_8.chrome.v39
246
- Platforms.mac_10_8.chrome.v40
247
- Platforms.mac_10_8.chrome.v41
248
- Platforms.mac_10_8.chrome.v42
249
- Platforms.mac_10_8.chrome.beta
250
- Platforms.mac_10_8.chrome.dev
230
+ Platform.mac_10_8.ipad.v5_1
231
+ Platform.mac_10_8.ipad.v6_0
232
+ Platform.mac_10_8.ipad.v6_1
233
+ Platform.mac_10_8.iphone.v5_1
234
+ Platform.mac_10_8.iphone.v6_0
235
+ Platform.mac_10_8.iphone.v6_1
236
+ Platform.mac_10_8.safari.v6
237
+ Platform.mac_10_8.chrome.v27
238
+ Platform.mac_10_8.chrome.v28
239
+ Platform.mac_10_8.chrome.v31
240
+ Platform.mac_10_8.chrome.v32
241
+ Platform.mac_10_8.chrome.v33
242
+ Platform.mac_10_8.chrome.v34
243
+ Platform.mac_10_8.chrome.v35
244
+ Platform.mac_10_8.chrome.v36
245
+ Platform.mac_10_8.chrome.v37
246
+ Platform.mac_10_8.chrome.v38
247
+ Platform.mac_10_8.chrome.v39
248
+ Platform.mac_10_8.chrome.v40
249
+ Platform.mac_10_8.chrome.v41
250
+ Platform.mac_10_8.chrome.v42
251
+ Platform.mac_10_8.chrome.v43
252
+ Platform.mac_10_8.chrome.beta
253
+ Platform.mac_10_8.chrome.dev
251
254
 
252
255
  windows_2012
253
- Platforms.windows_2012.internet_explorer.v10
254
- Platforms.windows_2012.firefox.v3_0
255
- Platforms.windows_2012.firefox.v3_5
256
- Platforms.windows_2012.firefox.v3_6
257
- Platforms.windows_2012.firefox.v4
258
- Platforms.windows_2012.firefox.v5
259
- Platforms.windows_2012.firefox.v6
260
- Platforms.windows_2012.firefox.v7
261
- Platforms.windows_2012.firefox.v8
262
- Platforms.windows_2012.firefox.v9
263
- Platforms.windows_2012.firefox.v10
264
- Platforms.windows_2012.firefox.v11
265
- Platforms.windows_2012.firefox.v12
266
- Platforms.windows_2012.firefox.v13
267
- Platforms.windows_2012.firefox.v14
268
- Platforms.windows_2012.firefox.v15
269
- Platforms.windows_2012.firefox.v16
270
- Platforms.windows_2012.firefox.v17
271
- Platforms.windows_2012.firefox.v18
272
- Platforms.windows_2012.firefox.v19
273
- Platforms.windows_2012.firefox.v20
274
- Platforms.windows_2012.firefox.v21
275
- Platforms.windows_2012.firefox.v22
276
- Platforms.windows_2012.firefox.v23
277
- Platforms.windows_2012.firefox.v24
278
- Platforms.windows_2012.firefox.v25
279
- Platforms.windows_2012.firefox.v26
280
- Platforms.windows_2012.firefox.v27
281
- Platforms.windows_2012.firefox.v28
282
- Platforms.windows_2012.firefox.v29
283
- Platforms.windows_2012.firefox.v30
284
- Platforms.windows_2012.firefox.v31
285
- Platforms.windows_2012.firefox.v32
286
- Platforms.windows_2012.firefox.v33
287
- Platforms.windows_2012.firefox.v34
288
- Platforms.windows_2012.firefox.v35
289
- Platforms.windows_2012.firefox.v36
290
- Platforms.windows_2012.firefox.v37
291
- Platforms.windows_2012.firefox.beta
292
- Platforms.windows_2012.firefox.dev
293
- Platforms.windows_2012.chrome.v26
294
- Platforms.windows_2012.chrome.v27
295
- Platforms.windows_2012.chrome.v28
296
- Platforms.windows_2012.chrome.v29
297
- Platforms.windows_2012.chrome.v30
298
- Platforms.windows_2012.chrome.v31
299
- Platforms.windows_2012.chrome.v32
300
- Platforms.windows_2012.chrome.v33
301
- Platforms.windows_2012.chrome.v34
302
- Platforms.windows_2012.chrome.v35
303
- Platforms.windows_2012.chrome.v36
304
- Platforms.windows_2012.chrome.v37
305
- Platforms.windows_2012.chrome.v38
306
- Platforms.windows_2012.chrome.v39
307
- Platforms.windows_2012.chrome.v40
308
- Platforms.windows_2012.chrome.v41
309
- Platforms.windows_2012.chrome.v42
310
- Platforms.windows_2012.chrome.beta
311
- Platforms.windows_2012.chrome.dev
256
+ Platform.windows_8.internet_explorer.v10
257
+ Platform.windows_8.firefox.v3_0
258
+ Platform.windows_8.firefox.v3_5
259
+ Platform.windows_8.firefox.v3_6
260
+ Platform.windows_8.firefox.v4
261
+ Platform.windows_8.firefox.v5
262
+ Platform.windows_8.firefox.v6
263
+ Platform.windows_8.firefox.v7
264
+ Platform.windows_8.firefox.v8
265
+ Platform.windows_8.firefox.v9
266
+ Platform.windows_8.firefox.v10
267
+ Platform.windows_8.firefox.v11
268
+ Platform.windows_8.firefox.v12
269
+ Platform.windows_8.firefox.v13
270
+ Platform.windows_8.firefox.v14
271
+ Platform.windows_8.firefox.v15
272
+ Platform.windows_8.firefox.v16
273
+ Platform.windows_8.firefox.v17
274
+ Platform.windows_8.firefox.v18
275
+ Platform.windows_8.firefox.v19
276
+ Platform.windows_8.firefox.v20
277
+ Platform.windows_8.firefox.v21
278
+ Platform.windows_8.firefox.v22
279
+ Platform.windows_8.firefox.v23
280
+ Platform.windows_8.firefox.v24
281
+ Platform.windows_8.firefox.v25
282
+ Platform.windows_8.firefox.v26
283
+ Platform.windows_8.firefox.v27
284
+ Platform.windows_8.firefox.v28
285
+ Platform.windows_8.firefox.v29
286
+ Platform.windows_8.firefox.v30
287
+ Platform.windows_8.firefox.v31
288
+ Platform.windows_8.firefox.v32
289
+ Platform.windows_8.firefox.v33
290
+ Platform.windows_8.firefox.v34
291
+ Platform.windows_8.firefox.v35
292
+ Platform.windows_8.firefox.v36
293
+ Platform.windows_8.firefox.v37
294
+ Platform.windows_8.firefox.beta
295
+ Platform.windows_8.firefox.dev
296
+ Platform.windows_8.chrome.v26
297
+ Platform.windows_8.chrome.v27
298
+ Platform.windows_8.chrome.v28
299
+ Platform.windows_8.chrome.v29
300
+ Platform.windows_8.chrome.v30
301
+ Platform.windows_8.chrome.v31
302
+ Platform.windows_8.chrome.v32
303
+ Platform.windows_8.chrome.v33
304
+ Platform.windows_8.chrome.v34
305
+ Platform.windows_8.chrome.v35
306
+ Platform.windows_8.chrome.v36
307
+ Platform.windows_8.chrome.v37
308
+ Platform.windows_8.chrome.v38
309
+ Platform.windows_8.chrome.v39
310
+ Platform.windows_8.chrome.v40
311
+ Platform.windows_8.chrome.v41
312
+ Platform.windows_8.chrome.v42
313
+ Platform.windows_8.chrome.v43
314
+ Platform.windows_8.chrome.beta
315
+ Platform.windows_8.chrome.dev
312
316
 
313
317
  linux
314
- Platforms.linux.opera.v12
315
- Platforms.linux.lynx.v2_8_7
316
- Platforms.linux.firefox.v3_6
317
- Platforms.linux.firefox.v4
318
- Platforms.linux.firefox.v5
319
- Platforms.linux.firefox.v6
320
- Platforms.linux.firefox.v7
321
- Platforms.linux.firefox.v8
322
- Platforms.linux.firefox.v9
323
- Platforms.linux.firefox.v10
324
- Platforms.linux.firefox.v11
325
- Platforms.linux.firefox.v12
326
- Platforms.linux.firefox.v13
327
- Platforms.linux.firefox.v14
328
- Platforms.linux.firefox.v15
329
- Platforms.linux.firefox.v16
330
- Platforms.linux.firefox.v17
331
- Platforms.linux.firefox.v18
332
- Platforms.linux.firefox.v19
333
- Platforms.linux.firefox.v20
334
- Platforms.linux.firefox.v21
335
- Platforms.linux.firefox.v22
336
- Platforms.linux.firefox.v23
337
- Platforms.linux.firefox.v24
338
- Platforms.linux.firefox.v25
339
- Platforms.linux.firefox.v26
340
- Platforms.linux.firefox.v27
341
- Platforms.linux.firefox.v28
342
- Platforms.linux.firefox.v29
343
- Platforms.linux.firefox.v30
344
- Platforms.linux.firefox.v31
345
- Platforms.linux.firefox.v32
346
- Platforms.linux.firefox.v33
347
- Platforms.linux.firefox.v34
348
- Platforms.linux.firefox.v35
349
- Platforms.linux.firefox.v36
350
- Platforms.linux.firefox.v37
351
- Platforms.linux.firefox.beta
352
- Platforms.linux.firefox.dev
353
- Platforms.linux.chrome.v26
354
- Platforms.linux.chrome.v27
355
- Platforms.linux.chrome.v28
356
- Platforms.linux.chrome.v29
357
- Platforms.linux.chrome.v30
358
- Platforms.linux.chrome.v31
359
- Platforms.linux.chrome.v32
360
- Platforms.linux.chrome.v33
361
- Platforms.linux.chrome.v34
362
- Platforms.linux.chrome.v35
363
- Platforms.linux.chrome.v36
364
- Platforms.linux.chrome.v37
365
- Platforms.linux.chrome.v38
366
- Platforms.linux.chrome.v39
367
- Platforms.linux.chrome.v40
368
- Platforms.linux.chrome.v41
369
- Platforms.linux.chrome.v42
370
- Platforms.linux.chrome.beta
371
- Platforms.linux.chrome.dev
372
- Platforms.linux.android.v4_0
373
- Platforms.linux.android.v4_1
374
- Platforms.linux.android.v4_2
375
- Platforms.linux.android.v4_3
376
- Platforms.linux.android.v4_4
377
- Platforms.linux.android.v5_0
378
- Platforms.linux.android.v5_1
318
+ Platform.linux.opera.v12
319
+ Platform.linux.firefox.v3_6
320
+ Platform.linux.firefox.v4
321
+ Platform.linux.firefox.v5
322
+ Platform.linux.firefox.v6
323
+ Platform.linux.firefox.v7
324
+ Platform.linux.firefox.v8
325
+ Platform.linux.firefox.v9
326
+ Platform.linux.firefox.v10
327
+ Platform.linux.firefox.v11
328
+ Platform.linux.firefox.v12
329
+ Platform.linux.firefox.v13
330
+ Platform.linux.firefox.v14
331
+ Platform.linux.firefox.v15
332
+ Platform.linux.firefox.v16
333
+ Platform.linux.firefox.v17
334
+ Platform.linux.firefox.v18
335
+ Platform.linux.firefox.v19
336
+ Platform.linux.firefox.v20
337
+ Platform.linux.firefox.v21
338
+ Platform.linux.firefox.v22
339
+ Platform.linux.firefox.v23
340
+ Platform.linux.firefox.v24
341
+ Platform.linux.firefox.v25
342
+ Platform.linux.firefox.v26
343
+ Platform.linux.firefox.v27
344
+ Platform.linux.firefox.v28
345
+ Platform.linux.firefox.v29
346
+ Platform.linux.firefox.v30
347
+ Platform.linux.firefox.v31
348
+ Platform.linux.firefox.v32
349
+ Platform.linux.firefox.v33
350
+ Platform.linux.firefox.v34
351
+ Platform.linux.firefox.v35
352
+ Platform.linux.firefox.v36
353
+ Platform.linux.firefox.v37
354
+ Platform.linux.firefox.beta
355
+ Platform.linux.firefox.dev
356
+ Platform.linux.chrome.v26
357
+ Platform.linux.chrome.v27
358
+ Platform.linux.chrome.v28
359
+ Platform.linux.chrome.v29
360
+ Platform.linux.chrome.v30
361
+ Platform.linux.chrome.v31
362
+ Platform.linux.chrome.v32
363
+ Platform.linux.chrome.v33
364
+ Platform.linux.chrome.v34
365
+ Platform.linux.chrome.v35
366
+ Platform.linux.chrome.v36
367
+ Platform.linux.chrome.v37
368
+ Platform.linux.chrome.v38
369
+ Platform.linux.chrome.v39
370
+ Platform.linux.chrome.v40
371
+ Platform.linux.chrome.v41
372
+ Platform.linux.chrome.v42
373
+ Platform.linux.chrome.v43
374
+ Platform.linux.chrome.beta
375
+ Platform.linux.chrome.dev
376
+ Platform.linux.android.v4_0
377
+ Platform.linux.android.v4_1
378
+ Platform.linux.android.v4_2
379
+ Platform.linux.android.v4_3
380
+ Platform.linux.android.v4_4
381
+ Platform.linux.android.v5_0
382
+ Platform.linux.android.v5_1
379
383
 
380
384
  windows_2012_r2
381
- Platforms.windows_2012_r2.internet_explorer.v11
382
- Platforms.windows_2012_r2.firefox.v3_0
383
- Platforms.windows_2012_r2.firefox.v3_5
384
- Platforms.windows_2012_r2.firefox.v3_6
385
- Platforms.windows_2012_r2.firefox.v4
386
- Platforms.windows_2012_r2.firefox.v5
387
- Platforms.windows_2012_r2.firefox.v6
388
- Platforms.windows_2012_r2.firefox.v7
389
- Platforms.windows_2012_r2.firefox.v8
390
- Platforms.windows_2012_r2.firefox.v9
391
- Platforms.windows_2012_r2.firefox.v10
392
- Platforms.windows_2012_r2.firefox.v11
393
- Platforms.windows_2012_r2.firefox.v12
394
- Platforms.windows_2012_r2.firefox.v13
395
- Platforms.windows_2012_r2.firefox.v14
396
- Platforms.windows_2012_r2.firefox.v15
397
- Platforms.windows_2012_r2.firefox.v16
398
- Platforms.windows_2012_r2.firefox.v17
399
- Platforms.windows_2012_r2.firefox.v18
400
- Platforms.windows_2012_r2.firefox.v19
401
- Platforms.windows_2012_r2.firefox.v20
402
- Platforms.windows_2012_r2.firefox.v21
403
- Platforms.windows_2012_r2.firefox.v22
404
- Platforms.windows_2012_r2.firefox.v23
405
- Platforms.windows_2012_r2.firefox.v24
406
- Platforms.windows_2012_r2.firefox.v25
407
- Platforms.windows_2012_r2.firefox.v26
408
- Platforms.windows_2012_r2.firefox.v27
409
- Platforms.windows_2012_r2.firefox.v28
410
- Platforms.windows_2012_r2.firefox.v29
411
- Platforms.windows_2012_r2.firefox.v30
412
- Platforms.windows_2012_r2.firefox.v31
413
- Platforms.windows_2012_r2.firefox.v32
414
- Platforms.windows_2012_r2.firefox.v33
415
- Platforms.windows_2012_r2.firefox.v34
416
- Platforms.windows_2012_r2.firefox.v35
417
- Platforms.windows_2012_r2.firefox.v36
418
- Platforms.windows_2012_r2.firefox.v37
419
- Platforms.windows_2012_r2.firefox.beta
420
- Platforms.windows_2012_r2.firefox.dev
421
- Platforms.windows_2012_r2.chrome.v26
422
- Platforms.windows_2012_r2.chrome.v27
423
- Platforms.windows_2012_r2.chrome.v28
424
- Platforms.windows_2012_r2.chrome.v29
425
- Platforms.windows_2012_r2.chrome.v30
426
- Platforms.windows_2012_r2.chrome.v31
427
- Platforms.windows_2012_r2.chrome.v32
428
- Platforms.windows_2012_r2.chrome.v33
429
- Platforms.windows_2012_r2.chrome.v34
430
- Platforms.windows_2012_r2.chrome.v35
431
- Platforms.windows_2012_r2.chrome.v36
432
- Platforms.windows_2012_r2.chrome.v37
433
- Platforms.windows_2012_r2.chrome.v38
434
- Platforms.windows_2012_r2.chrome.v39
435
- Platforms.windows_2012_r2.chrome.v40
436
- Platforms.windows_2012_r2.chrome.v41
437
- Platforms.windows_2012_r2.chrome.v42
438
- Platforms.windows_2012_r2.chrome.beta
439
- Platforms.windows_2012_r2.chrome.dev
385
+ Platform.windows_8_1.internet_explorer.v11
386
+ Platform.windows_8_1.firefox.v3_0
387
+ Platform.windows_8_1.firefox.v3_5
388
+ Platform.windows_8_1.firefox.v3_6
389
+ Platform.windows_8_1.firefox.v4
390
+ Platform.windows_8_1.firefox.v5
391
+ Platform.windows_8_1.firefox.v6
392
+ Platform.windows_8_1.firefox.v7
393
+ Platform.windows_8_1.firefox.v8
394
+ Platform.windows_8_1.firefox.v9
395
+ Platform.windows_8_1.firefox.v10
396
+ Platform.windows_8_1.firefox.v11
397
+ Platform.windows_8_1.firefox.v12
398
+ Platform.windows_8_1.firefox.v13
399
+ Platform.windows_8_1.firefox.v14
400
+ Platform.windows_8_1.firefox.v15
401
+ Platform.windows_8_1.firefox.v16
402
+ Platform.windows_8_1.firefox.v17
403
+ Platform.windows_8_1.firefox.v18
404
+ Platform.windows_8_1.firefox.v19
405
+ Platform.windows_8_1.firefox.v20
406
+ Platform.windows_8_1.firefox.v21
407
+ Platform.windows_8_1.firefox.v22
408
+ Platform.windows_8_1.firefox.v23
409
+ Platform.windows_8_1.firefox.v24
410
+ Platform.windows_8_1.firefox.v25
411
+ Platform.windows_8_1.firefox.v26
412
+ Platform.windows_8_1.firefox.v27
413
+ Platform.windows_8_1.firefox.v28
414
+ Platform.windows_8_1.firefox.v29
415
+ Platform.windows_8_1.firefox.v30
416
+ Platform.windows_8_1.firefox.v31
417
+ Platform.windows_8_1.firefox.v32
418
+ Platform.windows_8_1.firefox.v33
419
+ Platform.windows_8_1.firefox.v34
420
+ Platform.windows_8_1.firefox.v35
421
+ Platform.windows_8_1.firefox.v36
422
+ Platform.windows_8_1.firefox.v37
423
+ Platform.windows_8_1.firefox.beta
424
+ Platform.windows_8_1.firefox.dev
425
+ Platform.windows_8_1.chrome.v26
426
+ Platform.windows_8_1.chrome.v27
427
+ Platform.windows_8_1.chrome.v28
428
+ Platform.windows_8_1.chrome.v29
429
+ Platform.windows_8_1.chrome.v30
430
+ Platform.windows_8_1.chrome.v31
431
+ Platform.windows_8_1.chrome.v32
432
+ Platform.windows_8_1.chrome.v33
433
+ Platform.windows_8_1.chrome.v34
434
+ Platform.windows_8_1.chrome.v35
435
+ Platform.windows_8_1.chrome.v36
436
+ Platform.windows_8_1.chrome.v37
437
+ Platform.windows_8_1.chrome.v38
438
+ Platform.windows_8_1.chrome.v39
439
+ Platform.windows_8_1.chrome.v40
440
+ Platform.windows_8_1.chrome.v41
441
+ Platform.windows_8_1.chrome.v42
442
+ Platform.windows_8_1.chrome.v43
443
+ Platform.windows_8_1.chrome.beta
444
+ Platform.windows_8_1.chrome.dev
440
445
 
441
446
  windows_2008
442
- Platforms.windows_2008.internet_explorer.v8
443
- Platforms.windows_2008.internet_explorer.v9
444
- Platforms.windows_2008.internet_explorer.v10
445
- Platforms.windows_2008.internet_explorer.v11
446
- Platforms.windows_2008.opera.v11
447
- Platforms.windows_2008.opera.v12
448
- Platforms.windows_2008.firefox.v3_0
449
- Platforms.windows_2008.firefox.v3_5
450
- Platforms.windows_2008.firefox.v3_6
451
- Platforms.windows_2008.firefox.v4
452
- Platforms.windows_2008.firefox.v5
453
- Platforms.windows_2008.firefox.v6
454
- Platforms.windows_2008.firefox.v7
455
- Platforms.windows_2008.firefox.v8
456
- Platforms.windows_2008.firefox.v9
457
- Platforms.windows_2008.firefox.v10
458
- Platforms.windows_2008.firefox.v11
459
- Platforms.windows_2008.firefox.v12
460
- Platforms.windows_2008.firefox.v13
461
- Platforms.windows_2008.firefox.v14
462
- Platforms.windows_2008.firefox.v15
463
- Platforms.windows_2008.firefox.v16
464
- Platforms.windows_2008.firefox.v17
465
- Platforms.windows_2008.firefox.v18
466
- Platforms.windows_2008.firefox.v19
467
- Platforms.windows_2008.firefox.v20
468
- Platforms.windows_2008.firefox.v21
469
- Platforms.windows_2008.firefox.v22
470
- Platforms.windows_2008.firefox.v23
471
- Platforms.windows_2008.firefox.v24
472
- Platforms.windows_2008.firefox.v25
473
- Platforms.windows_2008.firefox.v26
474
- Platforms.windows_2008.firefox.v27
475
- Platforms.windows_2008.firefox.v28
476
- Platforms.windows_2008.firefox.v29
477
- Platforms.windows_2008.firefox.v30
478
- Platforms.windows_2008.firefox.v31
479
- Platforms.windows_2008.firefox.v32
480
- Platforms.windows_2008.firefox.v33
481
- Platforms.windows_2008.firefox.v34
482
- Platforms.windows_2008.firefox.v35
483
- Platforms.windows_2008.firefox.v36
484
- Platforms.windows_2008.firefox.v37
485
- Platforms.windows_2008.firefox.beta
486
- Platforms.windows_2008.firefox.dev
487
- Platforms.windows_2008.safari.v5
488
- Platforms.windows_2008.chrome.v26
489
- Platforms.windows_2008.chrome.v27
490
- Platforms.windows_2008.chrome.v28
491
- Platforms.windows_2008.chrome.v29
492
- Platforms.windows_2008.chrome.v30
493
- Platforms.windows_2008.chrome.v31
494
- Platforms.windows_2008.chrome.v32
495
- Platforms.windows_2008.chrome.v33
496
- Platforms.windows_2008.chrome.v34
497
- Platforms.windows_2008.chrome.v35
498
- Platforms.windows_2008.chrome.v36
499
- Platforms.windows_2008.chrome.v37
500
- Platforms.windows_2008.chrome.v38
501
- Platforms.windows_2008.chrome.v39
502
- Platforms.windows_2008.chrome.v40
503
- Platforms.windows_2008.chrome.v41
504
- Platforms.windows_2008.chrome.v42
505
- Platforms.windows_2008.chrome.beta
506
- Platforms.windows_2008.chrome.dev
447
+ Platform.windows_7.internet_explorer.v8
448
+ Platform.windows_7.internet_explorer.v9
449
+ Platform.windows_7.internet_explorer.v10
450
+ Platform.windows_7.internet_explorer.v11
451
+ Platform.windows_7.opera.v11
452
+ Platform.windows_7.opera.v12
453
+ Platform.windows_7.firefox.v3_0
454
+ Platform.windows_7.firefox.v3_5
455
+ Platform.windows_7.firefox.v3_6
456
+ Platform.windows_7.firefox.v4
457
+ Platform.windows_7.firefox.v5
458
+ Platform.windows_7.firefox.v6
459
+ Platform.windows_7.firefox.v7
460
+ Platform.windows_7.firefox.v8
461
+ Platform.windows_7.firefox.v9
462
+ Platform.windows_7.firefox.v10
463
+ Platform.windows_7.firefox.v11
464
+ Platform.windows_7.firefox.v12
465
+ Platform.windows_7.firefox.v13
466
+ Platform.windows_7.firefox.v14
467
+ Platform.windows_7.firefox.v15
468
+ Platform.windows_7.firefox.v16
469
+ Platform.windows_7.firefox.v17
470
+ Platform.windows_7.firefox.v18
471
+ Platform.windows_7.firefox.v19
472
+ Platform.windows_7.firefox.v20
473
+ Platform.windows_7.firefox.v21
474
+ Platform.windows_7.firefox.v22
475
+ Platform.windows_7.firefox.v23
476
+ Platform.windows_7.firefox.v24
477
+ Platform.windows_7.firefox.v25
478
+ Platform.windows_7.firefox.v26
479
+ Platform.windows_7.firefox.v27
480
+ Platform.windows_7.firefox.v28
481
+ Platform.windows_7.firefox.v29
482
+ Platform.windows_7.firefox.v30
483
+ Platform.windows_7.firefox.v31
484
+ Platform.windows_7.firefox.v32
485
+ Platform.windows_7.firefox.v33
486
+ Platform.windows_7.firefox.v34
487
+ Platform.windows_7.firefox.v35
488
+ Platform.windows_7.firefox.v36
489
+ Platform.windows_7.firefox.v37
490
+ Platform.windows_7.firefox.beta
491
+ Platform.windows_7.firefox.dev
492
+ Platform.windows_7.safari.v5
493
+ Platform.windows_7.chrome.v26
494
+ Platform.windows_7.chrome.v27
495
+ Platform.windows_7.chrome.v28
496
+ Platform.windows_7.chrome.v29
497
+ Platform.windows_7.chrome.v30
498
+ Platform.windows_7.chrome.v31
499
+ Platform.windows_7.chrome.v32
500
+ Platform.windows_7.chrome.v33
501
+ Platform.windows_7.chrome.v34
502
+ Platform.windows_7.chrome.v35
503
+ Platform.windows_7.chrome.v36
504
+ Platform.windows_7.chrome.v37
505
+ Platform.windows_7.chrome.v38
506
+ Platform.windows_7.chrome.v39
507
+ Platform.windows_7.chrome.v40
508
+ Platform.windows_7.chrome.v41
509
+ Platform.windows_7.chrome.v42
510
+ Platform.windows_7.chrome.v43
511
+ Platform.windows_7.chrome.beta
512
+ Platform.windows_7.chrome.dev
507
513
 
508
514
  mac_10_10
509
- Platforms.mac_10_10.ipad.v7_1
510
- Platforms.mac_10_10.ipad.v8_0
511
- Platforms.mac_10_10.ipad.v8_1
512
- Platforms.mac_10_10.ipad.v8_2
513
- Platforms.mac_10_10.firefox.v32
514
- Platforms.mac_10_10.firefox.v33
515
- Platforms.mac_10_10.firefox.v34
516
- Platforms.mac_10_10.firefox.v35
517
- Platforms.mac_10_10.firefox.v36
518
- Platforms.mac_10_10.firefox.v37
519
- Platforms.mac_10_10.firefox.beta
520
- Platforms.mac_10_10.firefox.dev
521
- Platforms.mac_10_10.iphone.v7_1
522
- Platforms.mac_10_10.iphone.v8_0
523
- Platforms.mac_10_10.iphone.v8_1
524
- Platforms.mac_10_10.iphone.v8_2
525
- Platforms.mac_10_10.safari.v8
526
- Platforms.mac_10_10.chrome.v37
527
- Platforms.mac_10_10.chrome.v38
528
- Platforms.mac_10_10.chrome.v39
529
- Platforms.mac_10_10.chrome.v40
530
- Platforms.mac_10_10.chrome.v41
531
- Platforms.mac_10_10.chrome.v42
532
- Platforms.mac_10_10.chrome.beta
533
- Platforms.mac_10_10.chrome.dev
515
+ Platform.mac_10_10.ipad.v7_1
516
+ Platform.mac_10_10.ipad.v8_0
517
+ Platform.mac_10_10.ipad.v8_1
518
+ Platform.mac_10_10.ipad.v8_2
519
+ Platform.mac_10_10.firefox.v32
520
+ Platform.mac_10_10.firefox.v33
521
+ Platform.mac_10_10.firefox.v34
522
+ Platform.mac_10_10.firefox.v35
523
+ Platform.mac_10_10.firefox.v36
524
+ Platform.mac_10_10.firefox.v37
525
+ Platform.mac_10_10.firefox.beta
526
+ Platform.mac_10_10.firefox.dev
527
+ Platform.mac_10_10.iphone.v7_1
528
+ Platform.mac_10_10.iphone.v8_0
529
+ Platform.mac_10_10.iphone.v8_1
530
+ Platform.mac_10_10.iphone.v8_2
531
+ Platform.mac_10_10.safari.v8
532
+ Platform.mac_10_10.chrome.v37
533
+ Platform.mac_10_10.chrome.v38
534
+ Platform.mac_10_10.chrome.v39
535
+ Platform.mac_10_10.chrome.v40
536
+ Platform.mac_10_10.chrome.v41
537
+ Platform.mac_10_10.chrome.v42
538
+ Platform.mac_10_10.chrome.v43
539
+ Platform.mac_10_10.chrome.beta
540
+ Platform.mac_10_10.chrome.dev
534
541
 
535
- Finished in 0.09344 seconds (files took 0.25787 seconds to load)
536
- 471 examples, 0 failures
542
+ Finished in 0.16088 seconds (files took 0.32959 seconds to load)
543
+ 479 examples, 0 failures
537
544
  ```
data/release_notes.md CHANGED
@@ -1,3 +1,11 @@
1
+ #### v1.0.0 2015-06-06
2
+
3
+ - [c6069b0](https://github.com/bootstraponline/sauce_platforms/commit/c6069b0853cc74fd91bdfe7fb1aa4209419851b2) Release 1.0.0
4
+ - [12f1267](https://github.com/bootstraponline/sauce_platforms/commit/12f1267545efc04a8c409bb4c676b08cf0fcd01e) Update platform spec
5
+ - [44b6968](https://github.com/bootstraponline/sauce_platforms/commit/44b69687c85feb7c5bc941ccedbd0fc09cbdcfe5) Update platforms to use windows alias
6
+ - [548e995](https://github.com/bootstraponline/sauce_platforms/commit/548e995a609be425cd9a73786f4c0d23e256ba25) Update readme
7
+
8
+
1
9
  #### v0.0.2 2015-06-06
2
10
 
3
11
  - [0653bd9](https://github.com/bootstraponline/sauce_platforms/commit/0653bd9dfbd53343c50837bdc5d3dd6809f192ce) Release 0.0.2
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sauce_platforms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - code@bootstraponline.com