podman-user-agent 1.2.0 → 1.2.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.
- data/lib/user-agent/agent.rb +2 -1
- data/lib/user-agent/version.rb +1 -1
- data/spec/agents_spec.rb +7 -4
- metadata +5 -14
data/lib/user-agent/agent.rb
CHANGED
|
@@ -80,7 +80,8 @@ module UserAgent
|
|
|
80
80
|
def self.os_for_user_agent string
|
|
81
81
|
case string
|
|
82
82
|
when /windows nt 6\.0/i ; :'Windows Vista'
|
|
83
|
-
when /windows nt 6
|
|
83
|
+
when /windows nt 6\.2/i ; :'Windows 8'
|
|
84
|
+
when /windows nt 6\.1/i ; :'Windows 7'
|
|
84
85
|
when /windows nt 5\.2/i ; :'Windows 2003'
|
|
85
86
|
when /windows nt 5\.1/i ; :'Windows XP'
|
|
86
87
|
when /windows nt 5\.0/i ; :'Windows 2000'
|
data/lib/user-agent/version.rb
CHANGED
data/spec/agents_spec.rb
CHANGED
|
@@ -21,12 +21,15 @@ describe UserAgent do
|
|
|
21
21
|
test :Safari, '4.0', :Windows, :'Windows Vista', :webkit, '528.16', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; ru-RU) AppleWebKit/528.16 (KHTML, like Gecko) Version/4.0 Safari/528.16'
|
|
22
22
|
test :Safari, '3.2.3', :Windows, :'Windows XP', :webkit, '525.28.3', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; cs-CZ) AppleWebKit/525.28.3 (KHTML, like Gecko) Version/3.2.3 Safari/525.29'
|
|
23
23
|
|
|
24
|
-
test :Safari, '4.0.4', :iPad, :'
|
|
25
|
-
test :Safari, '4.0.4', :iPad, :'
|
|
24
|
+
test :Safari, '4.0.4', :iPad, :'iOS 3.2', :webkit, '531.21.10', 'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B314 Safari/531.21.10'
|
|
25
|
+
test :Safari, '4.0.4', :iPad, :'iOS 3.2', :webkit, '531.21.10', 'Mozilla/5.0 (iPad; U; CPU iPhone OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B314 Safari/531.21.10'
|
|
26
26
|
|
|
27
|
-
test :Safari, '4.0', :iPhone, :'
|
|
27
|
+
test :Safari, '4.0', :iPhone, :'iOS 3.0', :webkit, '528.18', 'Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16'
|
|
28
28
|
|
|
29
|
-
test :IE, '
|
|
29
|
+
test :IE, '10.0', :Windows, :'Windows 8', :msie, '10.0', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0)'
|
|
30
|
+
test :IE, '10.0', :Windows, :'Windows 7', :msie, '10.0', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)'
|
|
31
|
+
test :IE, '9.0', :Windows, :'Windows 7', :msie, '9.0', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)'
|
|
32
|
+
test :IE, '8.0', :Windows, :'Windows 7', :msie, '8.0', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)'
|
|
30
33
|
test :IE, '7.0b', :Windows, :'Windows 2003', :msie, '7.0b', 'Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30)'
|
|
31
34
|
test :IE, '7.0', :Windows, :'Windows XP', :msie, '7.0', "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)"
|
|
32
35
|
test :IE, '7.0', :Windows, :'Windows XP', :msie, '7.0', "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; MSOffice 12)"
|
metadata
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: podman-user-agent
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
prerelease:
|
|
4
|
+
prerelease: false
|
|
6
5
|
segments:
|
|
7
6
|
- 1
|
|
8
7
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 1.2.
|
|
8
|
+
- 1
|
|
9
|
+
version: 1.2.1
|
|
11
10
|
platform: ruby
|
|
12
11
|
authors:
|
|
13
12
|
- Adam Podolnick
|
|
@@ -15,18 +14,16 @@ autorequire:
|
|
|
15
14
|
bindir: bin
|
|
16
15
|
cert_chain: []
|
|
17
16
|
|
|
18
|
-
date: 2012-
|
|
17
|
+
date: 2012-12-24 00:00:00 -05:00
|
|
19
18
|
default_executable:
|
|
20
19
|
dependencies:
|
|
21
20
|
- !ruby/object:Gem::Dependency
|
|
22
21
|
name: rake
|
|
23
22
|
prerelease: false
|
|
24
23
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
24
|
requirements:
|
|
27
25
|
- - ">="
|
|
28
26
|
- !ruby/object:Gem::Version
|
|
29
|
-
hash: 3
|
|
30
27
|
segments:
|
|
31
28
|
- 0
|
|
32
29
|
version: "0"
|
|
@@ -36,11 +33,9 @@ dependencies:
|
|
|
36
33
|
name: rspec
|
|
37
34
|
prerelease: false
|
|
38
35
|
requirement: &id002 !ruby/object:Gem::Requirement
|
|
39
|
-
none: false
|
|
40
36
|
requirements:
|
|
41
37
|
- - ">="
|
|
42
38
|
- !ruby/object:Gem::Version
|
|
43
|
-
hash: 3
|
|
44
39
|
segments:
|
|
45
40
|
- 0
|
|
46
41
|
version: "0"
|
|
@@ -79,27 +74,23 @@ rdoc_options: []
|
|
|
79
74
|
require_paths:
|
|
80
75
|
- lib
|
|
81
76
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
82
|
-
none: false
|
|
83
77
|
requirements:
|
|
84
78
|
- - ">="
|
|
85
79
|
- !ruby/object:Gem::Version
|
|
86
|
-
hash: 3
|
|
87
80
|
segments:
|
|
88
81
|
- 0
|
|
89
82
|
version: "0"
|
|
90
83
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
91
|
-
none: false
|
|
92
84
|
requirements:
|
|
93
85
|
- - ">="
|
|
94
86
|
- !ruby/object:Gem::Version
|
|
95
|
-
hash: 3
|
|
96
87
|
segments:
|
|
97
88
|
- 0
|
|
98
89
|
version: "0"
|
|
99
90
|
requirements: []
|
|
100
91
|
|
|
101
92
|
rubyforge_project: podman-user-agent
|
|
102
|
-
rubygems_version: 1.
|
|
93
|
+
rubygems_version: 1.3.6
|
|
103
94
|
signing_key:
|
|
104
95
|
specification_version: 3
|
|
105
96
|
summary: User agent parser
|