valda-video_scraper 1.0.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/ChangeLog +4 -0
- data/README +69 -0
- data/Rakefile +144 -0
- data/lib/www/video_scraper/age_sage.rb +34 -0
- data/lib/www/video_scraper/ameba_vision.rb +28 -0
- data/lib/www/video_scraper/base.rb +60 -0
- data/lib/www/video_scraper/dailymotion.rb +36 -0
- data/lib/www/video_scraper/moro_tube.rb +37 -0
- data/lib/www/video_scraper/nico_video.rb +73 -0
- data/lib/www/video_scraper/pornhub.rb +29 -0
- data/lib/www/video_scraper/pornotube.rb +42 -0
- data/lib/www/video_scraper/red_tube.rb +62 -0
- data/lib/www/video_scraper/veoh.rb +30 -0
- data/lib/www/video_scraper/you_porn.rb +32 -0
- data/lib/www/video_scraper/you_tube.rb +55 -0
- data/lib/www/video_scraper/your_file_host.rb +60 -0
- data/lib/www/video_scraper.rb +85 -0
- data/test/test_helper.rb +8 -0
- data/test/www/test_video_scraper.rb +20 -0
- data/test/www/video_scraper/test_age_sage.rb +24 -0
- data/test/www/video_scraper/test_ameba_vision.rb +23 -0
- data/test/www/video_scraper/test_dailymotion.rb +25 -0
- data/test/www/video_scraper/test_moro_tube.rb +24 -0
- data/test/www/video_scraper/test_nico_video.rb +30 -0
- data/test/www/video_scraper/test_pornhub.rb +24 -0
- data/test/www/video_scraper/test_pornotube.rb +32 -0
- data/test/www/video_scraper/test_red_tube.rb +24 -0
- data/test/www/video_scraper/test_veoh.rb +24 -0
- data/test/www/video_scraper/test_you_porn.rb +24 -0
- data/test/www/video_scraper/test_you_tube.rb +40 -0
- data/test/www/video_scraper/test_your_file_host.rb +24 -0
- metadata +107 -0
metadata
ADDED
@@ -0,0 +1,107 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: valda-video_scraper
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- YAMAGUCHI Seiji
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-01-17 00:00:00 -08:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: mechanize
|
17
|
+
version_requirement:
|
18
|
+
version_requirements: !ruby/object:Gem::Requirement
|
19
|
+
requirements:
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 0.8.4
|
23
|
+
version:
|
24
|
+
description: Web scraping library for video sharing sites.
|
25
|
+
email: valda@underscore.jp
|
26
|
+
executables: []
|
27
|
+
|
28
|
+
extensions: []
|
29
|
+
|
30
|
+
extra_rdoc_files:
|
31
|
+
- README
|
32
|
+
- ChangeLog
|
33
|
+
files:
|
34
|
+
- README
|
35
|
+
- ChangeLog
|
36
|
+
- Rakefile
|
37
|
+
- test/test_helper.rb
|
38
|
+
- test/www
|
39
|
+
- test/www/video_scraper
|
40
|
+
- test/www/video_scraper/test_ameba_vision.rb
|
41
|
+
- test/www/video_scraper/test_dailymotion.rb
|
42
|
+
- test/www/video_scraper/test_age_sage.rb
|
43
|
+
- test/www/video_scraper/test_pornotube.rb
|
44
|
+
- test/www/video_scraper/test_your_file_host.rb
|
45
|
+
- test/www/video_scraper/test_moro_tube.rb
|
46
|
+
- test/www/video_scraper/test_veoh.rb
|
47
|
+
- test/www/video_scraper/test_pornhub.rb
|
48
|
+
- test/www/video_scraper/test_nico_video.rb
|
49
|
+
- test/www/video_scraper/test_you_porn.rb
|
50
|
+
- test/www/video_scraper/test_you_tube.rb
|
51
|
+
- test/www/video_scraper/test_red_tube.rb
|
52
|
+
- test/www/test_video_scraper.rb
|
53
|
+
- lib/www
|
54
|
+
- lib/www/video_scraper
|
55
|
+
- lib/www/video_scraper/nico_video.rb
|
56
|
+
- lib/www/video_scraper/you_porn.rb
|
57
|
+
- lib/www/video_scraper/ameba_vision.rb
|
58
|
+
- lib/www/video_scraper/age_sage.rb
|
59
|
+
- lib/www/video_scraper/pornotube.rb
|
60
|
+
- lib/www/video_scraper/you_tube.rb
|
61
|
+
- lib/www/video_scraper/moro_tube.rb
|
62
|
+
- lib/www/video_scraper/pornhub.rb
|
63
|
+
- lib/www/video_scraper/dailymotion.rb
|
64
|
+
- lib/www/video_scraper/veoh.rb
|
65
|
+
- lib/www/video_scraper/red_tube.rb
|
66
|
+
- lib/www/video_scraper/base.rb
|
67
|
+
- lib/www/video_scraper/your_file_host.rb
|
68
|
+
- lib/www/video_scraper.rb
|
69
|
+
has_rdoc: true
|
70
|
+
homepage: http://github.com/valda/video_scraper
|
71
|
+
post_install_message:
|
72
|
+
rdoc_options:
|
73
|
+
- --title
|
74
|
+
- video_scraper documentation
|
75
|
+
- --charset
|
76
|
+
- utf-8
|
77
|
+
- --opname
|
78
|
+
- index.html
|
79
|
+
- --line-numbers
|
80
|
+
- --main
|
81
|
+
- README
|
82
|
+
- --inline-source
|
83
|
+
- --exclude
|
84
|
+
- ^(examples|extras)/
|
85
|
+
require_paths:
|
86
|
+
- lib
|
87
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
88
|
+
requirements:
|
89
|
+
- - ">="
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: "0"
|
92
|
+
version:
|
93
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - ">="
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: "0"
|
98
|
+
version:
|
99
|
+
requirements: []
|
100
|
+
|
101
|
+
rubyforge_project: video_scraper
|
102
|
+
rubygems_version: 1.2.0
|
103
|
+
signing_key:
|
104
|
+
specification_version: 2
|
105
|
+
summary: Web scraping library for video sharing sites.
|
106
|
+
test_files: []
|
107
|
+
|