device_detector 1.0.5 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -6
  3. data/lib/device_detector/browser.rb +364 -0
  4. data/lib/device_detector/client.rb +8 -0
  5. data/lib/device_detector/device.rb +1124 -4
  6. data/lib/device_detector/os.rb +36 -11
  7. data/lib/device_detector/version.rb +1 -1
  8. data/lib/device_detector/version_extractor.rb +9 -0
  9. data/lib/device_detector.rb +57 -13
  10. data/regexes/bots.yml +551 -58
  11. data/regexes/client/browser_engine.yml +7 -1
  12. data/regexes/client/browsers.yml +594 -71
  13. data/regexes/client/feed_readers.yml +4 -10
  14. data/regexes/client/libraries.yml +47 -2
  15. data/regexes/client/mediaplayers.yml +25 -1
  16. data/regexes/client/mobile_apps.yml +447 -77
  17. data/regexes/client/pim.yml +49 -1
  18. data/regexes/device/cameras.yml +5 -5
  19. data/regexes/device/car_browsers.yml +16 -0
  20. data/regexes/device/consoles.yml +6 -0
  21. data/regexes/device/mobiles.yml +12905 -4561
  22. data/regexes/device/portable_media_player.yml +20 -3
  23. data/regexes/device/shell_tv.yml +117 -0
  24. data/regexes/device/televisions.yml +426 -35
  25. data/regexes/oss.yml +567 -139
  26. data/spec/device_detector/concrete_user_agent_spec.rb +30 -42
  27. data/spec/device_detector/detector_fixtures_spec.rb +9 -5
  28. data/spec/device_detector/device_spec.rb +26 -10
  29. data/spec/fixtures/client/browser.yml +1463 -391
  30. data/spec/fixtures/client/feed_reader.yml +0 -12
  31. data/spec/fixtures/client/library.yml +91 -37
  32. data/spec/fixtures/client/mediaplayer.yml +30 -0
  33. data/spec/fixtures/client/mobile_app.yml +498 -45
  34. data/spec/fixtures/client/pim.yml +60 -0
  35. data/spec/fixtures/detector/bots.yml +1189 -568
  36. data/spec/fixtures/detector/camera.yml +12 -26
  37. data/spec/fixtures/detector/car_browser.yml +151 -15
  38. data/spec/fixtures/detector/console.yml +70 -48
  39. data/spec/fixtures/detector/desktop.yml +2041 -916
  40. data/spec/fixtures/detector/feature_phone.yml +895 -189
  41. data/spec/fixtures/detector/feed_reader.yml +50 -77
  42. data/spec/fixtures/detector/mediaplayer.yml +79 -26
  43. data/spec/fixtures/detector/mobile_apps.yml +726 -72
  44. data/spec/fixtures/detector/peripheral.yml +271 -0
  45. data/spec/fixtures/detector/phablet.yml +3635 -1596
  46. data/spec/fixtures/detector/portable_media_player.yml +355 -46
  47. data/spec/fixtures/detector/smart_display.yml +183 -9
  48. data/spec/fixtures/detector/smart_speaker.yml +13 -8
  49. data/spec/fixtures/detector/smartphone-1.yml +4002 -4286
  50. data/spec/fixtures/detector/smartphone-10.yml +3771 -4763
  51. data/spec/fixtures/detector/smartphone-11.yml +3615 -4692
  52. data/spec/fixtures/detector/smartphone-12.yml +3856 -4764
  53. data/spec/fixtures/detector/smartphone-13.yml +4213 -4713
  54. data/spec/fixtures/detector/smartphone-14.yml +4039 -4497
  55. data/spec/fixtures/detector/smartphone-15.yml +5642 -2956
  56. data/spec/fixtures/detector/smartphone-16.yml +4739 -5082
  57. data/spec/fixtures/detector/smartphone-17.yml +4832 -4275
  58. data/spec/fixtures/detector/smartphone-18.yml +9806 -0
  59. data/spec/fixtures/detector/smartphone-19.yml +9965 -0
  60. data/spec/fixtures/detector/smartphone-2.yml +4842 -2589
  61. data/spec/fixtures/detector/smartphone-20.yml +9710 -0
  62. data/spec/fixtures/detector/smartphone-21.yml +8693 -0
  63. data/spec/fixtures/detector/smartphone-22.yml +10178 -0
  64. data/spec/fixtures/detector/smartphone-23.yml +9453 -0
  65. data/spec/fixtures/detector/smartphone-24.yml +9843 -0
  66. data/spec/fixtures/detector/smartphone-25.yml +9703 -0
  67. data/spec/fixtures/detector/smartphone-26.yml +10007 -0
  68. data/spec/fixtures/detector/smartphone-27.yml +4927 -0
  69. data/spec/fixtures/detector/smartphone-3.yml +4387 -4427
  70. data/spec/fixtures/detector/smartphone-4.yml +3597 -4582
  71. data/spec/fixtures/detector/smartphone-5.yml +4066 -5022
  72. data/spec/fixtures/detector/smartphone-6.yml +3455 -4621
  73. data/spec/fixtures/detector/smartphone-7.yml +3574 -4574
  74. data/spec/fixtures/detector/smartphone-8.yml +4617 -4704
  75. data/spec/fixtures/detector/smartphone-9.yml +4080 -5035
  76. data/spec/fixtures/detector/smartphone.yml +3244 -4234
  77. data/spec/fixtures/detector/tablet-1.yml +4652 -4492
  78. data/spec/fixtures/detector/tablet-2.yml +3515 -4434
  79. data/spec/fixtures/detector/tablet-3.yml +3418 -4351
  80. data/spec/fixtures/detector/tablet-4.yml +5149 -3200
  81. data/spec/fixtures/detector/tablet-5.yml +9273 -0
  82. data/spec/fixtures/detector/tablet-6.yml +4588 -0
  83. data/spec/fixtures/detector/tablet.yml +1621 -2613
  84. data/spec/fixtures/detector/tv-1.yml +2501 -0
  85. data/spec/fixtures/detector/tv.yml +7826 -3114
  86. data/spec/fixtures/detector/unknown.yml +370 -531
  87. data/spec/fixtures/detector/wearable.yml +863 -9
  88. data/spec/fixtures/parser/oss.yml +1350 -21
  89. data/spec/fixtures/parser/vendorfragments.yml +53 -53
  90. metadata +35 -5
@@ -1,69 +1,69 @@
1
1
  -
2
2
  useragent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/7.0; SLCC2; .NET CLR 2.0.50727; Media Center PC 6.0; MAAR; Tablet PC 2.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E)
3
- vendor: AC
3
+ vendor: Acer
4
4
  -
5
5
  useragent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; Touch; MAARJS)
6
- vendor: AC
6
+ vendor: Acer
7
7
  -
8
8
  useragent: Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; MAAU; rv:11.0) like Gecko
9
- vendor: AU
9
+ vendor: Asus
10
10
  -
11
11
  useragent: Mozilla/5.0 (Windows NT 6.3; Win64; x64; Trident/7.0; ASU2JS; rv:11.0) like Gecko
12
- vendor: AU
12
+ vendor: Asus
13
13
  -
14
14
  useragent: Mozilla/5.0 (Windows NT 6.3; Win64; x64; Trident/7.0; NP06; rv:11.0) like Gecko
15
- vendor: AU
15
+ vendor: Asus
16
16
  -
17
17
  useragent: Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; ASJB; rv:11.0) like Gecko
18
- vendor: AU
18
+ vendor: Asus
19
19
  -
20
20
  useragent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; CPDTDF; .NET4.0C; InfoPath.3; .NET4.0E; Microsoft Outlook 14.0.7113; ms-office; MSOffice 14)
21
- vendor: CQ
21
+ vendor: Compaq
22
22
  -
23
23
  useragent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.2; WOW64; Trident/6.0; .NET4.0E; .NET4.0C; .NET CLR 3.5.30729; .NET CLR 2.0.50727; .NET CLR 3.0.30729; CPNTDFJS)
24
- vendor: CQ
24
+ vendor: Compaq
25
25
  -
26
26
  useragent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; CMNTDF; InfoPath.2; .NET4.0C; .NET4.0E)
27
- vendor: CQ
27
+ vendor: Compaq
28
28
  -
29
29
  useragent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.2; WOW64; Trident/6.0; .NET4.0E; .NET4.0C; .NET CLR 3.5.30729; .NET CLR 2.0.50727; .NET CLR 3.0.30729; CMDTDFJS; Tablet PC 2.0)
30
- vendor: CQ
30
+ vendor: Compaq
31
31
  -
32
32
  useragent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; CMDTDF; InfoPath.3)
33
- vendor: CQ
33
+ vendor: Compaq
34
34
  -
35
35
  useragent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDC; .NET4.0C; .NET4.0E)
36
- vendor: DL
36
+ vendor: Dell
37
37
  -
38
38
  useragent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Win64; x64; Trident/6.0; Touch; MDDCJS)
39
- vendor: DL
39
+ vendor: Dell
40
40
  -
41
41
  useragent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; GTB7.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDR)
42
- vendor: DL
42
+ vendor: Dell
43
43
  -
44
44
  useragent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; MDDRJS)
45
- vendor: DL
45
+ vendor: Dell
46
46
  -
47
47
  useragent: Mozilla/5.0 (Windows NT 6.1; Trident/7.0; MDDSJS; rv:11.0) like Gecko
48
- vendor: DL
48
+ vendor: Dell
49
49
  -
50
50
  useragent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.2; WOW64; Trident/6.0; .NET4.0E; .NET4.0C; .NET CLR 3.5.30729; .NET CLR 2.0.50727; .NET CLR 3.0.30729; McAfee; MDDSJS)
51
- vendor: DL
51
+ vendor: Dell
52
52
  -
53
53
  useragent: Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; FSJB; rv:11.0) like Gecko
54
- vendor: FU
54
+ vendor: Fujitsu
55
55
  -
56
56
  useragent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; MAFSJS)
57
- vendor: FU
57
+ vendor: Fujitsu
58
58
  -
59
59
  useragent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; MAFS; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; MSOffice 12)
60
- vendor: FU
60
+ vendor: Fujitsu
61
61
  -
62
62
  useragent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MAGW; .NET4.0C; .NET4.0E; Microsoft Outlook 14.0.7113; ms-office; MSOffice 14)
63
- vendor: GA
63
+ vendor: Gateway
64
64
  -
65
65
  useragent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; MAGWJS)
66
- vendor: GA
66
+ vendor: Gateway
67
67
  -
68
68
  useragent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; HPCMHP)
69
69
  vendor: HP
@@ -75,94 +75,94 @@
75
75
  vendor: HP
76
76
  -
77
77
  useragent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/6.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MANM; .NET4.0C; InfoPath.3; .NET4.0E)
78
- vendor: HY
78
+ vendor: Hyrican
79
79
  -
80
80
  useragent: Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; MANMJS; rv:11.0) like Gecko
81
- vendor: HY
81
+ vendor: Hyrican
82
82
  -
83
83
  useragent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; QQDownload 691; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MALC)
84
- vendor: LE
84
+ vendor: Lenovo
85
85
  -
86
86
  useragent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; LEN2)
87
- vendor: LE
87
+ vendor: Lenovo
88
88
  -
89
89
  useragent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.2; WOW64; Trident/6.0; .NET4.0E; .NET4.0C; .NET CLR 3.5.30729; .NET CLR 2.0.50727; .NET CLR 3.0.30729; MALEJS)
90
- vendor: LE
90
+ vendor: Lenovo
91
91
  -
92
92
  useragent: Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; LCJB; rv:11.0) like Gecko
93
- vendor: LE
93
+ vendor: Lenovo
94
94
  -
95
95
  useragent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0; Touch; MALCJS; WebView/1.0)
96
- vendor: LE
96
+ vendor: Lenovo
97
97
  -
98
98
  useragent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; ARM; Trident/6.0; Touch; MALNJS)
99
- vendor: LE
99
+ vendor: Lenovo
100
100
  -
101
101
  useragent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MALN)
102
- vendor: LE
102
+ vendor: Lenovo
103
103
  -
104
104
  useragent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0; MAMD)
105
- vendor: MD
105
+ vendor: Medion
106
106
  -
107
107
  useragent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; MAM3; InfoPath.3; .NET4.0E; MAM3)
108
- vendor: MZ
108
+ vendor: MSI
109
109
  -
110
110
  useragent: Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; MAMI; rv:11.0) like Gecko
111
- vendor: MZ
111
+ vendor: MSI
112
112
  -
113
113
  useragent: Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MAMIJS; rv:11.0) like Gecko
114
- vendor: MZ
114
+ vendor: MSI
115
115
  -
116
116
  useragent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MASM; .NET4.0C; .NET4.0E)
117
- vendor: SA
117
+ vendor: Samsung
118
118
  -
119
119
  useragent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; MASMJS)
120
- vendor: SA
120
+ vendor: Samsung
121
121
  -
122
122
  useragent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; SMJB)
123
- vendor: SA
123
+ vendor: Samsung
124
124
  -
125
125
  useragent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0; MASP)
126
- vendor: SO
126
+ vendor: Sony
127
127
  -
128
128
  useragent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; Media Center PC 6.0; MASA)
129
- vendor: SO
129
+ vendor: Sony
130
130
  -
131
131
  useragent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; Media Center PC 6.0; MASE)
132
- vendor: SO
132
+ vendor: Sony
133
133
  -
134
134
  useragent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; Trident/7.0; MASAJS; rv:11.0) like Gecko
135
- vendor: SO
135
+ vendor: Sony
136
136
  -
137
137
  useragent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Win64; x64; Trident/6.0; Touch; MASPJS)
138
- vendor: SO
138
+ vendor: Sony
139
139
  -
140
140
  useragent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Win64; x64; Trident/6.0; MASEJS)
141
- vendor: SO
141
+ vendor: Sony
142
142
  -
143
143
  useragent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0; MATMJS)
144
- vendor: TS
144
+ vendor: Toshiba
145
145
  -
146
146
  useragent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/7.0; MATM)
147
- vendor: TS
147
+ vendor: Toshiba
148
148
  -
149
149
  useragent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/7.0; MATP)
150
- vendor: TS
150
+ vendor: Toshiba
151
151
  -
152
152
  useragent: Mozilla/5.0 (MSIE 9.0; Windows NT 6.3; WOW64; Trident/7.0; MATBJS; rv:11.0) like Gecko
153
- vendor: TS
153
+ vendor: Toshiba
154
154
  -
155
155
  useragent: Mozilla/5.0 (Windows NT 6.3; Win64; x64; Trident/7.0; MATPJS; rv:11.0) like Gecko
156
- vendor: TS
156
+ vendor: Toshiba
157
157
  -
158
158
  useragent: Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; TNJB; rv:11.0) like Gecko
159
- vendor: TS
159
+ vendor: Toshiba
160
160
  -
161
161
  useragent: Mozilla/5.0 (Windows NT 6.3; Win64; x64; Trident/7.0; Touch; TAJB; rv:11.0) like Gecko
162
- vendor: TS
162
+ vendor: Toshiba
163
163
  -
164
164
  useragent: Mozilla/5.0 (X11; Linux i686; rv:45.0) Gecko/20100101 Firefox/45.0 Ordissimo/3.8.6.6+svn37147
165
- vendor: OS
165
+ vendor: Ordissimo
166
166
  -
167
167
  useragent: Mozilla/5.0 (X11; Linux i686; rv:45.0) Gecko/20100101 Firefox/45.0 webissimo3/3.7.30+svn32090
168
- vendor: OS
168
+ vendor: Ordissimo
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: device_detector
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mati Sójka
8
8
  - Ben Zimmer
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-10-13 00:00:00.000000000 Z
12
+ date: 2021-11-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: minitest
@@ -87,6 +87,7 @@ files:
87
87
  - device_detector.gemspec
88
88
  - lib/device_detector.rb
89
89
  - lib/device_detector/bot.rb
90
+ - lib/device_detector/browser.rb
90
91
  - lib/device_detector/client.rb
91
92
  - lib/device_detector/device.rb
92
93
  - lib/device_detector/memory_cache.rb
@@ -111,6 +112,7 @@ files:
111
112
  - regexes/device/mobiles.yml
112
113
  - regexes/device/notebooks.yml
113
114
  - regexes/device/portable_media_player.yml
115
+ - regexes/device/shell_tv.yml
114
116
  - regexes/device/televisions.yml
115
117
  - regexes/oss.yml
116
118
  - regexes/vendorfragments.yml
@@ -140,6 +142,7 @@ files:
140
142
  - spec/fixtures/detector/feed_reader.yml
141
143
  - spec/fixtures/detector/mediaplayer.yml
142
144
  - spec/fixtures/detector/mobile_apps.yml
145
+ - spec/fixtures/detector/peripheral.yml
143
146
  - spec/fixtures/detector/phablet.yml
144
147
  - spec/fixtures/detector/portable_media_player.yml
145
148
  - spec/fixtures/detector/smart_display.yml
@@ -153,7 +156,17 @@ files:
153
156
  - spec/fixtures/detector/smartphone-15.yml
154
157
  - spec/fixtures/detector/smartphone-16.yml
155
158
  - spec/fixtures/detector/smartphone-17.yml
159
+ - spec/fixtures/detector/smartphone-18.yml
160
+ - spec/fixtures/detector/smartphone-19.yml
156
161
  - spec/fixtures/detector/smartphone-2.yml
162
+ - spec/fixtures/detector/smartphone-20.yml
163
+ - spec/fixtures/detector/smartphone-21.yml
164
+ - spec/fixtures/detector/smartphone-22.yml
165
+ - spec/fixtures/detector/smartphone-23.yml
166
+ - spec/fixtures/detector/smartphone-24.yml
167
+ - spec/fixtures/detector/smartphone-25.yml
168
+ - spec/fixtures/detector/smartphone-26.yml
169
+ - spec/fixtures/detector/smartphone-27.yml
157
170
  - spec/fixtures/detector/smartphone-3.yml
158
171
  - spec/fixtures/detector/smartphone-4.yml
159
172
  - spec/fixtures/detector/smartphone-5.yml
@@ -166,7 +179,10 @@ files:
166
179
  - spec/fixtures/detector/tablet-2.yml
167
180
  - spec/fixtures/detector/tablet-3.yml
168
181
  - spec/fixtures/detector/tablet-4.yml
182
+ - spec/fixtures/detector/tablet-5.yml
183
+ - spec/fixtures/detector/tablet-6.yml
169
184
  - spec/fixtures/detector/tablet.yml
185
+ - spec/fixtures/detector/tv-1.yml
170
186
  - spec/fixtures/detector/tv.yml
171
187
  - spec/fixtures/detector/unknown.yml
172
188
  - spec/fixtures/detector/wearable.yml
@@ -181,7 +197,7 @@ homepage: http://podigee.github.io/device_detector
181
197
  licenses:
182
198
  - LGPL-3.0
183
199
  metadata: {}
184
- post_install_message:
200
+ post_install_message:
185
201
  rdoc_options: []
186
202
  require_paths:
187
203
  - lib
@@ -197,7 +213,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
197
213
  version: '0'
198
214
  requirements: []
199
215
  rubygems_version: 3.0.3
200
- signing_key:
216
+ signing_key:
201
217
  specification_version: 4
202
218
  summary: Precise and fast user agent parser and device detector
203
219
  test_files:
@@ -227,6 +243,7 @@ test_files:
227
243
  - spec/fixtures/detector/feed_reader.yml
228
244
  - spec/fixtures/detector/mediaplayer.yml
229
245
  - spec/fixtures/detector/mobile_apps.yml
246
+ - spec/fixtures/detector/peripheral.yml
230
247
  - spec/fixtures/detector/phablet.yml
231
248
  - spec/fixtures/detector/portable_media_player.yml
232
249
  - spec/fixtures/detector/smart_display.yml
@@ -240,7 +257,17 @@ test_files:
240
257
  - spec/fixtures/detector/smartphone-15.yml
241
258
  - spec/fixtures/detector/smartphone-16.yml
242
259
  - spec/fixtures/detector/smartphone-17.yml
260
+ - spec/fixtures/detector/smartphone-18.yml
261
+ - spec/fixtures/detector/smartphone-19.yml
243
262
  - spec/fixtures/detector/smartphone-2.yml
263
+ - spec/fixtures/detector/smartphone-20.yml
264
+ - spec/fixtures/detector/smartphone-21.yml
265
+ - spec/fixtures/detector/smartphone-22.yml
266
+ - spec/fixtures/detector/smartphone-23.yml
267
+ - spec/fixtures/detector/smartphone-24.yml
268
+ - spec/fixtures/detector/smartphone-25.yml
269
+ - spec/fixtures/detector/smartphone-26.yml
270
+ - spec/fixtures/detector/smartphone-27.yml
244
271
  - spec/fixtures/detector/smartphone-3.yml
245
272
  - spec/fixtures/detector/smartphone-4.yml
246
273
  - spec/fixtures/detector/smartphone-5.yml
@@ -253,7 +280,10 @@ test_files:
253
280
  - spec/fixtures/detector/tablet-2.yml
254
281
  - spec/fixtures/detector/tablet-3.yml
255
282
  - spec/fixtures/detector/tablet-4.yml
283
+ - spec/fixtures/detector/tablet-5.yml
284
+ - spec/fixtures/detector/tablet-6.yml
256
285
  - spec/fixtures/detector/tablet.yml
286
+ - spec/fixtures/detector/tv-1.yml
257
287
  - spec/fixtures/detector/tv.yml
258
288
  - spec/fixtures/detector/unknown.yml
259
289
  - spec/fixtures/detector/wearable.yml