browser 4.2.0 → 5.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (102) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/tests.yml +57 -0
  3. data/.rubocop.yml +3 -0
  4. data/CHANGELOG.md +47 -1
  5. data/FUNDING.yml +3 -0
  6. data/README.md +100 -50
  7. data/bots.yml +1 -2
  8. data/browser.gemspec +4 -3
  9. data/gemfiles/{rails6.gemfile → rails6_0.gemfile} +0 -0
  10. data/gemfiles/{rails5.gemfile → rails6_1.gemfile} +1 -1
  11. data/lib/browser/accept_language.rb +4 -4
  12. data/lib/browser/alipay.rb +1 -1
  13. data/lib/browser/base.rb +72 -13
  14. data/lib/browser/blackberry.rb +1 -1
  15. data/lib/browser/bot/keyword_matcher.rb +1 -1
  16. data/lib/browser/browser.rb +21 -2
  17. data/lib/browser/chrome.rb +9 -3
  18. data/lib/browser/device.rb +12 -5
  19. data/lib/browser/device/android.rb +1 -1
  20. data/lib/browser/device/blackberry_playbook.rb +1 -1
  21. data/lib/browser/device/ipad.rb +1 -1
  22. data/lib/browser/device/iphone.rb +1 -1
  23. data/lib/browser/device/ipod_touch.rb +1 -1
  24. data/lib/browser/device/kindle.rb +1 -1
  25. data/lib/browser/device/kindle_fire.rb +1 -1
  26. data/lib/browser/device/playstation3.rb +1 -1
  27. data/lib/browser/device/playstation4.rb +1 -1
  28. data/lib/browser/device/psp.rb +1 -1
  29. data/lib/browser/device/psvita.rb +1 -1
  30. data/lib/browser/device/samsung.rb +33 -0
  31. data/lib/browser/device/surface.rb +1 -1
  32. data/lib/browser/device/switch.rb +1 -1
  33. data/lib/browser/device/tv.rb +1 -1
  34. data/lib/browser/device/unknown.rb +1 -1
  35. data/lib/browser/device/wii.rb +1 -1
  36. data/lib/browser/device/wiiu.rb +1 -1
  37. data/lib/browser/device/xbox_360.rb +1 -1
  38. data/lib/browser/device/xbox_one.rb +1 -1
  39. data/lib/browser/duck_duck_go.rb +1 -1
  40. data/lib/browser/edge.rb +2 -2
  41. data/lib/browser/electron.rb +1 -1
  42. data/lib/browser/facebook.rb +1 -1
  43. data/lib/browser/firefox.rb +1 -1
  44. data/lib/browser/google_search_app.rb +21 -0
  45. data/lib/browser/huawei_browser.rb +21 -0
  46. data/lib/browser/instagram.rb +1 -1
  47. data/lib/browser/internet_explorer.rb +2 -2
  48. data/lib/browser/maxthon.rb +21 -0
  49. data/lib/browser/micro_messenger.rb +1 -1
  50. data/lib/browser/miui_browser.rb +21 -0
  51. data/lib/browser/nokia.rb +1 -1
  52. data/lib/browser/opera.rb +1 -1
  53. data/lib/browser/otter.rb +1 -1
  54. data/lib/browser/phantom_js.rb +1 -1
  55. data/lib/browser/platform.rb +21 -15
  56. data/lib/browser/platform/adobe_air.rb +1 -1
  57. data/lib/browser/platform/android.rb +1 -1
  58. data/lib/browser/platform/blackberry.rb +1 -1
  59. data/lib/browser/platform/chrome_os.rb +1 -1
  60. data/lib/browser/platform/firefox_os.rb +1 -1
  61. data/lib/browser/platform/ios.rb +2 -2
  62. data/lib/browser/platform/kai_os.rb +23 -0
  63. data/lib/browser/platform/linux.rb +1 -1
  64. data/lib/browser/platform/mac.rb +2 -2
  65. data/lib/browser/platform/{other.rb → unknown.rb} +3 -3
  66. data/lib/browser/platform/windows.rb +2 -2
  67. data/lib/browser/platform/windows_mobile.rb +1 -1
  68. data/lib/browser/platform/windows_phone.rb +1 -1
  69. data/lib/browser/qq.rb +1 -1
  70. data/lib/browser/safari.rb +11 -3
  71. data/lib/browser/samsung_browser.rb +1 -1
  72. data/lib/browser/snapchat.rb +1 -1
  73. data/lib/browser/sougou_browser.rb +24 -0
  74. data/lib/browser/sputnik.rb +1 -1
  75. data/lib/browser/uc_browser.rb +1 -1
  76. data/lib/browser/{generic.rb → unknown.rb} +3 -3
  77. data/lib/browser/version.rb +1 -1
  78. data/lib/browser/weibo.rb +1 -1
  79. data/lib/browser/yandex.rb +1 -1
  80. data/samsung.yml +138 -0
  81. data/test/browser_test.rb +37 -6
  82. data/test/ua.yml +18 -4
  83. data/test/ua_bots.yml +0 -1
  84. data/test/unit/adobe_air_test.rb +1 -1
  85. data/test/unit/alipay_test.rb +6 -0
  86. data/test/unit/bots_test.rb +1 -1
  87. data/test/unit/console_test.rb +2 -2
  88. data/test/unit/device_test.rb +30 -3
  89. data/test/unit/duck_duck_go_test.rb +2 -0
  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/miui_browser_test.rb +25 -0
  96. data/test/unit/opera_test.rb +1 -0
  97. data/test/unit/platform_test.rb +7 -7
  98. data/test/unit/qq_test.rb +12 -0
  99. data/test/unit/safari_test.rb +12 -7
  100. data/test/unit/sougou_browser_test.rb +41 -0
  101. metadata +38 -17
  102. data/.travis.yml +0 -23
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d83e06fd8c03def4d4c2af17fbbd94580594eeb689aa6f4d0fda3d7c94be4c8c
4
- data.tar.gz: 4e8b416860701c61d4a1cf40d2a51316c28431e60d24716d8092746faff88c70
3
+ metadata.gz: 837e072e8544da56ee51cf187b35850444d17c931c535115cf50c679d2227a7c
4
+ data.tar.gz: b789e49dbd45164c42ff5a25c5bd5a5d0c54a32ac945bcbf97ee41682ca23693
5
5
  SHA512:
6
- metadata.gz: 86f29ee60621611d8abb82837eac44594b50739e7b39991bd8ce73c7b701f7630e314d3ac22fdf80567d3c2a44985ad4a632204d14805d7015e18b856d357dfc
7
- data.tar.gz: 9bb2826023b3e7d6b7a7ca7c5f0d14b0871bcb39764d3c3c05ecba7784cc4458949533dfc16cc3de7b5f3844faf254d6faf127613ca27547d52ea07040e7ccfa
6
+ metadata.gz: 4adb59b646efa17033f385ad0b935f067c9b67a8718a1362f0c5ef49a3c28decd064ec788739c4d38f9969a2189ffc7090ae5d62d3979c249e3237f6b547bfe1
7
+ data.tar.gz: c0712d54d08e48522b26ce1c162a238711f20bced68b578e300657ec25ff313d9637a2a881dd2797cd8295b90d100a60789364b17cb9b008e4e3da092e071d0a
@@ -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: ["3.0.x", "2.7.x", "2.6.x", "2.5.x"]
22
+ gemfile:
23
+ - Gemfile
24
+ - gemfiles/rails6_1.gemfile
25
+ - gemfiles/rails6_0.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
data/.rubocop.yml CHANGED
@@ -36,3 +36,6 @@ Metrics/CyclomaticComplexity:
36
36
 
37
37
  Metrics/PerceivedComplexity:
38
38
  Enabled: false
39
+
40
+ Naming/VariableNumber:
41
+ Enabled: false
data/CHANGELOG.md CHANGED
@@ -1,6 +1,52 @@
1
1
  # Changelog
2
2
 
3
- ## Unreleased
3
+ ## 5.3.1
4
+
5
+ - Remove Stripe webhooks from bot list.
6
+
7
+ ## 5.3.0
8
+
9
+ - Bump up minimum required ruby version to 2.5.0. We're now relying on
10
+ `String#match?`, which was introduced by ruby-2.4, but given that ruby's
11
+ stable version is >= 2.5, seems reasonable.
12
+
13
+ ## 5.2.0
14
+
15
+ - Add KaiOS detection.
16
+ - Replace `String#=~` with `String#match?` and other optimizations.
17
+
18
+ ## 5.1.0
19
+
20
+ - Add Samsung device detection.
21
+ - Delay parsing `Accept-Language` until `Browser::Base#accept_language` is
22
+ called for the first time.
23
+ - Bump up default size limit for `Accept-Language` and `User-Agent` to 2048
24
+ bytes.
25
+
26
+ ## 5.0.0
27
+
28
+ - Rename `Browser::Platform#other?` to `Browser::Platform#unknown?`.
29
+ - Unknown platforms now return `:unknown_platform` as the id.
30
+ - Unknown devices now return `:unknown_device` as the id.
31
+ - Unknown browsers now return `:unknown_browser` as the id.
32
+ - All the changes above affect how `browser.meta` is composed.
33
+ - Add method `Browser::Base#unknown?`.
34
+ - Fix issue with `Browser::Base#safari?` matching full version.
35
+ - Add Maxthon detection.
36
+ - Add Google Search App detection.
37
+ - Add Huawei Browser detection.
38
+ - Fix Duck Duck Go browser that was being recognized as a bot.
39
+ - Add Miui Browser detection.
40
+ - Add `Browser::Base#qq?`.
41
+ - Fix QQ detection.
42
+ - Fix Alipay detection.
43
+ - Add Sougou Browser detection.
44
+ - User agent has a size limit of 512 bytes. This can be customized through
45
+ `Browser.user_agent_size_limit`.
46
+ - Accept-Language has a size limit of 256 bytes. This can be customized through
47
+ `Browser.accept_language_size_limit`.
48
+
49
+ ## 4.2.0
4
50
 
5
51
  - Fix Chrome Lighthouse detection.
6
52
  - Add Skype to bot list.
data/FUNDING.yml ADDED
@@ -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?
@@ -51,9 +51,11 @@ browser.webkit?
51
51
  browser.webkit_full_version
52
52
  browser.yandex?
53
53
  browser.wechat?
54
+ browser.qq?
54
55
  browser.weibo?
55
56
  browser.yandex?
56
57
  browser.sputnik?
58
+ browser.sougou_browser?
57
59
 
58
60
  # Get bot info
59
61
  browser.bot.name
@@ -66,6 +68,7 @@ Browser::Bot.why?(ua)
66
68
  browser.device
67
69
  browser.device.id
68
70
  browser.device.name
71
+ browser.device.unknown?
69
72
  browser.device.blackberry_playbook?
70
73
  browser.device.console?
71
74
  browser.device.ipad?
@@ -86,6 +89,7 @@ browser.device.tv?
86
89
  browser.device.vita?
87
90
  browser.device.wii?
88
91
  browser.device.wiiu?
92
+ browser.device.samsung?
89
93
  browser.device.switch?
90
94
  browser.device.xbox?
91
95
  browser.device.xbox_360?
@@ -111,7 +115,7 @@ browser.platform.ios_app? # detect webview in an iOS app
111
115
  browser.platform.ios_webview? # alias for ios_app?
112
116
  browser.platform.linux?
113
117
  browser.platform.mac?
114
- browser.platform.other?
118
+ browser.platform.unknown?
115
119
  browser.platform.windows10?
116
120
  browser.platform.windows7?
117
121
  browser.platform.windows8?
@@ -126,11 +130,14 @@ browser.platform.windows_wow64?
126
130
  browser.platform.windows_x64?
127
131
  browser.platform.windows_x64_inclusive?
128
132
  browser.platform.windows_xp?
133
+ browser.platform.kai_os?
129
134
  ```
130
135
 
131
136
  ### Aliases
132
137
 
133
- 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:
134
141
 
135
142
  ```ruby
136
143
  require "browser/aliases"
@@ -142,13 +149,18 @@ browser.mobile? #=> false
142
149
 
143
150
  ### What's being detected?
144
151
 
145
- - For a list of platform detections, check [lib/browser/platform.rb](https://github.com/fnando/browser/blob/master/lib/browser/platform.rb)
146
- - For a list of device detections, check [lib/browser/device.rb](https://github.com/fnando/browser/blob/master/lib/browser/device.rb)
147
- - 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)
148
158
 
149
159
  ### Detecting modern browsers
150
160
 
151
- 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:
152
164
 
153
165
  ```ruby
154
166
  # Expects an Browser instance,
@@ -176,7 +188,8 @@ Just add it to the Gemfile.
176
188
  gem "browser"
177
189
  ```
178
190
 
179
- 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.
180
193
 
181
194
  ```erb
182
195
  <% if browser.ie?(6) %>
@@ -184,7 +197,8 @@ This adds a helper method called `browser`, that inspects your current user agen
184
197
  <% end %>
185
198
  ```
186
199
 
187
- 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:
188
202
 
189
203
  ```ruby
190
204
  gem "browser", require: "browser/browser"
@@ -192,7 +206,8 @@ gem "browser", require: "browser/browser"
192
206
 
193
207
  ### Accept Language
194
208
 
195
- 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.
196
211
 
197
212
  ```ruby
198
213
  browser = Browser.new("Some User Agent", accept_language: "en-us")
@@ -218,16 +233,22 @@ language.name
218
233
  #=> "English/United States"
219
234
  ```
220
235
 
221
- 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:
222
238
 
223
239
  - omitting the quality value implies 1.0.
224
240
  - quality value equal to zero means that is not accepted by the client.
225
241
 
226
242
  ### Internet Explorer
227
243
 
228
- 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`.
229
249
 
230
- 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:
231
252
 
232
253
  ```ruby
233
254
  browser.version
@@ -246,11 +267,14 @@ browser.compatibility_view?
246
267
  #=> true
247
268
  ```
248
269
 
249
- 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.
250
272
 
251
273
  ### Safari
252
274
 
253
- 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.
254
278
 
255
279
  ```ruby
256
280
  # iPad's Safari running as web app mode.
@@ -268,19 +292,25 @@ browser.platform.ios?
268
292
 
269
293
  ### Bots
270
294
 
271
- 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.
272
297
 
273
298
  - Empty user agent string
274
299
  - User agent that matches `/crawl|fetch|search|monitoring|spider|bot/`
275
- - 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)
276
302
 
277
- 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`.
278
306
 
279
307
  ```ruby
280
- Browser::Bot.matchers << ->(ua, _browser) { ua =~ /externalhit/i }
308
+ Browser::Bot.matchers << ->(ua, _browser) { ua.match?(/externalhit/i) }
281
309
  ```
282
310
 
283
- 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:
284
314
 
285
315
  ```ruby
286
316
  Browser::Bot.matchers += Browser::Bot.default_matchers
@@ -303,7 +333,8 @@ use Browser::Middleware do
303
333
  end
304
334
  ```
305
335
 
306
- 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`).
307
338
 
308
339
  ```ruby
309
340
  Rails.configuration.middleware.use Browser::Middleware do
@@ -311,7 +342,8 @@ Rails.configuration.middleware.use Browser::Middleware do
311
342
  end
312
343
  ```
313
344
 
314
- 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`.
315
347
 
316
348
  ```ruby
317
349
  Rails.configuration.middleware.use Browser::Middleware do
@@ -319,6 +351,20 @@ Rails.configuration.middleware.use Browser::Middleware do
319
351
  end
320
352
  ```
321
353
 
354
+ ### Restrictions
355
+
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)`.
360
+
361
+ If size is not respected, then `Browser::Error` is raised.
362
+
363
+ ```ruby
364
+ Browser.user_agent_size_limit = 4096
365
+ Browser.accept_language_size_limit = 4096
366
+ ```
367
+
322
368
  ## Development
323
369
 
324
370
  ### Versioning
@@ -335,25 +381,28 @@ Once you've made your great commits (include tests, please):
335
381
  4. Create a pull request
336
382
  5. That's it!
337
383
 
338
- Please respect the indentation rules and code style.
339
- 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.
340
386
 
341
387
  ## Configuring environment
342
388
 
343
- 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.
344
391
 
345
392
  To run tests, execute `./bin/rake`.
346
393
 
347
394
  ### Adding new features
348
395
 
349
- 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.
350
398
 
351
399
  Don't forget to add a new entry to `CHANGELOG.md`.
352
400
 
353
401
  #### Adding a new bot
354
402
 
355
403
  1. Add the user agent to `test/ua_bots.yml`.
356
- 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.
357
406
  3. Run tests.
358
407
 
359
408
  Don't forget to add a new entry to `CHANGELOG.md`.
@@ -362,42 +411,43 @@ Don't forget to add a new entry to `CHANGELOG.md`.
362
411
 
363
412
  1. Add the user agent to `test/ua_search_engines.yml`.
364
413
  2. Add the same user agent to `test/ua_bots.yml`.
365
- 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.
366
416
  4. Run tests.
367
417
 
368
418
  Don't forget to add a new entry to `CHANGELOG.md`.
369
419
 
370
420
  #### Wrong browser/platform/device detection
371
421
 
372
- 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.
373
425
 
374
426
  ## Maintainer
375
427
 
376
- * Nando Vieira - http://nandovieira.com
428
+ - Nando Vieira - http://nandovieira.com
377
429
 
378
430
  ## Contributors
379
431
 
380
- * https://github.com/fnando/browser/contributors
432
+ - https://github.com/fnando/browser/contributors
381
433
 
382
434
  ## License
383
435
 
384
436
  (The MIT License)
385
437
 
386
- Permission is hereby granted, free of charge, to any person obtaining
387
- a copy of this software and associated documentation files (the
388
- 'Software'), to deal in the Software without restriction, including
389
- without limitation the rights to use, copy, modify, merge, publish,
390
- distribute, sublicense, and/or sell copies of the Software, and to
391
- permit persons to whom the Software is furnished to do so, subject to
392
- the following conditions:
393
-
394
- The above copyright notice and this permission notice shall be
395
- included in all copies or substantial portions of the Software.
396
-
397
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
398
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
399
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
400
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
401
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
402
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
403
- 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.