aua 0.2.1 → 0.2.2
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/.rvmrc +1 -1
- data/CHANGES.md +5 -1
- data/Gemfile.lock +1 -1
- data/lib/aua/agents/feed_reader.rb +1 -1
- data/lib/aua/agents/other_browsers.rb +15 -0
- data/lib/aua/agents.rb +1 -1
- data/lib/aua/version.rb +1 -1
- data/spec/aua_spec.rb +5 -0
- metadata +51 -83
data/.rvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
rvm use ruby-1.9.
|
|
1
|
+
rvm use ruby-1.9.3@aua --create
|
data/CHANGES.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
### dev
|
|
2
2
|
|
|
3
|
-
[full changelog](http://github.com/yolk/aua/compare/v0.2.
|
|
3
|
+
[full changelog](http://github.com/yolk/aua/compare/v0.2.2...master)
|
|
4
|
+
|
|
5
|
+
### 0.2.2 / 2012-03-29
|
|
6
|
+
|
|
7
|
+
[full changelog](http://github.com/yolk/aua/compare/v0.2.1...v0.2.2)
|
|
4
8
|
|
|
5
9
|
### 0.2.1 / 2011-01-28
|
|
6
10
|
|
data/Gemfile.lock
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
module Aua::Agents::FeedReader
|
|
2
|
-
KNOWN_CLIENTS = %w(AppleSyndication Netvibes Windows-RSS-Platform Vienna NewsGatorOnline NewsFire NetNewsWire MWFeedParser SimplePie MagpieRSS Feedfetcher-Google Apple-PubSub)
|
|
2
|
+
KNOWN_CLIENTS = %w(Reeder AppleSyndication Netvibes Windows-RSS-Platform Vienna NewsGatorOnline NewsFire NetNewsWire MWFeedParser SimplePie MagpieRSS Feedfetcher-Google Apple-PubSub)
|
|
3
3
|
|
|
4
4
|
def self.extend?(agent)
|
|
5
5
|
KNOWN_CLIENTS.include?(agent.app) ||
|
data/lib/aua/agents.rb
CHANGED
|
@@ -6,7 +6,7 @@ class Aua
|
|
|
6
6
|
extend self
|
|
7
7
|
|
|
8
8
|
def default
|
|
9
|
-
@default ||= [HttpChecker, ApiClients, FeedReader, Firefox, Chrome::Frame, Chrome, Safari, Opera, Msie, SearchBot, Konqueror, Others, EngineFallback]
|
|
9
|
+
@default ||= [HttpChecker, ApiClients, FeedReader, Firefox, Chrome::Frame, Chrome, Safari, Opera, Msie, SearchBot, Konqueror, Others, EngineFallback, OtherBrowsers]
|
|
10
10
|
end
|
|
11
11
|
end
|
|
12
12
|
end
|
data/lib/aua/version.rb
CHANGED
data/spec/aua_spec.rb
CHANGED
|
@@ -379,6 +379,8 @@ describe Aua do
|
|
|
379
379
|
{ :type => :FeedReader, :name => :AppleSyndication, :version => "38", :os_name => nil, :os_version => nil, :platform => nil },
|
|
380
380
|
"Tumblr/1.0 RSS syndication (+http://www.tumblr.com/) (support@tumblr.com)" =>
|
|
381
381
|
{ :type => :FeedReader, :name => :TumblrRSSSyndication, :version => "1.0", :os_name => nil, :os_version => nil, :platform => nil },
|
|
382
|
+
"Reeder/1010.69.00 CFNetwork/520.3.2 Darwin/11.3.0 (x86_64) (MacBookPro6%2C2)" =>
|
|
383
|
+
{ :type => :FeedReader, :name => :Reeder, :version => "1010.69.00", :os_name => :Darwin, :os_version => "11.3.0", :platform => :Darwin },
|
|
382
384
|
|
|
383
385
|
# SearchBots
|
|
384
386
|
"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" =>
|
|
@@ -409,6 +411,9 @@ describe Aua do
|
|
|
409
411
|
{ :type => :Browser, :name => :Gecko, :version => "20070606", :major_version => "20070606", :os_name => :Linux, :os_version => "Solaris", :platform => :X11 },
|
|
410
412
|
"Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20051105" =>
|
|
411
413
|
{ :type => :Browser, :name => :Gecko, :version => "20051105", :os_name => :Linux, :os_version => "FreeBSD", :platform => :X11 },
|
|
414
|
+
|
|
415
|
+
"Raven/0.7.14612 CFNetwork/520.3.2 Darwin/11.3.0 (x86_64) (iMac12%2C2)" =>
|
|
416
|
+
{ :type => :Browser, :name => :Raven, :version => "0.7.14612", :os_name => :Darwin, :os_version => "11.3.0", :platform => :Darwin },
|
|
412
417
|
}
|
|
413
418
|
|
|
414
419
|
EXAMPLES.each do |string, values|
|
metadata
CHANGED
|
@@ -1,92 +1,67 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aua
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
- 0
|
|
7
|
-
- 2
|
|
8
|
-
- 1
|
|
9
|
-
version: 0.2.1
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.2.2
|
|
5
|
+
prerelease:
|
|
10
6
|
platform: ruby
|
|
11
|
-
authors:
|
|
7
|
+
authors:
|
|
12
8
|
- Sebastian Munz
|
|
13
9
|
autorequire:
|
|
14
10
|
bindir: bin
|
|
15
11
|
cert_chain: []
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
dependencies:
|
|
20
|
-
- !ruby/object:Gem::Dependency
|
|
12
|
+
date: 2012-03-29 00:00:00.000000000 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
21
15
|
name: rspec
|
|
22
|
-
|
|
23
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
|
16
|
+
requirement: &2161658300 !ruby/object:Gem::Requirement
|
|
24
17
|
none: false
|
|
25
|
-
requirements:
|
|
26
|
-
- -
|
|
27
|
-
- !ruby/object:Gem::Version
|
|
28
|
-
segments:
|
|
29
|
-
- 2
|
|
30
|
-
- 4
|
|
31
|
-
- 0
|
|
18
|
+
requirements:
|
|
19
|
+
- - ! '>='
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
32
21
|
version: 2.4.0
|
|
33
22
|
type: :development
|
|
34
|
-
version_requirements: *id001
|
|
35
|
-
- !ruby/object:Gem::Dependency
|
|
36
|
-
name: guard-rspec
|
|
37
23
|
prerelease: false
|
|
38
|
-
|
|
24
|
+
version_requirements: *2161658300
|
|
25
|
+
- !ruby/object:Gem::Dependency
|
|
26
|
+
name: guard-rspec
|
|
27
|
+
requirement: &2161657800 !ruby/object:Gem::Requirement
|
|
39
28
|
none: false
|
|
40
|
-
requirements:
|
|
41
|
-
- -
|
|
42
|
-
- !ruby/object:Gem::Version
|
|
43
|
-
segments:
|
|
44
|
-
- 0
|
|
45
|
-
- 1
|
|
46
|
-
- 9
|
|
29
|
+
requirements:
|
|
30
|
+
- - ! '>='
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
47
32
|
version: 0.1.9
|
|
48
33
|
type: :development
|
|
49
|
-
version_requirements: *id002
|
|
50
|
-
- !ruby/object:Gem::Dependency
|
|
51
|
-
name: growl
|
|
52
34
|
prerelease: false
|
|
53
|
-
|
|
35
|
+
version_requirements: *2161657800
|
|
36
|
+
- !ruby/object:Gem::Dependency
|
|
37
|
+
name: growl
|
|
38
|
+
requirement: &2161657340 !ruby/object:Gem::Requirement
|
|
54
39
|
none: false
|
|
55
|
-
requirements:
|
|
56
|
-
- -
|
|
57
|
-
- !ruby/object:Gem::Version
|
|
58
|
-
segments:
|
|
59
|
-
- 1
|
|
60
|
-
- 0
|
|
61
|
-
- 3
|
|
40
|
+
requirements:
|
|
41
|
+
- - ! '>='
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
62
43
|
version: 1.0.3
|
|
63
44
|
type: :development
|
|
64
|
-
version_requirements: *id003
|
|
65
|
-
- !ruby/object:Gem::Dependency
|
|
66
|
-
name: rb-fsevent
|
|
67
45
|
prerelease: false
|
|
68
|
-
|
|
46
|
+
version_requirements: *2161657340
|
|
47
|
+
- !ruby/object:Gem::Dependency
|
|
48
|
+
name: rb-fsevent
|
|
49
|
+
requirement: &2161656880 !ruby/object:Gem::Requirement
|
|
69
50
|
none: false
|
|
70
|
-
requirements:
|
|
71
|
-
- -
|
|
72
|
-
- !ruby/object:Gem::Version
|
|
73
|
-
segments:
|
|
74
|
-
- 0
|
|
75
|
-
- 3
|
|
76
|
-
- 9
|
|
51
|
+
requirements:
|
|
52
|
+
- - ! '>='
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
77
54
|
version: 0.3.9
|
|
78
55
|
type: :development
|
|
79
|
-
|
|
56
|
+
prerelease: false
|
|
57
|
+
version_requirements: *2161656880
|
|
80
58
|
description: aua = a user agent (parser).
|
|
81
|
-
email:
|
|
59
|
+
email:
|
|
82
60
|
- sebastian@yo.lk
|
|
83
61
|
executables: []
|
|
84
|
-
|
|
85
62
|
extensions: []
|
|
86
|
-
|
|
87
63
|
extra_rdoc_files: []
|
|
88
|
-
|
|
89
|
-
files:
|
|
64
|
+
files:
|
|
90
65
|
- .gitignore
|
|
91
66
|
- .rvmrc
|
|
92
67
|
- CHANGES.md
|
|
@@ -108,6 +83,7 @@ files:
|
|
|
108
83
|
- lib/aua/agents/konqueror.rb
|
|
109
84
|
- lib/aua/agents/msie.rb
|
|
110
85
|
- lib/aua/agents/opera.rb
|
|
86
|
+
- lib/aua/agents/other_browsers.rb
|
|
111
87
|
- lib/aua/agents/others.rb
|
|
112
88
|
- lib/aua/agents/safari.rb
|
|
113
89
|
- lib/aua/agents/search_bot.rb
|
|
@@ -123,38 +99,30 @@ files:
|
|
|
123
99
|
- lib/aua/version.rb
|
|
124
100
|
- spec/aua_spec.rb
|
|
125
101
|
- spec/spec_helper.rb
|
|
126
|
-
has_rdoc: true
|
|
127
102
|
homepage: https://github.com/yolk/aua
|
|
128
103
|
licenses: []
|
|
129
|
-
|
|
130
104
|
post_install_message:
|
|
131
105
|
rdoc_options: []
|
|
132
|
-
|
|
133
|
-
require_paths:
|
|
106
|
+
require_paths:
|
|
134
107
|
- lib
|
|
135
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
108
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
136
109
|
none: false
|
|
137
|
-
requirements:
|
|
138
|
-
- -
|
|
139
|
-
- !ruby/object:Gem::Version
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
version: "0"
|
|
143
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
110
|
+
requirements:
|
|
111
|
+
- - ! '>='
|
|
112
|
+
- !ruby/object:Gem::Version
|
|
113
|
+
version: '0'
|
|
114
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
144
115
|
none: false
|
|
145
|
-
requirements:
|
|
146
|
-
- -
|
|
147
|
-
- !ruby/object:Gem::Version
|
|
148
|
-
|
|
149
|
-
- 0
|
|
150
|
-
version: "0"
|
|
116
|
+
requirements:
|
|
117
|
+
- - ! '>='
|
|
118
|
+
- !ruby/object:Gem::Version
|
|
119
|
+
version: '0'
|
|
151
120
|
requirements: []
|
|
152
|
-
|
|
153
121
|
rubyforge_project: aua
|
|
154
|
-
rubygems_version: 1.
|
|
122
|
+
rubygems_version: 1.8.10
|
|
155
123
|
signing_key:
|
|
156
124
|
specification_version: 3
|
|
157
125
|
summary: aua = a user agent (parser).
|
|
158
|
-
test_files:
|
|
126
|
+
test_files:
|
|
159
127
|
- spec/aua_spec.rb
|
|
160
128
|
- spec/spec_helper.rb
|