browserino 2.10.1.1 → 2.11.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9b450f52134a8b38a690979d39d74d29b888e5bf
4
- data.tar.gz: d77c652e1021e692c30e4a50ef53b3a57aaf85aa
3
+ metadata.gz: 1bb1caac98a86a257da42ab8895c252d0b95897c
4
+ data.tar.gz: 060c339a30a43de5adb619bbbe17c7f2ddff5279
5
5
  SHA512:
6
- metadata.gz: 6f935e1dfda1c9e34c9056d3007329a9a27ed44ba6573ea3941fc739f782d3bda0be7b22b36ca76c4dd692345c1dad1eb5962d40fb258daa128b56560e95262e
7
- data.tar.gz: 02996cad78bb74266e5c3d2b881fea386ffeb2c8be8ab3665e92498ddb7620253fa85f080cd7b4115ce90f4e5d5c7f6f1822c546070784a2094305964efb1353
6
+ metadata.gz: f3b62f1d58837e25c1f597772e8c717fd0bb1c91101abfdedf1685a22423e450e5f5ec7b3116da15895e9635fd2120b799b9a509a6705abc454c0c494398f225
7
+ data.tar.gz: 3d22b59114f7698213f003c48ffc244bc5e8e97912887215d40eaf7b6634449c1327c391cf2ba163e26a353675b908f1d7c51691f89ad083383ed5f5055f281d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,20 @@
1
1
  ## CHANGELOG
2
2
  _dates are in dd-mm-yyyy format_
3
3
 
4
+ #### 24-07-2016 VERSION 2.10.0
5
+
6
+ - Added support for the servo browser:
7
+ - Added `servo?` method
8
+
9
+ - Added detection for various programming languages:
10
+ - Added `library?` method
11
+ - Added `php?` method
12
+ - Added `perl?` method
13
+ - Added `python?` method
14
+ - Added `java?` method
15
+ - Added `curl?` method
16
+ - Added `pycurl?` method
17
+
4
18
  #### 29-05-2016 VERSION 2.9.0
5
19
 
6
20
  - Stricter checking for:
data/README.md CHANGED
@@ -3,6 +3,10 @@
3
3
  A UserAgent sniffer with Rails >= 3.2.0 integration.
4
4
  The sniffer can currently identify 22 bots (of which 6 social media and 5 search engines), 14 browsers, 9 operating systems, 6 programming language UA's and 4 consoles.
5
5
 
6
+ # DEPRECATION WARNING: Ruby < 2
7
+
8
+ Browserino will be dropping support for Ruby versions less than 2 with the release of version `3.0.0`
9
+
6
10
  ## Status
7
11
 
8
12
  [![Gem Version](https://badge.fury.io/rb/browserino.svg)](http://badge.fury.io/rb/browserino)
@@ -20,7 +24,13 @@ Useragent references:
20
24
  ## Changelog
21
25
 
22
26
  _dates are in dd-mm-yyyy format_
23
- _older changes can be found in the [CHANGELOG.md](/CHANGELOG.md)_
27
+ _older changes can be found in the [CHANGELOG.md](CHANGELOG.md)_
28
+
29
+ #### 13-11-2016 VERSION 2.11.0
30
+
31
+ - Add `:macos` alias for `:macintosh` systems.
32
+ - Added support for MacOS `:sierra` alias in methods.
33
+ - Added deprecation notice for dropping support of Ruby < 2.0.0
24
34
 
25
35
  #### 19-10-2016 VERSION 2.10.1.1
26
36
 
@@ -33,20 +43,6 @@ _older changes can be found in the [CHANGELOG.md](/CHANGELOG.md)_
33
43
  - Replaced `require` with `require_relative` where possible
34
44
  - Fixed cli not loading due to failing `require`
35
45
 
36
- #### 24-07-2016 VERSION 2.10.0
37
-
38
- - Added support for the servo browser:
39
- - Added `servo?` method
40
-
41
- - Added detection for various programming languages:
42
- - Added `library?` method
43
- - Added `php?` method
44
- - Added `perl?` method
45
- - Added `python?` method
46
- - Added `java?` method
47
- - Added `curl?` method
48
- - Added `pycurl?` method
49
-
50
46
  ## Installation
51
47
 
52
48
  Add the following to your applications Gemfile:
@@ -69,7 +65,7 @@ $ gem install browserino
69
65
 
70
66
  Browserino is tested with the following ruby versions
71
67
 
72
- * 1.9.3
68
+ * 1.9.3 - **SUPPORT WILL BE DROPPED WITHIN THE NEXT VERSION**
73
69
  * 2.0.0
74
70
  * 2.1.0
75
71
  * 2.2.1
@@ -639,7 +635,7 @@ Notes:
639
635
  * `linux?` doesn't support any versions
640
636
  * `bsd?` doesn't support any versions
641
637
  * `solaris?` only supports numeric versions
642
- * *named versions* are only supported if they are present in a [map](/lib/browserino/maps)
638
+ * *named versions* are only supported if they are present in a [map](https://github.com/SidOfc/browserino/tree/master/lib/browserino/maps)
643
639
 
644
640
  ## Contributing
645
641
 
data/browserino.gemspec CHANGED
@@ -18,9 +18,19 @@ Gem::Specification.new do |spec|
18
18
  spec.executables = ['browserino']
19
19
  spec.require_paths = ["lib"]
20
20
 
21
+ spec.post_install_message = %q{
22
+ Thanks for using Browserino!
23
+
24
+ Documentation can be found on : https://github.com/SidOfc/browserino
25
+ Changes can be found on : https://github.com/SidOfc/browserino/blob/master/CHANGELOG.md
26
+ Deprecation notice : Browserino will be dropping support for Ruby versions less than 2 with the release of version 3.0.0
27
+
28
+ }
29
+
21
30
  spec.add_development_dependency "json", "<= 1.8.3"
22
31
  spec.add_development_dependency "bundler", "~> 1.10"
23
32
  spec.add_development_dependency "rake", "~> 10.0"
33
+ spec.add_development_dependency "term-ansicolor", "<= 1.3.2"
24
34
  spec.add_development_dependency "rspec"
25
35
  spec.add_development_dependency "tins", "1.6"
26
36
  spec.add_development_dependency "coveralls"