random_agent 0.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 +7 -0
- data/.gitignore +14 -0
- data/.travis.yml +10 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/LICENSE.txt +22 -0
- data/README.md +36 -0
- data/Rakefile +10 -0
- data/lib/random_agent.rb +8 -0
- data/lib/random_agent/list.rb +361 -0
- data/lib/random_agent/version.rb +3 -0
- data/random_agent.gemspec +26 -0
- data/spec/random_user_agent_spec.rb +7 -0
- data/spec/spec_helper.rb +5 -0
- metadata +130 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 39a10ca097736f0718c0bd6c0d2f81a882c353a7
|
4
|
+
data.tar.gz: a6bac1b6cac67f84d1fcd017c1391803628a6e39
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 66aa97c70062ac8a5277ada5b684c9eeaa50c9bd6fb7f2bed997fa633e496fde7690915254f749f62803c77dfd859b056e27ef2001b16115a53a2833afc79205
|
7
|
+
data.tar.gz: 4a7be6f77bddc6ff7cd636227dcde81d2127fd5cb05c73ff08d1ed90159f5627a3229381d9db8391a349c18e9606970195a23ecdb9b9439519eff73153c46e4e
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2014 Antoine Finkelstein
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
22
|
+
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 TODO: Write your name
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
# Random Agent
|
2
|
+
|
3
|
+
[](https://travis-ci.org/AntoineFinkelstein/random_agent)
|
4
|
+
[](https://coveralls.io/r/AntoineFinkelstein/random_agent?branch=master)
|
5
|
+
|
6
|
+
Get a random User-Agent. The more frequentily they're used, the more you will get them.
|
7
|
+
|
8
|
+
To get a UserAgent, it's quite simple :
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
RandomAgent.get
|
12
|
+
```
|
13
|
+
|
14
|
+
## Installation
|
15
|
+
|
16
|
+
Add this line to your application's Gemfile:
|
17
|
+
|
18
|
+
```ruby
|
19
|
+
gem "random_agent"
|
20
|
+
```
|
21
|
+
|
22
|
+
And then execute:
|
23
|
+
|
24
|
+
$ bundle
|
25
|
+
|
26
|
+
Or install it yourself as:
|
27
|
+
|
28
|
+
$ gem install random_agent
|
29
|
+
|
30
|
+
## Contributing
|
31
|
+
|
32
|
+
1. Fork it ( https://github.com/[my-github-username]/random_agent/fork )
|
33
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
34
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
35
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
36
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
data/lib/random_agent.rb
ADDED
@@ -0,0 +1,361 @@
|
|
1
|
+
module RandomAgent
|
2
|
+
def self.list
|
3
|
+
return @list if @list.nil? == false
|
4
|
+
@list = []
|
5
|
+
|
6
|
+
[
|
7
|
+
{
|
8
|
+
percentage: 89,
|
9
|
+
agent: "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36"
|
10
|
+
},
|
11
|
+
{
|
12
|
+
percentage: 61,
|
13
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10) AppleWebKit/600.1.25 (KHTML, like Gecko) Version/8.0 Safari/600.1.25"
|
14
|
+
},
|
15
|
+
{
|
16
|
+
percentage: 41,
|
17
|
+
agent: "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36"
|
18
|
+
},
|
19
|
+
{
|
20
|
+
percentage: 40,
|
21
|
+
agent: "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:33.0) Gecko/20100101 Firefox/33.0"
|
22
|
+
},
|
23
|
+
{
|
24
|
+
percentage: 35,
|
25
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
percentage: 25,
|
29
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/600.1.17 (KHTML, like Gecko) Version/7.1 Safari/537.85.10"
|
30
|
+
},
|
31
|
+
{
|
32
|
+
percentage: 24,
|
33
|
+
agent: "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"
|
34
|
+
},
|
35
|
+
{
|
36
|
+
percentage: 23,
|
37
|
+
agent: "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B411 Safari/600.1.4"
|
38
|
+
},
|
39
|
+
{
|
40
|
+
percentage: 23,
|
41
|
+
agent: "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
percentage: 19,
|
45
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36"
|
46
|
+
},
|
47
|
+
{
|
48
|
+
percentage: 17,
|
49
|
+
agent: "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36"
|
50
|
+
},
|
51
|
+
{
|
52
|
+
percentage: 16,
|
53
|
+
agent: "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
percentage: 16,
|
57
|
+
agent: "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:33.0) Gecko/20100101 Firefox/33.0"
|
58
|
+
},
|
59
|
+
{
|
60
|
+
percentage: 16,
|
61
|
+
agent: "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:33.0) Gecko/20100101 Firefox/33.0"
|
62
|
+
},
|
63
|
+
{
|
64
|
+
percentage: 16,
|
65
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.122 Safari/537.36"
|
66
|
+
},
|
67
|
+
{
|
68
|
+
percentage: 14,
|
69
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"
|
70
|
+
},
|
71
|
+
{
|
72
|
+
percentage: 13,
|
73
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:33.0) Gecko/20100101 Firefox/33.0"
|
74
|
+
},
|
75
|
+
{
|
76
|
+
percentage: 11,
|
77
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:33.0) Gecko/20100101 Firefox/33.0"
|
78
|
+
},
|
79
|
+
{
|
80
|
+
percentage: 11,
|
81
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.1.25 (KHTML, like Gecko) Version/8.0 Safari/600.1.25"
|
82
|
+
},
|
83
|
+
{
|
84
|
+
percentage: 11,
|
85
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.122 Safari/537.36"
|
86
|
+
},
|
87
|
+
{
|
88
|
+
percentage: 11,
|
89
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"
|
90
|
+
},
|
91
|
+
{
|
92
|
+
percentage: 10,
|
93
|
+
agent: "Mozilla/5.0 (iPad; CPU OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4"
|
94
|
+
},
|
95
|
+
{
|
96
|
+
percentage: 10,
|
97
|
+
agent: "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"
|
98
|
+
},
|
99
|
+
{
|
100
|
+
percentage: 9,
|
101
|
+
agent: "Mozilla/5.0 (Windows NT 6.1; rv:33.0) Gecko/20100101 Firefox/33.0"
|
102
|
+
},
|
103
|
+
{
|
104
|
+
percentage: 8,
|
105
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10) AppleWebKit/600.1.25 (KHTML, like Gecko) QuickLook/5.0"
|
106
|
+
},
|
107
|
+
{
|
108
|
+
percentage: 8,
|
109
|
+
agent: "Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53"
|
110
|
+
},
|
111
|
+
{
|
112
|
+
percentage: 7,
|
113
|
+
agent: "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36"
|
114
|
+
},
|
115
|
+
{
|
116
|
+
percentage: 7,
|
117
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.122 Safari/537.36"
|
118
|
+
},
|
119
|
+
{
|
120
|
+
percentage: 7,
|
121
|
+
agent: "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko"
|
122
|
+
},
|
123
|
+
{
|
124
|
+
percentage: 6,
|
125
|
+
agent: "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36"
|
126
|
+
},
|
127
|
+
{
|
128
|
+
percentage: 6,
|
129
|
+
agent: "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36"
|
130
|
+
},
|
131
|
+
{
|
132
|
+
percentage: 5,
|
133
|
+
agent: "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
|
134
|
+
},
|
135
|
+
{
|
136
|
+
percentage: 5,
|
137
|
+
agent: "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"
|
138
|
+
},
|
139
|
+
{
|
140
|
+
percentage: 5,
|
141
|
+
agent: "Mozilla/5.0 (X11; Linux x86_64; rv:33.0) Gecko/20100101 Firefox/33.0"
|
142
|
+
},
|
143
|
+
{
|
144
|
+
percentage: 5,
|
145
|
+
agent: "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"
|
146
|
+
},
|
147
|
+
{
|
148
|
+
percentage: 4,
|
149
|
+
agent: "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.65 Safari/537.36"
|
150
|
+
},
|
151
|
+
{
|
152
|
+
percentage: 4,
|
153
|
+
agent: "Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A405 Safari/600.1.4"
|
154
|
+
},
|
155
|
+
{
|
156
|
+
percentage: 4,
|
157
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:32.0) Gecko/20100101 Firefox/32.0"
|
158
|
+
},
|
159
|
+
{
|
160
|
+
percentage: 4,
|
161
|
+
agent: "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0"
|
162
|
+
},
|
163
|
+
{
|
164
|
+
percentage: 4,
|
165
|
+
agent: "Mozilla/5.0 (Windows NT 5.1; rv:33.0) Gecko/20100101 Firefox/33.0"
|
166
|
+
},
|
167
|
+
{
|
168
|
+
percentage: 4,
|
169
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.78.2 (KHTML, like Gecko) Version/7.0.6 Safari/537.78.2"
|
170
|
+
},
|
171
|
+
{
|
172
|
+
percentage: 4,
|
173
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10"
|
174
|
+
},
|
175
|
+
{
|
176
|
+
percentage: 4,
|
177
|
+
agent: "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)"
|
178
|
+
},
|
179
|
+
{
|
180
|
+
percentage: 4,
|
181
|
+
agent: "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36"
|
182
|
+
},
|
183
|
+
{
|
184
|
+
percentage: 4,
|
185
|
+
agent: "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko"
|
186
|
+
},
|
187
|
+
{
|
188
|
+
percentage: 4,
|
189
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36"
|
190
|
+
},
|
191
|
+
{
|
192
|
+
percentage: 4,
|
193
|
+
agent: "Mozilla/5.0 (Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0"
|
194
|
+
},
|
195
|
+
{
|
196
|
+
percentage: 3,
|
197
|
+
agent: "Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53"
|
198
|
+
},
|
199
|
+
{
|
200
|
+
percentage: 3,
|
201
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:32.0) Gecko/20100101 Firefox/32.0"
|
202
|
+
},
|
203
|
+
{
|
204
|
+
percentage: 3,
|
205
|
+
agent: "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/37.0.2062.120 Chrome/37.0.2062.120 Safari/537.36"
|
206
|
+
},
|
207
|
+
{
|
208
|
+
percentage: 3,
|
209
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.78.2 (KHTML, like Gecko) Version/6.1.6 Safari/537.78.2"
|
210
|
+
},
|
211
|
+
{
|
212
|
+
percentage: 3,
|
213
|
+
agent: "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"
|
214
|
+
},
|
215
|
+
{
|
216
|
+
percentage: 3,
|
217
|
+
agent: "Mozilla/5.0 (iPad; CPU OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A405 Safari/600.1.4"
|
218
|
+
},
|
219
|
+
{
|
220
|
+
percentage: 3,
|
221
|
+
agent: "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Firefox/31.0"
|
222
|
+
},
|
223
|
+
{
|
224
|
+
percentage: 3,
|
225
|
+
agent: "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko"
|
226
|
+
},
|
227
|
+
{
|
228
|
+
percentage: 3,
|
229
|
+
agent: "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:33.0) Gecko/20100101 Firefox/33.0"
|
230
|
+
},
|
231
|
+
{
|
232
|
+
percentage: 3,
|
233
|
+
agent: "Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_1 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D201 Safari/9537.53"
|
234
|
+
},
|
235
|
+
{
|
236
|
+
percentage: 3,
|
237
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"
|
238
|
+
},
|
239
|
+
{
|
240
|
+
percentage: 3,
|
241
|
+
agent: "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.122 Safari/537.36"
|
242
|
+
},
|
243
|
+
{
|
244
|
+
percentage: 3,
|
245
|
+
agent: "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36"
|
246
|
+
},
|
247
|
+
{
|
248
|
+
percentage: 3,
|
249
|
+
agent: "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.65 Safari/537.36"
|
250
|
+
},
|
251
|
+
{
|
252
|
+
percentage: 2,
|
253
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36"
|
254
|
+
},
|
255
|
+
{
|
256
|
+
percentage: 2,
|
257
|
+
agent: "Mozilla/5.0 (Windows NT 5.1; rv:32.0) Gecko/20100101 Firefox/32.0"
|
258
|
+
},
|
259
|
+
{
|
260
|
+
percentage: 2,
|
261
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:33.0) Gecko/20100101 Firefox/33.0"
|
262
|
+
},
|
263
|
+
{
|
264
|
+
percentage: 2,
|
265
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/600.1.17 (KHTML, like Gecko) Version/6.2 Safari/537.85.10"
|
266
|
+
},
|
267
|
+
{
|
268
|
+
percentage: 2,
|
269
|
+
agent: "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)"
|
270
|
+
},
|
271
|
+
{
|
272
|
+
percentage: 2,
|
273
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.122 Safari/537.36"
|
274
|
+
},
|
275
|
+
{
|
276
|
+
percentage: 2,
|
277
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/537.77.4 (KHTML, like Gecko) Version/7.0.5 Safari/537.77.4"
|
278
|
+
},
|
279
|
+
{
|
280
|
+
percentage: 2,
|
281
|
+
agent: "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.122 Safari/537.36"
|
282
|
+
},
|
283
|
+
{
|
284
|
+
percentage: 2,
|
285
|
+
agent: "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36"
|
286
|
+
},
|
287
|
+
{
|
288
|
+
percentage: 2,
|
289
|
+
agent: "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.101 Safari/537.36"
|
290
|
+
},
|
291
|
+
{
|
292
|
+
percentage: 2,
|
293
|
+
agent: "Mozilla/5.0 (iPhone; CPU iPhone OS 8_0 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A365 Safari/600.1.4"
|
294
|
+
},
|
295
|
+
{
|
296
|
+
percentage: 2,
|
297
|
+
agent: "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B435 Safari/600.1.4"
|
298
|
+
},
|
299
|
+
{
|
300
|
+
percentage: 2,
|
301
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/537.78.2 (KHTML, like Gecko) Version/7.0.6 Safari/537.78.2"
|
302
|
+
},
|
303
|
+
{
|
304
|
+
percentage: 2,
|
305
|
+
agent: "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"
|
306
|
+
},
|
307
|
+
{
|
308
|
+
percentage: 2,
|
309
|
+
agent: "Mozilla/5.0 (Windows NT 6.1; rv:31.0) Gecko/20100101 Firefox/31.0"
|
310
|
+
},
|
311
|
+
{
|
312
|
+
percentage: 2,
|
313
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10) AppleWebKit/600.1.25 (KHTML, like Gecko)"
|
314
|
+
},
|
315
|
+
{
|
316
|
+
percentage: 2,
|
317
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.1.25 (KHTML, like Gecko) QuickLook/5.0"
|
318
|
+
},
|
319
|
+
{
|
320
|
+
percentage: 2,
|
321
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.122 Safari/537.36"
|
322
|
+
},
|
323
|
+
{
|
324
|
+
percentage: 2,
|
325
|
+
agent: "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:33.0) Gecko/20100101 Firefox/33.0"
|
326
|
+
},
|
327
|
+
{
|
328
|
+
percentage: 2,
|
329
|
+
agent: "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.122 Safari/537.36"
|
330
|
+
},
|
331
|
+
{
|
332
|
+
percentage: 2,
|
333
|
+
agent: "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36"
|
334
|
+
},
|
335
|
+
{
|
336
|
+
percentage: 2,
|
337
|
+
agent: "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/38.0.2125.111 Chrome/38.0.2125.111 Safari/537.36"
|
338
|
+
},
|
339
|
+
{
|
340
|
+
percentage: 2,
|
341
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:33.0) Gecko/20100101 Firefox/33.0"
|
342
|
+
},
|
343
|
+
{
|
344
|
+
percentage: 2,
|
345
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36"
|
346
|
+
},
|
347
|
+
{
|
348
|
+
percentage: 2,
|
349
|
+
agent: "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36"
|
350
|
+
},
|
351
|
+
{
|
352
|
+
percentage: 2,
|
353
|
+
agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:33.0) Gecko/20100101 Firefox/33.0"
|
354
|
+
}
|
355
|
+
].each do |agent|
|
356
|
+
(0..agent[:percentage]).each { @list << agent[:agent] }
|
357
|
+
end
|
358
|
+
|
359
|
+
@list
|
360
|
+
end
|
361
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "random_agent/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "random_agent"
|
8
|
+
spec.version = RandomAgent::VERSION
|
9
|
+
spec.authors = ["Antoine Finkelstein"]
|
10
|
+
spec.email = ["antoine@finkelstein.fr"]
|
11
|
+
spec.summary = %q{Get a random User-Agent.}
|
12
|
+
spec.description = %q{Get a random User-Agent from a list of the most used ones.}
|
13
|
+
spec.homepage = "https://github.com/AntoineFinkelstein/random_agent"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.7"
|
22
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
23
|
+
spec.add_development_dependency "rspec"
|
24
|
+
spec.add_development_dependency "pry"
|
25
|
+
spec.add_development_dependency "coveralls"
|
26
|
+
end
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,130 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: random_agent
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Antoine Finkelstein
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-11-23 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.7'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.7'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: pry
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: coveralls
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
description: Get a random User-Agent from a list of the most used ones.
|
84
|
+
email:
|
85
|
+
- antoine@finkelstein.fr
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- ".gitignore"
|
91
|
+
- ".travis.yml"
|
92
|
+
- Gemfile
|
93
|
+
- LICENSE
|
94
|
+
- LICENSE.txt
|
95
|
+
- README.md
|
96
|
+
- Rakefile
|
97
|
+
- lib/random_agent.rb
|
98
|
+
- lib/random_agent/list.rb
|
99
|
+
- lib/random_agent/version.rb
|
100
|
+
- random_agent.gemspec
|
101
|
+
- spec/random_user_agent_spec.rb
|
102
|
+
- spec/spec_helper.rb
|
103
|
+
homepage: https://github.com/AntoineFinkelstein/random_agent
|
104
|
+
licenses:
|
105
|
+
- MIT
|
106
|
+
metadata: {}
|
107
|
+
post_install_message:
|
108
|
+
rdoc_options: []
|
109
|
+
require_paths:
|
110
|
+
- lib
|
111
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
112
|
+
requirements:
|
113
|
+
- - ">="
|
114
|
+
- !ruby/object:Gem::Version
|
115
|
+
version: '0'
|
116
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
117
|
+
requirements:
|
118
|
+
- - ">="
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: '0'
|
121
|
+
requirements: []
|
122
|
+
rubyforge_project:
|
123
|
+
rubygems_version: 2.2.2
|
124
|
+
signing_key:
|
125
|
+
specification_version: 4
|
126
|
+
summary: Get a random User-Agent.
|
127
|
+
test_files:
|
128
|
+
- spec/random_user_agent_spec.rb
|
129
|
+
- spec/spec_helper.rb
|
130
|
+
has_rdoc:
|