podcast_agent_parser 0.1.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.
- checksums.yaml +7 -0
- data/LICENSE +20 -0
- data/README.md +24 -0
- data/lib/podcast_agent_parser.rb +17 -0
- data/lib/podcast_agent_parser/agent.rb +14 -0
- data/lib/podcast_agent_parser/parser.rb +27 -0
- data/vendor/opawg/user-agents.json +1476 -0
- metadata +50 -0
metadata
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: podcast_agent_parser
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Dan Benjamin
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-11-08 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: User agent parser written in Ruby using regex patterns from the Open
|
14
|
+
Podcast Analytics Working Group.
|
15
|
+
email: dan@hivelogic.com
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- LICENSE
|
21
|
+
- README.md
|
22
|
+
- lib/podcast_agent_parser.rb
|
23
|
+
- lib/podcast_agent_parser/agent.rb
|
24
|
+
- lib/podcast_agent_parser/parser.rb
|
25
|
+
- vendor/opawg/user-agents.json
|
26
|
+
homepage: https://github.com/dan/podcast_agent_parser
|
27
|
+
licenses:
|
28
|
+
- MIT
|
29
|
+
metadata: {}
|
30
|
+
post_install_message:
|
31
|
+
rdoc_options: []
|
32
|
+
require_paths:
|
33
|
+
- lib
|
34
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
35
|
+
requirements:
|
36
|
+
- - ">="
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: '0'
|
39
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
44
|
+
requirements: []
|
45
|
+
rubyforge_project:
|
46
|
+
rubygems_version: 2.7.6.2
|
47
|
+
signing_key:
|
48
|
+
specification_version: 4
|
49
|
+
summary: User agent parser using the OPAWG regexes
|
50
|
+
test_files: []
|