browser 4.0.0 → 5.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (104) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/tests.yml +57 -0
  3. data/.prettierignore +1 -0
  4. data/.rubocop.yml +6 -0
  5. data/CHANGELOG.md +51 -1
  6. data/FUNDING.yml +3 -0
  7. data/README.md +97 -61
  8. data/bots.yml +300 -296
  9. data/browser.gemspec +4 -2
  10. data/lib/browser/accept_language.rb +4 -4
  11. data/lib/browser/alipay.rb +1 -1
  12. data/lib/browser/base.rb +76 -12
  13. data/lib/browser/blackberry.rb +1 -1
  14. data/lib/browser/bot/keyword_matcher.rb +1 -1
  15. data/lib/browser/browser.rb +24 -3
  16. data/lib/browser/chrome.rb +10 -3
  17. data/lib/browser/device.rb +12 -5
  18. data/lib/browser/device/android.rb +1 -1
  19. data/lib/browser/device/blackberry_playbook.rb +1 -1
  20. data/lib/browser/device/ipad.rb +1 -1
  21. data/lib/browser/device/iphone.rb +1 -1
  22. data/lib/browser/device/ipod_touch.rb +1 -1
  23. data/lib/browser/device/kindle.rb +1 -1
  24. data/lib/browser/device/kindle_fire.rb +1 -1
  25. data/lib/browser/device/playstation3.rb +1 -1
  26. data/lib/browser/device/playstation4.rb +1 -1
  27. data/lib/browser/device/psp.rb +1 -1
  28. data/lib/browser/device/psvita.rb +1 -1
  29. data/lib/browser/device/samsung.rb +33 -0
  30. data/lib/browser/device/surface.rb +1 -1
  31. data/lib/browser/device/switch.rb +1 -1
  32. data/lib/browser/device/tv.rb +1 -1
  33. data/lib/browser/device/unknown.rb +1 -1
  34. data/lib/browser/device/wii.rb +1 -1
  35. data/lib/browser/device/wiiu.rb +1 -1
  36. data/lib/browser/device/xbox_360.rb +1 -1
  37. data/lib/browser/device/xbox_one.rb +1 -1
  38. data/lib/browser/duck_duck_go.rb +1 -1
  39. data/lib/browser/edge.rb +3 -3
  40. data/lib/browser/electron.rb +1 -1
  41. data/lib/browser/facebook.rb +1 -1
  42. data/lib/browser/firefox.rb +1 -1
  43. data/lib/browser/google_search_app.rb +21 -0
  44. data/lib/browser/huawei_browser.rb +21 -0
  45. data/lib/browser/instagram.rb +1 -1
  46. data/lib/browser/internet_explorer.rb +2 -2
  47. data/lib/browser/maxthon.rb +21 -0
  48. data/lib/browser/micro_messenger.rb +1 -1
  49. data/lib/browser/miui_browser.rb +21 -0
  50. data/lib/browser/nokia.rb +1 -1
  51. data/lib/browser/opera.rb +1 -1
  52. data/lib/browser/otter.rb +1 -1
  53. data/lib/browser/phantom_js.rb +1 -1
  54. data/lib/browser/platform.rb +21 -15
  55. data/lib/browser/platform/adobe_air.rb +1 -1
  56. data/lib/browser/platform/android.rb +1 -1
  57. data/lib/browser/platform/blackberry.rb +1 -1
  58. data/lib/browser/platform/chrome_os.rb +1 -1
  59. data/lib/browser/platform/firefox_os.rb +1 -1
  60. data/lib/browser/platform/ios.rb +2 -2
  61. data/lib/browser/platform/kai_os.rb +23 -0
  62. data/lib/browser/platform/linux.rb +1 -1
  63. data/lib/browser/platform/mac.rb +2 -2
  64. data/lib/browser/platform/{other.rb → unknown.rb} +3 -3
  65. data/lib/browser/platform/windows.rb +2 -2
  66. data/lib/browser/platform/windows_mobile.rb +1 -1
  67. data/lib/browser/platform/windows_phone.rb +1 -1
  68. data/lib/browser/qq.rb +1 -1
  69. data/lib/browser/safari.rb +12 -3
  70. data/lib/browser/samsung_browser.rb +21 -0
  71. data/lib/browser/snapchat.rb +1 -1
  72. data/lib/browser/sougou_browser.rb +24 -0
  73. data/lib/browser/sputnik.rb +1 -1
  74. data/lib/browser/uc_browser.rb +1 -1
  75. data/lib/browser/{generic.rb → unknown.rb} +3 -3
  76. data/lib/browser/version.rb +1 -1
  77. data/lib/browser/weibo.rb +1 -1
  78. data/lib/browser/yandex.rb +1 -1
  79. data/samsung.yml +138 -0
  80. data/test/browser_test.rb +37 -6
  81. data/test/ua.yml +20 -2
  82. data/test/ua_bots.yml +7 -3
  83. data/test/unit/adobe_air_test.rb +1 -1
  84. data/test/unit/alipay_test.rb +6 -0
  85. data/test/unit/bots_test.rb +1 -1
  86. data/test/unit/console_test.rb +2 -2
  87. data/test/unit/device_test.rb +30 -3
  88. data/test/unit/duck_duck_go_test.rb +2 -0
  89. data/test/unit/edge_test.rb +34 -2
  90. data/test/unit/google_search_app_test.rb +54 -0
  91. data/test/unit/huawei_browser_test.rb +25 -0
  92. data/test/unit/kai_os_test.rb +31 -0
  93. data/test/unit/maxthon_test.rb +25 -0
  94. data/test/unit/meta_test.rb +10 -1
  95. data/test/unit/micro_messenger_test.rb +21 -6
  96. data/test/unit/miui_browser_test.rb +25 -0
  97. data/test/unit/opera_test.rb +1 -0
  98. data/test/unit/platform_test.rb +7 -7
  99. data/test/unit/qq_test.rb +12 -0
  100. data/test/unit/safari_test.rb +12 -7
  101. data/test/unit/samsung_browser_test.rb +23 -0
  102. data/test/unit/sougou_browser_test.rb +41 -0
  103. metadata +41 -15
  104. data/.travis.yml +0 -23
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 75c57477baeccabb50b2c056dcd65d33beb39b2bfb066338062a0d58f372648d
4
- data.tar.gz: a2a7ae9958798ab7e04545101087f2c06f2cc241e00eef38c04eb478e477f015
3
+ metadata.gz: e96d048b4f2fa2c1c6abe602294dbfef45fff3fc2d12aee75081d55ecced4e2f
4
+ data.tar.gz: 48f5cd0b90d5f65420306ec63da2d5484a0176abc9f8ab57f6b13c1610d79eb1
5
5
  SHA512:
6
- metadata.gz: f01337cf351ba371d85a37ae957aa04f71854103c2fad413583a6258d66a8218595528464e1aa9f6e273824340c9ca29fe7048ad676a73dbc69dcb8220ecf2f8
7
- data.tar.gz: d3729b88eb7e6a0c92a2d9f14d9b2c073fe782f6045c6ffb74f74766bf353b92f3660154e434c6020a6870810843c1948e658a1c87f1f15454b1fbec7bc135b4
6
+ metadata.gz: 2a9d718a2306e5216b9f706cba1894fe6d0940863336a648e3d0781158b2f1f5ef3a33bceeaf6d1a8727b6980b801859f48c3e95fa13763d738c9d97d31f4944
7
+ data.tar.gz: 48ba58451e08e138c2b73a0cab7f320f9e1eeb2ff907b9eaf9cff01370e70e6a3e11995880fddb456e87cff0e23bab9c93e09438dce0ebd990510b10029707cc
@@ -0,0 +1,57 @@
1
+ name: Tests
2
+
3
+ on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
+ push:
8
+ branches:
9
+ - main
10
+
11
+ schedule:
12
+ - cron: "0 10 * * *"
13
+
14
+ jobs:
15
+ build:
16
+ name: Tests with Ruby ${{ matrix.ruby }} and ${{ matrix.gemfile }}
17
+ runs-on: "ubuntu-latest"
18
+ strategy:
19
+ fail-fast: false
20
+ matrix:
21
+ ruby: ["2.7.x", "2.6.x", "2.5.x"]
22
+ gemfile:
23
+ - Gemfile
24
+ - gemfiles/rails5.gemfile
25
+ - gemfiles/rails6.gemfile
26
+
27
+ steps:
28
+ - uses: actions/checkout@v1
29
+
30
+ - uses: actions/cache@v2
31
+ with:
32
+ path: vendor/bundle
33
+ key: >
34
+ ${{ runner.os }}-${{ matrix.ruby }}-gems-${{ hashFiles(matrix.gemfile) }}
35
+ restore-keys: >
36
+ ${{ runner.os }}-${{ matrix.ruby }}-gems-${{ hashFiles(matrix.gemfile) }}
37
+
38
+ - name: Set up Ruby
39
+ uses: actions/setup-ruby@v1
40
+ with:
41
+ ruby-version: ${{ matrix.ruby }}
42
+
43
+ - name: Install gem dependencies
44
+ env:
45
+ RAILS_ENV: test
46
+ BUNDLE_GEMFILE: ${{ matrix.gemfile }}
47
+ run: |
48
+ gem install bundler
49
+ bundle config path vendor/bundle
50
+ bundle update --jobs 4 --retry 3
51
+
52
+ - name: Run Tests
53
+ env:
54
+ RAILS_ENV: test
55
+ BUNDLE_GEMFILE: ${{ matrix.gemfile }}
56
+ run: |
57
+ bundle exec rake
@@ -0,0 +1 @@
1
+ *.yml
@@ -33,3 +33,9 @@ Metrics/AbcSize:
33
33
 
34
34
  Metrics/CyclomaticComplexity:
35
35
  Enabled: false
36
+
37
+ Metrics/PerceivedComplexity:
38
+ Enabled: false
39
+
40
+ Naming/VariableNumber:
41
+ Enabled: false
@@ -1,6 +1,56 @@
1
1
  # Changelog
2
2
 
3
- ## Unreleased
3
+ ## 5.2.0
4
+
5
+ - Add KaiOS detection.
6
+ - Replace `String#=~` with `String#match?` and other optimizations.
7
+
8
+ ## 5.1.0
9
+
10
+ - Add Samsung device detection.
11
+ - Delay parsing `Accept-Language` until `Browser::Base#accept_language` is
12
+ called for the first time.
13
+ - Bump up default size limit for `Accept-Language` and `User-Agent` to 2048
14
+ bytes.
15
+
16
+ ## 5.0.0
17
+
18
+ - Rename `Browser::Platform#other?` to `Browser::Platform#unknown?`.
19
+ - Unknown platforms now return `:unknown_platform` as the id.
20
+ - Unknown devices now return `:unknown_device` as the id.
21
+ - Unknown browsers now return `:unknown_browser` as the id.
22
+ - All the changes above affect how `browser.meta` is composed.
23
+ - Add method `Browser::Base#unknown?`.
24
+ - Fix issue with `Browser::Base#safari?` matching full version.
25
+ - Add Maxthon detection.
26
+ - Add Google Search App detection.
27
+ - Add Huawei Browser detection.
28
+ - Fix Duck Duck Go browser that was being recognized as a bot.
29
+ - Add Miui Browser detection.
30
+ - Add `Browser::Base#qq?`.
31
+ - Fix QQ detection.
32
+ - Fix Alipay detection.
33
+ - Add Sougou Browser detection.
34
+ - User agent has a size limit of 512 bytes. This can be customized through
35
+ `Browser.user_agent_size_limit`.
36
+ - Accept-Language has a size limit of 256 bytes. This can be customized through
37
+ `Browser.accept_language_size_limit`.
38
+
39
+ ## 4.2.0
40
+
41
+ - Fix Chrome Lighthouse detection.
42
+ - Add Skype to bot list.
43
+
44
+ ## 4.1.0
45
+
46
+ - Add Samsung browser.
47
+ - Add Google Image Proxy to the bot list.
48
+ - Add The Knowledge AI bot to the bot list.
49
+ - Add Go HttpClient to the bot list.
50
+ - Fix Microsoft Edge detection on Android and iOS.
51
+ - Fix MicroMessenger detection on Android
52
+
53
+ ## 4.0.0
4
54
 
5
55
  - Add Chrome Lighthouse to bot list.
6
56
  - Add SeobilityBot to the bot list.
@@ -0,0 +1,3 @@
1
+ # These are supported funding model platforms
2
+
3
+ github: [fnando]
data/README.md CHANGED
@@ -1,8 +1,7 @@
1
1
  # Browser
2
2
 
3
- [![Travis-CI](https://travis-ci.org/fnando/browser.svg)](https://travis-ci.org/fnando/browser)
3
+ [![Tests](https://github.com/fnando/browser/workflows/Tests/badge.svg)](https://github.com/fnando/browser)
4
4
  [![Code Climate](https://codeclimate.com/github/fnando/browser/badges/gpa.svg)](https://codeclimate.com/github/fnando/browser)
5
- [![Test Coverage](https://codeclimate.com/github/fnando/browser/badges/coverage.svg)](https://codeclimate.com/github/fnando/browser/coverage)
6
5
  [![Gem](https://img.shields.io/gem/v/browser.svg)](https://rubygems.org/gems/browser)
7
6
  [![Gem](https://img.shields.io/gem/dt/browser.svg)](https://rubygems.org/gems/browser)
8
7
 
@@ -34,6 +33,7 @@ browser.ie?
34
33
  browser.ie?(6) # detect specific IE version
35
34
  browser.ie?([">8", "<10"]) # detect specific IE (IE9).
36
35
  browser.known? # has the browser been successfully detected?
36
+ browser.unknown? # the browser wasn't detected.
37
37
  browser.meta # an array with several attributes
38
38
  browser.name # readable browser name
39
39
  browser.nokia?
@@ -43,6 +43,7 @@ browser.phantom_js?
43
43
  browser.quicktime?
44
44
  browser.safari?
45
45
  browser.safari_webapp_mode?
46
+ browser.samsung_browser?
46
47
  browser.to_s # the meta info joined by space
47
48
  browser.uc_browser?
48
49
  browser.version # major version number
@@ -50,9 +51,11 @@ browser.webkit?
50
51
  browser.webkit_full_version
51
52
  browser.yandex?
52
53
  browser.wechat?
54
+ browser.qq?
53
55
  browser.weibo?
54
56
  browser.yandex?
55
57
  browser.sputnik?
58
+ browser.sougou_browser?
56
59
 
57
60
  # Get bot info
58
61
  browser.bot.name
@@ -65,6 +68,7 @@ Browser::Bot.why?(ua)
65
68
  browser.device
66
69
  browser.device.id
67
70
  browser.device.name
71
+ browser.device.unknown?
68
72
  browser.device.blackberry_playbook?
69
73
  browser.device.console?
70
74
  browser.device.ipad?
@@ -85,6 +89,7 @@ browser.device.tv?
85
89
  browser.device.vita?
86
90
  browser.device.wii?
87
91
  browser.device.wiiu?
92
+ browser.device.samsung?
88
93
  browser.device.switch?
89
94
  browser.device.xbox?
90
95
  browser.device.xbox_360?
@@ -110,7 +115,7 @@ browser.platform.ios_app? # detect webview in an iOS app
110
115
  browser.platform.ios_webview? # alias for ios_app?
111
116
  browser.platform.linux?
112
117
  browser.platform.mac?
113
- browser.platform.other?
118
+ browser.platform.unknown?
114
119
  browser.platform.windows10?
115
120
  browser.platform.windows7?
116
121
  browser.platform.windows8?
@@ -125,11 +130,14 @@ browser.platform.windows_wow64?
125
130
  browser.platform.windows_x64?
126
131
  browser.platform.windows_x64_inclusive?
127
132
  browser.platform.windows_xp?
133
+ browser.platform.kai_os?
128
134
  ```
129
135
 
130
136
  ### Aliases
131
137
 
132
- To add aliases like `mobile?` and `tablet?` to the base object (e.g `browser.mobile?`), require the `browser/aliases` file and extend the Browser::Base object like the following:
138
+ To add aliases like `mobile?` and `tablet?` to the base object (e.g
139
+ `browser.mobile?`), require the `browser/aliases` file and extend the
140
+ Browser::Base object like the following:
133
141
 
134
142
  ```ruby
135
143
  require "browser/aliases"
@@ -141,13 +149,18 @@ browser.mobile? #=> false
141
149
 
142
150
  ### What's being detected?
143
151
 
144
- - For a list of platform detections, check [lib/browser/platform.rb](https://github.com/fnando/browser/blob/master/lib/browser/platform.rb)
145
- - For a list of device detections, check [lib/browser/device.rb](https://github.com/fnando/browser/blob/master/lib/browser/device.rb)
146
- - For a list of bot detections, check [bots.yml](https://github.com/fnando/browser/blob/master/bots.yml)
152
+ - For a list of platform detections, check
153
+ [lib/browser/platform.rb](https://github.com/fnando/browser/blob/master/lib/browser/platform.rb)
154
+ - For a list of device detections, check
155
+ [lib/browser/device.rb](https://github.com/fnando/browser/blob/master/lib/browser/device.rb)
156
+ - For a list of bot detections, check
157
+ [bots.yml](https://github.com/fnando/browser/blob/master/bots.yml)
147
158
 
148
159
  ### Detecting modern browsers
149
160
 
150
- To detect whether a browser can be considered as modern or not, create a method that abstracts your versioning constraints. The following example will consider any of the following browsers as a modern:
161
+ To detect whether a browser can be considered as modern or not, create a method
162
+ that abstracts your versioning constraints. The following example will consider
163
+ any of the following browsers as a modern:
151
164
 
152
165
  ```ruby
153
166
  # Expects an Browser instance,
@@ -175,7 +188,8 @@ Just add it to the Gemfile.
175
188
  gem "browser"
176
189
  ```
177
190
 
178
- This adds a helper method called `browser`, that inspects your current user agent.
191
+ This adds a helper method called `browser`, that inspects your current user
192
+ agent.
179
193
 
180
194
  ```erb
181
195
  <% if browser.ie?(6) %>
@@ -183,7 +197,8 @@ This adds a helper method called `browser`, that inspects your current user agen
183
197
  <% end %>
184
198
  ```
185
199
 
186
- If you want to use Browser on your Rails app but don't want to taint your controller, use the following line on your Gemfile:
200
+ If you want to use Browser on your Rails app but don't want to taint your
201
+ controller, use the following line on your Gemfile:
187
202
 
188
203
  ```ruby
189
204
  gem "browser", require: "browser/browser"
@@ -191,7 +206,8 @@ gem "browser", require: "browser/browser"
191
206
 
192
207
  ### Accept Language
193
208
 
194
- Parses the accept-language header from an HTTP request and produces an array of language objects sorted by quality.
209
+ Parses the accept-language header from an HTTP request and produces an array of
210
+ language objects sorted by quality.
195
211
 
196
212
  ```ruby
197
213
  browser = Browser.new("Some User Agent", accept_language: "en-us")
@@ -217,16 +233,22 @@ language.name
217
233
  #=> "English/United States"
218
234
  ```
219
235
 
220
- Result is always sorted in quality order from highest to lowest. As per the HTTP spec:
236
+ Result is always sorted in quality order from highest to lowest. As per the HTTP
237
+ spec:
221
238
 
222
239
  - omitting the quality value implies 1.0.
223
240
  - quality value equal to zero means that is not accepted by the client.
224
241
 
225
242
  ### Internet Explorer
226
243
 
227
- Internet Explorer has a compatibility view mode that allows newer versions (IE8+) to run as an older version. Browser will always return the navigator version, ignoring the compatibility view version, when defined. If you need to get the engine's version, you have to use `Browser#msie_version` and `Browser#msie_full_version`.
244
+ Internet Explorer has a compatibility view mode that allows newer versions
245
+ (IE8+) to run as an older version. Browser will always return the navigator
246
+ version, ignoring the compatibility view version, when defined. If you need to
247
+ get the engine's version, you have to use `Browser#msie_version` and
248
+ `Browser#msie_full_version`.
228
249
 
229
- So, let's say an user activates compatibility view in a IE11 browser. This is what you'll get:
250
+ So, let's say an user activates compatibility view in a IE11 browser. This is
251
+ what you'll get:
230
252
 
231
253
  ```ruby
232
254
  browser.version
@@ -245,11 +267,14 @@ browser.compatibility_view?
245
267
  #=> true
246
268
  ```
247
269
 
248
- This behavior changed in `v1.0.0`; previously there wasn't a way of getting the real browser version.
270
+ This behavior changed in `v1.0.0`; previously there wasn't a way of getting the
271
+ real browser version.
249
272
 
250
273
  ### Safari
251
274
 
252
- iOS webviews and web apps aren't detected as Safari anymore, so be aware of that if that's your case. You can use a combination of platform and webkit detection to do whatever you want.
275
+ iOS webviews and web apps aren't detected as Safari anymore, so be aware of that
276
+ if that's your case. You can use a combination of platform and webkit detection
277
+ to do whatever you want.
253
278
 
254
279
  ```ruby
255
280
  # iPad's Safari running as web app mode.
@@ -267,19 +292,25 @@ browser.platform.ios?
267
292
 
268
293
  ### Bots
269
294
 
270
- The bot detection is quite aggressive. Anything that matches at least one of the following requirements will be considered a bot.
295
+ The bot detection is quite aggressive. Anything that matches at least one of the
296
+ following requirements will be considered a bot.
271
297
 
272
298
  - Empty user agent string
273
299
  - User agent that matches `/crawl|fetch|search|monitoring|spider|bot/`
274
- - Any known bot listed under [bots.yml](https://github.com/fnando/browser/blob/master/bots.yml)
300
+ - Any known bot listed under
301
+ [bots.yml](https://github.com/fnando/browser/blob/master/bots.yml)
275
302
 
276
- To add custom matchers, you can add a callable object to `Browser::Bot.matchers`. The following example matches everything that has a `externalhit` substring on it. The bot name will always be `General Bot`.
303
+ To add custom matchers, you can add a callable object to
304
+ `Browser::Bot.matchers`. The following example matches everything that has a
305
+ `externalhit` substring on it. The bot name will always be `General Bot`.
277
306
 
278
307
  ```ruby
279
- Browser::Bot.matchers << ->(ua, _browser) { ua =~ /externalhit/i }
308
+ Browser::Bot.matchers << ->(ua, _browser) { ua.match?(/externalhit/i) }
280
309
  ```
281
310
 
282
- To clear all matchers, including the ones that are bundled, use `Browser::Bot.matchers.clear`. You can re-add built-in matchers by doing the following:
311
+ To clear all matchers, including the ones that are bundled, use
312
+ `Browser::Bot.matchers.clear`. You can re-add built-in matchers by doing the
313
+ following:
283
314
 
284
315
  ```ruby
285
316
  Browser::Bot.matchers += Browser::Bot.default_matchers
@@ -302,7 +333,8 @@ use Browser::Middleware do
302
333
  end
303
334
  ```
304
335
 
305
- If you're using Rails, you can use the route helper methods. Just add something like the following to a initializer file (`config/initializers/browser.rb`).
336
+ If you're using Rails, you can use the route helper methods. Just add something
337
+ like the following to a initializer file (`config/initializers/browser.rb`).
306
338
 
307
339
  ```ruby
308
340
  Rails.configuration.middleware.use Browser::Middleware do
@@ -310,7 +342,8 @@ Rails.configuration.middleware.use Browser::Middleware do
310
342
  end
311
343
  ```
312
344
 
313
- If you need access to the `Rack::Request` object (e.g. to exclude a path), you can do so with `request`.
345
+ If you need access to the `Rack::Request` object (e.g. to exclude a path), you
346
+ can do so with `request`.
314
347
 
315
348
  ```ruby
316
349
  Rails.configuration.middleware.use Browser::Middleware do
@@ -318,20 +351,19 @@ Rails.configuration.middleware.use Browser::Middleware do
318
351
  end
319
352
  ```
320
353
 
321
- ### Migrating to v2
354
+ ### Restrictions
322
355
 
323
- #### Troubleshooting
356
+ - User agent has a size limit of 2048 bytes. This can be customized through
357
+ `Browser.user_agent_size_limit=(size)`.
358
+ - Accept-Language has a size limit of 2048 bytes. This can be customized through
359
+ `Browser.accept_language_size_limit=(size)`.
324
360
 
325
- ##### `TypeError: no implicit conversion of Hash into String`
361
+ If size is not respected, then `Browser::Error` is raised.
326
362
 
327
- The class constructor now has a different signature. Change the instantiation from `Browser.new(options)` to `Browser.new(ua, options)`, where:
328
-
329
- - `ua`: must be a string representing the user agent.
330
- - `options`: must be a hash (for now it only accepts the `accept_language` option).
331
-
332
- ##### `NoMethodError: undefined method 'user_agent'`
333
-
334
- `.ua` can now be used to retrieve the full User Agent string.
363
+ ```ruby
364
+ Browser.user_agent_size_limit = 4096
365
+ Browser.accept_language_size_limit = 4096
366
+ ```
335
367
 
336
368
  ## Development
337
369
 
@@ -349,25 +381,28 @@ Once you've made your great commits (include tests, please):
349
381
  4. Create a pull request
350
382
  5. That's it!
351
383
 
352
- Please respect the indentation rules and code style.
353
- And use 2 spaces, not tabs. And don't touch the version thing.
384
+ Please respect the indentation rules and code style. And use 2 spaces, not tabs.
385
+ And don't touch the version thing.
354
386
 
355
387
  ## Configuring environment
356
388
 
357
- To configure your environment, you must have Ruby and bundler installed. Then run `bundle install` to install all dependencies.
389
+ To configure your environment, you must have Ruby and bundler installed. Then
390
+ run `bundle install` to install all dependencies.
358
391
 
359
392
  To run tests, execute `./bin/rake`.
360
393
 
361
394
  ### Adding new features
362
395
 
363
- Before using your time to code a new feature, open a ticket asking if it makes sense and if it's on this project's scope.
396
+ Before using your time to code a new feature, open a ticket asking if it makes
397
+ sense and if it's on this project's scope.
364
398
 
365
399
  Don't forget to add a new entry to `CHANGELOG.md`.
366
400
 
367
401
  #### Adding a new bot
368
402
 
369
403
  1. Add the user agent to `test/ua_bots.yml`.
370
- 2. Add the readable name to `bots.yml`. The key must be something that matches the user agent, in lowercased text.
404
+ 2. Add the readable name to `bots.yml`. The key must be something that matches
405
+ the user agent, in lowercased text.
371
406
  3. Run tests.
372
407
 
373
408
  Don't forget to add a new entry to `CHANGELOG.md`.
@@ -376,42 +411,43 @@ Don't forget to add a new entry to `CHANGELOG.md`.
376
411
 
377
412
  1. Add the user agent to `test/ua_search_engines.yml`.
378
413
  2. Add the same user agent to `test/ua_bots.yml`.
379
- 3. Add the readable name to `search_engines.yml`. The key must be something that matches the user agent, in lowercased text.
414
+ 3. Add the readable name to `search_engines.yml`. The key must be something that
415
+ matches the user agent, in lowercased text.
380
416
  4. Run tests.
381
417
 
382
418
  Don't forget to add a new entry to `CHANGELOG.md`.
383
419
 
384
420
  #### Wrong browser/platform/device detection
385
421
 
386
- If you know how to fix it, follow the "Writing code" above. Open an issue otherwise; make sure you fill in the issue template with all the required information.
422
+ If you know how to fix it, follow the "Writing code" above. Open an issue
423
+ otherwise; make sure you fill in the issue template with all the required
424
+ information.
387
425
 
388
426
  ## Maintainer
389
427
 
390
- * Nando Vieira - http://nandovieira.com
428
+ - Nando Vieira - http://nandovieira.com
391
429
 
392
430
  ## Contributors
393
431
 
394
- * https://github.com/fnando/browser/contributors
432
+ - https://github.com/fnando/browser/contributors
395
433
 
396
434
  ## License
397
435
 
398
436
  (The MIT License)
399
437
 
400
- Permission is hereby granted, free of charge, to any person obtaining
401
- a copy of this software and associated documentation files (the
402
- 'Software'), to deal in the Software without restriction, including
403
- without limitation the rights to use, copy, modify, merge, publish,
404
- distribute, sublicense, and/or sell copies of the Software, and to
405
- permit persons to whom the Software is furnished to do so, subject to
406
- the following conditions:
407
-
408
- The above copyright notice and this permission notice shall be
409
- included in all copies or substantial portions of the Software.
410
-
411
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
412
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
413
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
414
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
415
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
416
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
417
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
438
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
439
+ this software and associated documentation files (the 'Software'), to deal in
440
+ the Software without restriction, including without limitation the rights to
441
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
442
+ the Software, and to permit persons to whom the Software is furnished to do so,
443
+ subject to the following conditions:
444
+
445
+ The above copyright notice and this permission notice shall be included in all
446
+ copies or substantial portions of the Software.
447
+
448
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
449
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
450
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
451
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
452
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
453
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.