nicoquery-parser 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 72292373f2a781f883c8dbb800369a5f0e6f7989
4
+ data.tar.gz: 7fe2822facb3689bfcc75576f097b97057e4aa76
5
+ SHA512:
6
+ metadata.gz: 62436e7d90f427b4ecf3d1028025989714c26f48c2f0d961255a02983216c5dd4930299c56d09f24ef4b003b1ca613a356d15b2a0e0f0e8773ca8fd0c847afe4
7
+ data.tar.gz: 350210a6a81699edadedcf8122c314d81ba4336f0bd822746416d737390b946394d1e7a37dc04200546c7fd4fb0646daf2ec9c864a29bcc4b93b36e87b859466
data/.gitignore ADDED
@@ -0,0 +1,18 @@
1
+ *.gem
2
+ *.rbc
3
+ .ruby-version
4
+ .bundle
5
+ .config
6
+ .yardoc
7
+ Gemfile.lock
8
+ InstalledFiles
9
+ _yardoc
10
+ coverage
11
+ doc/
12
+ lib/bundler/man
13
+ pkg
14
+ rdoc
15
+ spec/reports
16
+ test/tmp
17
+ test/version_tmp
18
+ tmp
data/.travis.yml ADDED
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0.0
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in nicoapi-parser.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Masami Yonehara
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ [![Build Status](https://secure.travis-ci.org/hdemon/nicoapi-parser.png)](http://travis-ci.org/hdemon/nicoapi-parser)
2
+
3
+ # Nicoapi::Parser
4
+
5
+ TODO: Write a gem description
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ gem 'nicoapi-parser'
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install nicoapi-parser
20
+
21
+ ## Usage
22
+
23
+ TODO: Write usage instructions here
24
+
25
+ ## Contributing
26
+
27
+ 1. Fork it
28
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
29
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
30
+ 4. Push to the branch (`git push origin my-new-feature`)
31
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,13 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ task :default => [:spec]
4
+ begin
5
+ require 'rspec/core/rake_task'
6
+ RSpec::Core::RakeTask.new(:spec) do |spec|
7
+ spec.pattern = 'spec/**/*_spec.rb'
8
+ spec.rspec_opts = ['-cfs']
9
+ end
10
+ rescue LoadError => e
11
+ end
12
+
13
+
@@ -0,0 +1,106 @@
1
+ require "nori"
2
+ require "nokogiri"
3
+
4
+
5
+ module NicoQuery
6
+ module Parser
7
+ class TagSearch
8
+ def initialize
9
+ @parser = Nori.new
10
+ end
11
+
12
+ def parse(xml)
13
+ @object = (@parser.parse xml)["rss"]["channel"]
14
+
15
+ @items = @object["item"].map do |item_object|
16
+ Item.new item_object
17
+ end
18
+ end
19
+
20
+ def items
21
+ @items
22
+ end
23
+
24
+ def tag
25
+ @object["title"].scan(/(?<=タグ\s).+(?=\‐ニコニコ動画)/)[0].split(' ')
26
+ end
27
+
28
+ def publish_date
29
+ Time.parse @object["pubDate"]
30
+ end
31
+
32
+ def last_build_date
33
+ Time.parse @object["lastBuildDate"]
34
+ end
35
+
36
+ class Item
37
+ def initialize(object)
38
+ @object = object
39
+ end
40
+
41
+ def title
42
+ @object["title"]
43
+ end
44
+
45
+ def video_id
46
+ url.scan(/(sm|nm)\d{1,}\Z/)
47
+ $&
48
+ end
49
+
50
+ def url
51
+ @object["link"]
52
+ end
53
+
54
+ def publish_date
55
+ Time.parse @object["pubDate"]
56
+ end
57
+
58
+ def thumbnail_url
59
+ description.raw_text.scan(/(?<=src\=\").{1,}(?=\"\swidth)/)
60
+ $&
61
+ end
62
+
63
+ def description
64
+ @_description ||= Description.new @object["description"]
65
+ end
66
+
67
+ def length
68
+ description.raw_text.scan(/(?<=class\=\"nico\-info\-length\"\>)\d{1,}\:\d{1,2}(?=\<\/strong\>)/)
69
+ length_string = $&.to_s.split(':')
70
+ length_string[0].to_i * 60 + length_string[1].to_i
71
+ end
72
+
73
+ class Description
74
+ attr_reader :raw_text
75
+
76
+ def initialize(raw_text)
77
+ @raw_text = raw_text.to_s
78
+ end
79
+
80
+ def text
81
+ @raw_text.scan /(?<=class\=\"nico\-description\"\>).{1,}(?=\<\/p\>)/
82
+ $&
83
+ end
84
+
85
+ def movie_references
86
+ # is this the high road?
87
+ text.scan(/((sm|nm)\d{1,})/).map {|e| e[0]}
88
+ end
89
+
90
+ def mylist_references
91
+ text.scan /(?<=mylist\/)\d{1,}/
92
+ end
93
+
94
+ def community_references
95
+ text.scan /co\d{1,}/
96
+ end
97
+
98
+ def seiga_references
99
+ text.scan /im\d{1,}/
100
+ end
101
+ end
102
+ end
103
+
104
+ end
105
+ end
106
+ end
@@ -0,0 +1,5 @@
1
+ module NicoQuery
2
+ module Parser
3
+ VERSION = "0.0.5"
4
+ end
5
+ end
@@ -0,0 +1,9 @@
1
+ require "nicoapi/parser/version"
2
+ require "nicoapi/parser/tag_search"
3
+
4
+
5
+ module NicoQuery
6
+ module Parser
7
+
8
+ end
9
+ end
@@ -0,0 +1,29 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'nicoquery/parser/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "nicoquery-parser"
8
+ spec.version = NicoQuery::Parser::VERSION
9
+ spec.authors = ["Masami Yonehara"]
10
+ spec.email = ["zeitdiebe@gmail.com"]
11
+ spec.description = %q{object parser for niconico douga API}
12
+ spec.summary = %q{object parser for niconico douga API}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_runtime_dependency "activesupport", "~> 4.0.0"
22
+ spec.add_runtime_dependency "nokogiri"
23
+ spec.add_runtime_dependency "nori"
24
+
25
+ spec.add_development_dependency "bundler", "~> 1.3"
26
+ spec.add_development_dependency "rake"
27
+ spec.add_development_dependency "rspec"
28
+ spec.add_development_dependency "pry"
29
+ end
data/spec/fixture.rb ADDED
@@ -0,0 +1,380 @@
1
+ module Fixture
2
+ def self.tag_search_rss
3
+ """
4
+ <?xml version=\"1.0\" encoding=\"utf-8\"?>
5
+ <rss version=\"2.0\"
6
+ xmlns:atom=\"http://www.w3.org/2005/Atom\">
7
+
8
+ <channel>
9
+ <title>タグ ゆっくり実況プレイ‐ニコニコ動画</title>
10
+ <link>http://www.nicovideo.jp/tag/%E3%82%86%E3%81%A3%E3%81%8F%E3%82%8A%E5%AE%9F%E6%B3%81%E3%83%97%E3%83%AC%E3%82%A4</link>
11
+ <atom:link rel=\"self\" type=\"application/rss+xml\" href=\"http://www.nicovideo.jp/tag/%E3%82%86%E3%81%A3%E3%81%8F%E3%82%8A%E5%AE%9F%E6%B3%81%E3%83%97%E3%83%AC%E3%82%A4?&amp;&amp;rss=2.0\"/>
12
+ <description>タグ「ゆっくり実況プレイ」が付けられた動画 (全 147,208 件)</description>
13
+ <pubDate>Mon, 29 Jul 2013 16:58:32 +0900</pubDate>
14
+ <lastBuildDate>Mon, 29 Jul 2013 16:58:32 +0900</lastBuildDate>
15
+ <generator>ニコニコ動画</generator>
16
+ <language>ja-jp</language>
17
+ <copyright>(c) niwango, inc. All rights reserved.</copyright>
18
+ <docs>http://blogs.law.harvard.edu/tech/rss</docs>
19
+
20
+ <item>
21
+ <title>[ゆっくり実況]どうぶつ達の森[最終日]</title>
22
+ <link>http://www.nicovideo.jp/watch/sm21441922</link>
23
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-26:/watch/sm21441922</guid>
24
+ <pubDate>Fri, 26 Jul 2013 10:32:46 +0900</pubDate>
25
+ <description><![CDATA[
26
+ <p class=\"nico-thumbnail\"><img alt=\"[ゆっくり実況]どうぶつ達の森[最終日]\" src=\"http://tn-skr3.smilevideo.jp/smile?i=21441922\" width=\"94\" height=\"70\" border=\"0\"/></p>
27
+ <p class=\"nico-description\">おもらし製作中のゲーム進行率:6%追記:最後の最後でスタッフロール間違えるとか死ねばいいよほんとこのうpぬし八日目→sm21386536  どうぶつ→mylist/37262141いままでの→mylist/31786817</p>
28
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">18:08</strong>|<strong class=\"nico-info-date\">2013年07月26日 10:32:46</strong> 投稿</small></p>
29
+ ]]></description>
30
+ </item>
31
+ <item>
32
+ <title>【ゆっくり】マリオカート7 part36 【実況】</title>
33
+ <link>http://www.nicovideo.jp/watch/sm21466169</link>
34
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-29:/watch/sm21466169</guid>
35
+ <pubDate>Mon, 29 Jul 2013 13:35:05 +0900</pubDate>
36
+ <description><![CDATA[
37
+ <p class=\"nico-thumbnail\"><img alt=\"【ゆっくり】マリオカート7 part36 【実況】\" src=\"http://tn-skr2.smilevideo.jp/smile?i=21466169\" width=\"94\" height=\"70\" border=\"0\"/></p>
38
+ <p class=\"nico-description\">夏休み羨ましす。http://yaplog.jp/wizkunkei/ ブログhttps://twitter.com/wizkun777 twitter前→sm21239845 次→しばらくお待ちください。 mylist/31141047※この動画は3DS偽トロ使用になっています。</p>
39
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">12:18</strong>|<strong class=\"nico-info-date\">2013年07月29日 13:35:05</strong> 投稿</small></p>
40
+ ]]></description>
41
+ </item>
42
+ <item>
43
+ <title>『バイオハザード4』ゆっくり達の救出大作戦4話『ゆっくり実況プレイ』</title>
44
+ <link>http://www.nicovideo.jp/watch/sm21452869</link>
45
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-27:/watch/sm21452869</guid>
46
+ <pubDate>Sat, 27 Jul 2013 20:30:40 +0900</pubDate>
47
+ <description><![CDATA[
48
+ <p class=\"nico-thumbnail\"><img alt=\"『バイオハザード4』ゆっくり達の救出大作戦4話『ゆっくり実況プレイ』\" src=\"http://tn-skr2.smilevideo.jp/smile?i=21452869\" width=\"94\" height=\"70\" border=\"0\"/></p>
49
+ <p class=\"nico-description\">※このゲームにはホラー成分を和らげるために多くのカオス成分が含まれています。無意味な編集等、モリモリなので苦手な方はブラウザバックしてちょ。「パート1 sm21178549」動画専用コミュ『co2021355』登録してね!スカイプID「babaroa193」別作品「L4D2ゆっくり実況」もよろしくね「sm21069145」タグは皆さんにお任せします</p>
50
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">15:08</strong>|<strong class=\"nico-info-date\">2013年07月27日 20:30:40</strong> 投稿</small></p>
51
+ ]]></description>
52
+ </item>
53
+ <item>
54
+ <title>【Minecraft】 ゆっくり仙人sで二人言プレイ part32 【ゆっくり実況】</title>
55
+ <link>http://www.nicovideo.jp/watch/sm21460522</link>
56
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-28:/watch/sm21460522</guid>
57
+ <pubDate>Sun, 28 Jul 2013 19:14:38 +0900</pubDate>
58
+ <description><![CDATA[
59
+ <p class=\"nico-thumbnail\"><img alt=\"【Minecraft】 ゆっくり仙人sで二人言プレイ part32 【ゆっくり実況】\" src=\"http://tn-skr3.smilevideo.jp/smile?i=21460522\" width=\"94\" height=\"70\" border=\"0\"/></p>
60
+ <p class=\"nico-description\">今回は馬探しです。当初は馬小屋作りまでやろうと思っていたのですが……。 茨歌仙3巻、発売して間もないですがネタバレを含んでいるので注意です。ネタにするのは次のパートまで待とうかとも思いましたが、突っ込みどころが多くて我慢できませんでした。 最近話題の無断転載については、私は別にどうでもいいのでスルーさせて下さい……。ニコニコモンズの素材(ゆっくりキャラ素材)がニコニコ外の転載禁止だったら話は早かったのですが、利用許可範囲がインターネット全般だったので。もちろん転載を推奨するわけではないですが、対応がメンドイので……。 【sm21353692:前回┃mylist/33965897┃次回:8/11予定】 おまけイラスト全体:im3300193 </p>
61
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">15:52</strong>|<strong class=\"nico-info-date\">2013年07月28日 19:14:38</strong> 投稿</small></p>
62
+ ]]></description>
63
+ </item>
64
+ <item>
65
+ <title>【ゼルダの伝説SWS】辛口モードを更に辛くする1【ゆっくり実況】</title>
66
+ <link>http://www.nicovideo.jp/watch/sm21458063</link>
67
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-28:/watch/sm21458063</guid>
68
+ <pubDate>Sun, 28 Jul 2013 13:23:16 +0900</pubDate>
69
+ <description><![CDATA[
70
+ <p class=\"nico-thumbnail\"><img alt=\"【ゼルダの伝説SWS】辛口モードを更に辛くする1【ゆっくり実況】\" src=\"http://tn-skr4.smilevideo.jp/smile?i=21458063\" width=\"94\" height=\"70\" border=\"0\"/></p>
71
+ <p class=\"nico-description\">ゼルダの伝説スカイウォードソードを8個縛ってプレイ『縛り内容』・辛口モードでプレイ・ノーダメージ・盾禁止・アイテム改造強化禁止・薬による強化禁止・セーブは石像一つにつき一回まで(空島を除く)・通常戦闘でのスカイウォード禁止(ボス戦は許可)・バグ技での移動・攻略禁止激辛モードマイリスト:mylist/38139680ゆっくり実況part1まとめ:mylist/38139710次:未定生放送等のコミュニティ :co1066928動画の状況等のTwitterID:ryurou777</p>
72
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">23:33</strong>|<strong class=\"nico-info-date\">2013年07月28日 13:23:16</strong> 投稿</small></p>
73
+ ]]></description>
74
+ </item>
75
+ <item>
76
+ <title>八人の救世主達 愛を取り戻すためのクトゥルフ 第13話 流星抜刀会</title>
77
+ <link>http://www.nicovideo.jp/watch/sm21451073</link>
78
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-27:/watch/sm21451073</guid>
79
+ <pubDate>Sat, 27 Jul 2013 16:04:28 +0900</pubDate>
80
+ <description><![CDATA[
81
+ <p class=\"nico-thumbnail\"><img alt=\"八人の救世主達 愛を取り戻すためのクトゥルフ 第13話 流星抜刀会\" src=\"http://tn-skr2.smilevideo.jp/smile?i=21451073\" width=\"94\" height=\"70\" border=\"0\"/></p>
82
+ <p class=\"nico-description\">どうも!初めましての方は初めまして、クトゥルフ5D&#039;sやこいつはヘビィなリプレイを見ていた方はパージ!明るいマリク改めパージの人です(´∀`*)これがやりたくて無駄に長い茶番をしました。前回→sm21335594次回→V兄様がまた働いたらクトゥルフ5D&#039;s第1話→sm18590918こいつははビィなクトゥルフ第1話→sm19840924マイリスト→mylist/36023371ハウスルールなど→ar118428【うっかり卓クトゥルフOO】→sm20078945パージの人twitterのアカ→/pajinohito不満足病人さん→im3258466、ななすさん→im3266275、im3267172しいなさん→im3281866</p>
83
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">18:00</strong>|<strong class=\"nico-info-date\">2013年07月27日 16:04:28</strong> 投稿</small></p>
84
+ ]]></description>
85
+ </item>
86
+ <item>
87
+ <title>【ゆっくり】FF8ノーダメプレイ その21</title>
88
+ <link>http://www.nicovideo.jp/watch/sm21441408</link>
89
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-26:/watch/sm21441408</guid>
90
+ <pubDate>Fri, 26 Jul 2013 06:59:18 +0900</pubDate>
91
+ <description><![CDATA[
92
+ <p class=\"nico-thumbnail\"><img alt=\"【ゆっくり】FF8ノーダメプレイ その21\" src=\"http://tn-skr1.smilevideo.jp/smile?i=21441408\" width=\"94\" height=\"70\" border=\"0\"/></p>
93
+ <p class=\"nico-description\">今年度初投稿です。前→sm20442062 次→8月リスト→mylist/29960687制限内容→ttp://twitpic.com/9c1kfc/fullグレンデルを狩ると竜の皮、竜のウロコ、ティアマトのカードをとれるから得なんです。</p>
94
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">20:04</strong>|<strong class=\"nico-info-date\">2013年07月26日 06:59:18</strong> 投稿</small></p>
95
+ ]]></description>
96
+ </item>
97
+ <item>
98
+ <title>妹紅と慧音の「マッドファーザー」第14夜</title>
99
+ <link>http://www.nicovideo.jp/watch/sm21466423</link>
100
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-29:/watch/sm21466423</guid>
101
+ <pubDate>Mon, 29 Jul 2013 14:38:28 +0900</pubDate>
102
+ <description><![CDATA[
103
+ <p class=\"nico-thumbnail\"><img alt=\"妹紅と慧音の「マッドファーザー」第14夜\" src=\"http://tn-skr4.smilevideo.jp/smile?i=21466423\" width=\"94\" height=\"70\" border=\"0\"/></p>
104
+ <p class=\"nico-description\">主「前回に続きイベント回です。雰囲気優先のため二人の音声はだいぶカットされてます。」も「しゃべりすぎるとシリアスがシリアルになるしな」主「その分次回で騒いでください」前[sm21437185]  次[未定]  part.1[sm20765347]  マイリス[mylist/36953398]前作part.1リンク[mylist/20770889]使用アイコン:きんぎん様HP→ http://kinginsan.blog60.fc2.com/マッドファーザーHP http://novice2.web.fc2.com/game/mad/index.html</p>
105
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">11:03</strong>|<strong class=\"nico-info-date\">2013年07月29日 14:38:28</strong> 投稿</small></p>
106
+ ]]></description>
107
+ </item>
108
+ <item>
109
+ <title>【COD:BO2】戦場で空気になる動画 Part7</title>
110
+ <link>http://www.nicovideo.jp/watch/sm21452374</link>
111
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-27:/watch/sm21452374</guid>
112
+ <pubDate>Sat, 27 Jul 2013 19:25:33 +0900</pubDate>
113
+ <description><![CDATA[
114
+ <p class=\"nico-thumbnail\"><img alt=\"【COD:BO2】戦場で空気になる動画 Part7\" src=\"http://tn-skr3.smilevideo.jp/smile?i=21452374\" width=\"94\" height=\"70\" border=\"0\"/></p>
115
+ <p class=\"nico-description\">無駄な殺生をせず戦場で生き延びます。・すべて生放送で撮影しており、おまけ以外はフレンドとプレイしていません。・おまけの隠れ場所は私が考えました。戦場で空気になる動画BGM集 : mylist/37475771コブのコミュ : co519582Twitter : @KOBUKURO__LOVE戦場で空気になる動画 mylist/35284652うp動画リンク:mylist/35527016前:sm21077273 次:</p>
116
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">10:28</strong>|<strong class=\"nico-info-date\">2013年07月27日 19:25:33</strong> 投稿</small></p>
117
+ ]]></description>
118
+ </item>
119
+ <item>
120
+ <title>【ゆっくり実況】ゆっくりが日本球界に殴り込みPart07【プロスピ2013】</title>
121
+ <link>http://www.nicovideo.jp/watch/sm21459729</link>
122
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-28:/watch/sm21459729</guid>
123
+ <pubDate>Sun, 28 Jul 2013 17:22:00 +0900</pubDate>
124
+ <description><![CDATA[
125
+ <p class=\"nico-thumbnail\"><img alt=\"【ゆっくり実況】ゆっくりが日本球界に殴り込みPart07【プロスピ2013】\" src=\"http://tn-skr2.smilevideo.jp/smile?i=21459729\" width=\"94\" height=\"70\" border=\"0\"/></p>
126
+ <p class=\"nico-description\">リアル日程に追いつかない・・・。前:sm21299568 次:0%■■□□□□□□□□100%(編集中)コミュニティに入っていただけると、やる気が出ます↓ぜらにうむ祐希コミュニティ:co1982186最新動画マイリスト:mylist/36433226ゆっくりが日本球界に殴り込み:mylist/36576927ゆっくり実況魔理沙のドラゴンズドグマ:ダークアリズン:mylist/36897234ゆっくり魔理沙監督のグランプリマイリスト:mylist/36767598霊夢のDead Island: Riptideマイリスト:mylist/37920270</p>
127
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">8:18</strong>|<strong class=\"nico-info-date\">2013年07月28日 17:22:00</strong> 投稿</small></p>
128
+ ]]></description>
129
+ </item>
130
+ <item>
131
+ <title>【ゆっくり実況】最短無犠牲でいくピクミン3 1日目</title>
132
+ <link>http://www.nicovideo.jp/watch/sm21443271</link>
133
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-26:/watch/sm21443271</guid>
134
+ <pubDate>Fri, 26 Jul 2013 16:39:35 +0900</pubDate>
135
+ <description><![CDATA[
136
+ <p class=\"nico-thumbnail\"><img alt=\"【ゆっくり実況】最短無犠牲でいくピクミン3 1日目\" src=\"http://tn-skr4.smilevideo.jp/smile?i=21443271\" width=\"94\" height=\"70\" border=\"0\"/></p>
137
+ <p class=\"nico-description\">理論上最短の7日じゃなくて8日なのでご了承7日とか出来る気がしない…orz※ フルーツ全回収じゃないので悪しからず次→sm21452133シリーズマイリス→mylist/38120347</p>
138
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">9:19</strong>|<strong class=\"nico-info-date\">2013年07月26日 16:39:35</strong> 投稿</small></p>
139
+ ]]></description>
140
+ </item>
141
+ <item>
142
+ <title>他人が作ったツクールをゆっくり実況してみたPart163</title>
143
+ <link>http://www.nicovideo.jp/watch/sm21461514</link>
144
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-28:/watch/sm21461514</guid>
145
+ <pubDate>Sun, 28 Jul 2013 21:05:49 +0900</pubDate>
146
+ <description><![CDATA[
147
+ <p class=\"nico-thumbnail\"><img alt=\"他人が作ったツクールをゆっくり実況してみたPart163\" src=\"http://tn-skr3.smilevideo.jp/smile?i=21461514\" width=\"94\" height=\"70\" border=\"0\"/></p>
148
+ <p class=\"nico-description\">ほらほら~、続くぞ続くゾ~~~?これはマジでレンサーハントばりの大当たりの匂いだ…いつも嗅いでいる死臭とは違う…脂っこくてパサパサしてカブトムシみたいな匂いだ…マイリスト → mylist/20438016他のRPGツクール動画 → mylist/21745487前回 sm21430922 ← 今回 → 次回</p>
149
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">15:16</strong>|<strong class=\"nico-info-date\">2013年07月28日 21:05:49</strong> 投稿</small></p>
150
+ ]]></description>
151
+ </item>
152
+ <item>
153
+ <title>【ゆっくり実況】Xバスター禁止!果たしてクリアできるか? Part1</title>
154
+ <link>http://www.nicovideo.jp/watch/sm21445804</link>
155
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-26:/watch/sm21445804</guid>
156
+ <pubDate>Fri, 26 Jul 2013 22:04:51 +0900</pubDate>
157
+ <description><![CDATA[
158
+ <p class=\"nico-thumbnail\"><img alt=\"【ゆっくり実況】Xバスター禁止!果たしてクリアできるか? Part1\" src=\"http://tn-skr1.smilevideo.jp/smile?i=21445804\" width=\"94\" height=\"70\" border=\"0\"/></p>
159
+ <p class=\"nico-description\">初めてのゆっくり実況です!お手柔らかにお願いします!!いやー、しかしゆっくり実況ってかなり大変だねwやってみて良くわかったよ!次<一週間以上は掛かる! マイリスト<mylist/38123228 今までの実況マイリスmylist/36400745一言「この縛り面白いんでぜひみなさんもやってみてくださいw」</p>
160
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">19:08</strong>|<strong class=\"nico-info-date\">2013年07月26日 22:04:51</strong> 投稿</small></p>
161
+ ]]></description>
162
+ </item>
163
+ <item>
164
+ <title>【ゆっくり】サルモールの下っ端はドラゴンボーンの夢を見るか? Part.8</title>
165
+ <link>http://www.nicovideo.jp/watch/sm21457047</link>
166
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-28:/watch/sm21457047</guid>
167
+ <pubDate>Sun, 28 Jul 2013 09:38:49 +0900</pubDate>
168
+ <description><![CDATA[
169
+ <p class=\"nico-thumbnail\"><img alt=\"【ゆっくり】サルモールの下っ端はドラゴンボーンの夢を見るか? Part.8\" src=\"http://tn-skr4.smilevideo.jp/smile?i=21457047\" width=\"94\" height=\"70\" border=\"0\"/></p>
170
+ <p class=\"nico-description\">サルモールのしたっぱによるソルスセイム島任務遂行の道、というお題目にようやく一歩踏み出したドヴァキンの異邦探訪記。The Elder Scrolls V: SkyrimのDLC第三弾、Dragonbornのゆっくり実況動画です。PC英語版+日本語音声・日本語字幕、複数のMODを使用しています。レイヴン・ロックで買い物したり料理したりたまに周りを歩いたり、全体の2/3ぐらいが会話とMOD紹介で進行する、要するに茶番回。今回、NPCについての捏造が特に多いので予めご了承ください。(追記)オオウ病気の説明文消しちゃってる……すみません、「垂下」ですsm21403435 ← 前回 / 次回 → 未定マイリスト:mylist/37312080 コメ返しなど:ch.nicovideo.jp/TES_evening</p>
171
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">21:57</strong>|<strong class=\"nico-info-date\">2013年07月28日 09:38:49</strong> 投稿</small></p>
172
+ ]]></description>
173
+ </item>
174
+ <item>
175
+ <title>【ゆっくり実況】悪夢(Pesadelo) Part 2</title>
176
+ <link>http://www.nicovideo.jp/watch/sm21464884</link>
177
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-29:/watch/sm21464884</guid>
178
+ <pubDate>Mon, 29 Jul 2013 05:08:13 +0900</pubDate>
179
+ <description><![CDATA[
180
+ <p class=\"nico-thumbnail\"><img alt=\"【ゆっくり実況】悪夢(Pesadelo) Part 2\" src=\"http://tn-skr1.smilevideo.jp/smile?i=21464884\" width=\"94\" height=\"70\" border=\"0\"/></p>
181
+ <p class=\"nico-description\">「Pesadelo」というブラジルのフリーゲームをやっていきます。 プロフ画像の女の子はラティ子ちゃんといいます。(今思いついた) ※今回から動画の解像度を640×360にしてます。ほとんどの人に影響は無いと思いますが、もしあった場合は本当に申し訳ありません。 【追記】うおおおおお宣伝ありがとうございます!前:sm21412663|【Pesadeloマイリス】mylist/38070574|次:まだ 【他のゆっくり実況】mylist/37412780 【Twitter】http://twitter.com/_Lattice</p>
182
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">17:51</strong>|<strong class=\"nico-info-date\">2013年07月29日 05:08:13</strong> 投稿</small></p>
183
+ ]]></description>
184
+ </item>
185
+ <item>
186
+ <title>【デジタルデビル物語】ゆっくり救世主伝説 part03【女神転生Ⅱ】</title>
187
+ <link>http://www.nicovideo.jp/watch/sm21459395</link>
188
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-28:/watch/sm21459395</guid>
189
+ <pubDate>Sun, 28 Jul 2013 16:29:51 +0900</pubDate>
190
+ <description><![CDATA[
191
+ <p class=\"nico-thumbnail\"><img alt=\"【デジタルデビル物語】ゆっくり救世主伝説 part03【女神転生Ⅱ】\" src=\"http://tn-skr4.smilevideo.jp/smile?i=21459395\" width=\"94\" height=\"70\" border=\"0\"/></p>
192
+ <p class=\"nico-description\">またお前らか…!part02 sm21410189part04 多分3日まとめ mylist/37883726ブログ http://daitenjin.blog87.fc2.com/御意見御感想 extrabaka_gameplayer@yahoo.co.jpツイッター https://twitter.com/daitenjin</p>
193
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">20:16</strong>|<strong class=\"nico-info-date\">2013年07月28日 16:29:51</strong> 投稿</small></p>
194
+ ]]></description>
195
+ </item>
196
+ <item>
197
+ <title>【艦これ】電ちゃんと行く!艦隊これくしょん Part.7【ゆっくり実況】</title>
198
+ <link>http://www.nicovideo.jp/watch/sm21462342</link>
199
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-28:/watch/sm21462342</guid>
200
+ <pubDate>Sun, 28 Jul 2013 22:26:32 +0900</pubDate>
201
+ <description><![CDATA[
202
+ <p class=\"nico-thumbnail\"><img alt=\"【艦これ】電ちゃんと行く!艦隊これくしょん Part.7【ゆっくり実況】\" src=\"http://tn-skr3.smilevideo.jp/smile?i=21462342\" width=\"94\" height=\"70\" border=\"0\"/></p>
203
+ <p class=\"nico-description\">Q.龍驤さんはロリに入りますか?A.駆逐艦じゃないんで……。←Part.6:sm21434427→Part.8:未制作→マイリスト:mylist/37802364Twitter:https://twitter.com/yuzu_gratin</p>
204
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">10:13</strong>|<strong class=\"nico-info-date\">2013年07月28日 22:26:32</strong> 投稿</small></p>
205
+ ]]></description>
206
+ </item>
207
+ <item>
208
+ <title>健全なクトゥルフ神話TRPG【竜胆】 第11話</title>
209
+ <link>http://www.nicovideo.jp/watch/sm21461535</link>
210
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-28:/watch/sm21461535</guid>
211
+ <pubDate>Sun, 28 Jul 2013 21:04:03 +0900</pubDate>
212
+ <description><![CDATA[
213
+ <p class=\"nico-thumbnail\"><img alt=\"健全なクトゥルフ神話TRPG【竜胆】 第11話\" src=\"http://tn-skr4.smilevideo.jp/smile?i=21461535\" width=\"94\" height=\"70\" border=\"0\"/></p>
214
+ <p class=\"nico-description\">実は女の子とか描くの苦手です。いや、好きだけど夏コミ原稿落としちゃった…まぁ、コピ本とか用意します。カラーの落としちゃったショックが少なからずあったのか、チルノの字体とかほぼ編集してないですねorzsm21315853<前回 次回>ちょっとのんびりmylist/36629425</p>
215
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">33:04</strong>|<strong class=\"nico-info-date\">2013年07月28日 21:04:03</strong> 投稿</small></p>
216
+ ]]></description>
217
+ </item>
218
+ <item>
219
+ <title>【プロ野球チームをつくろう!3】ゆっくり日本一を目指すPart 12</title>
220
+ <link>http://www.nicovideo.jp/watch/sm21466789</link>
221
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-29:/watch/sm21466789</guid>
222
+ <pubDate>Mon, 29 Jul 2013 16:36:57 +0900</pubDate>
223
+ <description><![CDATA[
224
+ <p class=\"nico-thumbnail\"><img alt=\"【プロ野球チームをつくろう!3】ゆっくり日本一を目指すPart 12\" src=\"http://tn-skr2.smilevideo.jp/smile?i=21466789\" width=\"94\" height=\"70\" border=\"0\"/></p>
225
+ <p class=\"nico-description\">お久しぶりです、メガノリヒロです今回は 2005年のオフシーズンをお届けします最近とんでもなく暑いですねエアコンもフル回転で毎日完投、冬までもつのかな?(^q^)Part 11→sm21319145  Part 13→ Part 1→sm18767693みんな大好きプロ野球チームをつくろう!mylist/34608860</p>
226
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">13:59</strong>|<strong class=\"nico-info-date\">2013年07月29日 16:36:57</strong> 投稿</small></p>
227
+ ]]></description>
228
+ </item>
229
+ <item>
230
+ <title>ガンダムオンライン(ゆっくり付き)7回目</title>
231
+ <link>http://www.nicovideo.jp/watch/sm21464016</link>
232
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-29:/watch/sm21464016</guid>
233
+ <pubDate>Mon, 29 Jul 2013 01:19:46 +0900</pubDate>
234
+ <description><![CDATA[
235
+ <p class=\"nico-thumbnail\"><img alt=\"ガンダムオンライン(ゆっくり付き)7回目\" src=\"http://tn-skr1.smilevideo.jp/smile?i=21464016\" width=\"94\" height=\"70\" border=\"0\"/></p>
236
+ <p class=\"nico-description\">こんにちは、投稿間に合いませんでした、申し訳ないです。今回はかなりレアケースな戦場にいってきました。どう動いたらいいのかわかりませんでしたそれと今回BGMが少し大きいかもしれません、うるさいようでしたら、投稿しなおします。毎回たくさんの視聴とコメントありがとうございます。それに前回は宣伝までいただいて、とものり様ほんとうにありがとうございました。前⇒sm21410420 次⇒1週間くらい マイリスト⇒mylist/37640534</p>
237
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">20:01</strong>|<strong class=\"nico-info-date\">2013年07月29日 01:19:46</strong> 投稿</small></p>
238
+ ]]></description>
239
+ </item>
240
+ <item>
241
+ <title>WoT】 痛い戦車で行ってみましょう Part65 【ISU-152】</title>
242
+ <link>http://www.nicovideo.jp/watch/sm21464531</link>
243
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-29:/watch/sm21464531</guid>
244
+ <pubDate>Mon, 29 Jul 2013 02:47:06 +0900</pubDate>
245
+ <description><![CDATA[
246
+ <p class=\"nico-thumbnail\"><img alt=\"WoT】 痛い戦車で行ってみましょう Part65 【ISU-152】\" src=\"http://tn-skr4.smilevideo.jp/smile?i=21464531\" width=\"94\" height=\"70\" border=\"0\"/></p>
247
+ <p class=\"nico-description\">ベラルーシ製戦車オンラインゲーム「World of Tanks」NA鯖の痛いスキン戦車でのプレイ動画です。ε=[仕事][仕事][仕事]   タタタタァεεεεεヾ(*´・ω・`)ノ クシャミガ・・・Part1 → sm15980846 Part64 ← sm21304592WoTプレイ動画マイリスト mylist/28410856WoTプレイ動画OP/ED マイリスト mylist/34286318コミュニティ co1706471ブロマガ http://ch.nicovideo.jp/hirotto_kealdish/※戦車の痛いスキンは他の人には見えていません。と て も 残 念 で す が(´・ω・`)ガッカリ・・・</p>
248
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">12:11</strong>|<strong class=\"nico-info-date\">2013年07月29日 02:47:06</strong> 投稿</small></p>
249
+ ]]></description>
250
+ </item>
251
+ <item>
252
+ <title>【ゆっくり実況】ゆっくり魔理沙のBIOHAZARD4 Part33</title>
253
+ <link>http://www.nicovideo.jp/watch/sm21465943</link>
254
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-29:/watch/sm21465943</guid>
255
+ <pubDate>Mon, 29 Jul 2013 12:31:06 +0900</pubDate>
256
+ <description><![CDATA[
257
+ <p class=\"nico-thumbnail\"><img alt=\"【ゆっくり実況】ゆっくり魔理沙のBIOHAZARD4 Part33\" src=\"http://tn-skr4.smilevideo.jp/smile?i=21465943\" width=\"94\" height=\"70\" border=\"0\"/></p>
258
+ <p class=\"nico-description\">ゆっくり魔理沙が「バイオハザード4」に挑戦。一部にグロテスクな表現、ネタバレ、メタ発言、キャラ崩壊が含まれていますのでご視聴の際はご注意を。難易度:ノーマル 縛り:無し大変お待たせいたしました。今回、クラウザーとの因縁に遂に終止符がっ!前:sm21358461<mylist/34805658>次:1~2週間くらい。ゆっくり実況まとめ:mylist/34805446 その他単発物:mylist/33115865ツイッター:@gimihan ブロマガ:ch.nicovideo.jp/yukkurimarisa</p>
259
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">14:02</strong>|<strong class=\"nico-info-date\">2013年07月29日 12:31:06</strong> 投稿</small></p>
260
+ ]]></description>
261
+ </item>
262
+ <item>
263
+ <title>【Minecraft】ジャンプ禁止のマインクラフト:村開拓編 Part.11</title>
264
+ <link>http://www.nicovideo.jp/watch/sm21456445</link>
265
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-28:/watch/sm21456445</guid>
266
+ <pubDate>Sun, 28 Jul 2013 05:15:55 +0900</pubDate>
267
+ <description><![CDATA[
268
+ <p class=\"nico-thumbnail\"><img alt=\"【Minecraft】ジャンプ禁止のマインクラフト:村開拓編 Part.11\" src=\"http://tn-skr2.smilevideo.jp/smile?i=21456445\" width=\"94\" height=\"70\" border=\"0\"/></p>
269
+ <p class=\"nico-description\">プレイ時間と動画の再生時間が一致しない不具合が発生中。そうそう、関係ないけど、twitterのアカウントが凍結されたよ。<導入MOD>Millenaire(村MOD)・MinecraftForge(前提MOD)OptiFine(軽量化MOD)←Part.10:sm21381988→Part.12:未制作→マイリスト:mylist/37155488→ジャンプ禁止シリーズ全マイリスト:mylist/25787517Twitter:https://twitter.com/yuzu_gratin</p>
270
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">8:57</strong>|<strong class=\"nico-info-date\">2013年07月28日 05:15:55</strong> 投稿</small></p>
271
+ ]]></description>
272
+ </item>
273
+ <item>
274
+ <title>電車でGO!プロ仕様 全ダイヤ悪天候でクリアを目指すPart63【ゆっくり実況】</title>
275
+ <link>http://www.nicovideo.jp/watch/sm21463781</link>
276
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-29:/watch/sm21463781</guid>
277
+ <pubDate>Mon, 29 Jul 2013 01:13:26 +0900</pubDate>
278
+ <description><![CDATA[
279
+ <p class=\"nico-thumbnail\"><img alt=\"電車でGO!プロ仕様 全ダイヤ悪天候でクリアを目指すPart63【ゆっくり実況】\" src=\"http://tn-skr2.smilevideo.jp/smile?i=21463781\" width=\"94\" height=\"70\" border=\"0\"/></p>
280
+ <p class=\"nico-description\">元の天候が良いダイヤを中心に悪天候ベリーハードでノーコン完走を目指します。今回はJR京都線の朝の快速(デフォの天気:晴れ)です。やっぱりパソコン変わっても一般会員のままなので画質が良くなることはないですわ Part62&gt;&gt;sm21347312 Part64&gt;&gt;作成中 マイリスト&gt;&gt;mylist/28894953</p>
281
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">17:34</strong>|<strong class=\"nico-info-date\">2013年07月29日 01:13:26</strong> 投稿</small></p>
282
+ ]]></description>
283
+ </item>
284
+ <item>
285
+ <title>【QMA】ゆっくり早苗が文系一本でフェニックス組に挑むようです の弐</title>
286
+ <link>http://www.nicovideo.jp/watch/sm21463047</link>
287
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-28:/watch/sm21463047</guid>
288
+ <pubDate>Sun, 28 Jul 2013 23:40:45 +0900</pubDate>
289
+ <description><![CDATA[
290
+ <p class=\"nico-thumbnail\"><img alt=\"【QMA】ゆっくり早苗が文系一本でフェニックス組に挑むようです の弐\" src=\"http://tn-skr4.smilevideo.jp/smile?i=21463047\" width=\"94\" height=\"70\" border=\"0\"/></p>
291
+ <p class=\"nico-description\">動画の方向性を模索中いろいろ吹っ切れたまさか、ユニコーン組でunicornが使えるとは■マイリストmylist/38123786前:sm21446271次:来週?各方面に怒られたらすぐ消します</p>
292
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">17:29</strong>|<strong class=\"nico-info-date\">2013年07月28日 23:40:45</strong> 投稿</small></p>
293
+ ]]></description>
294
+ </item>
295
+ <item>
296
+ <title>【パワプロ2012】 G.G.大井のゆっくりうどんマイライフ 十杯目</title>
297
+ <link>http://www.nicovideo.jp/watch/sm21460490</link>
298
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-28:/watch/sm21460490</guid>
299
+ <pubDate>Sun, 28 Jul 2013 19:08:35 +0900</pubDate>
300
+ <description><![CDATA[
301
+ <p class=\"nico-thumbnail\"><img alt=\"【パワプロ2012】 G.G.大井のゆっくりうどんマイライフ 十杯目\" src=\"http://tn-skr3.smilevideo.jp/smile?i=21460490\" width=\"94\" height=\"70\" border=\"0\"/></p>
302
+ <p class=\"nico-description\">なんだかリアルと順位がほぼ同じなんだが・・・ということはここでカープが勝てば現実も!?正直な話をすると二週間に一本とか無理ぽなので次は2・3カ月後くらいだと思ってゆっくりお待ちいただけるとありがたいです。ゆっくり実況マイリストmylist/26796783 第9話→sm20781675 続き→録画まだ 普段は水曜日夜11時過ぎから野球してました→co1162911更新情報はツイッター@yuuupiinusiイラストは常時募集しております!</p>
303
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">16:00</strong>|<strong class=\"nico-info-date\">2013年07月28日 19:08:35</strong> 投稿</small></p>
304
+ ]]></description>
305
+ </item>
306
+ <item>
307
+ <title>GTA SA カオスモード ゆっくりまりさが実況プレイ その100</title>
308
+ <link>http://www.nicovideo.jp/watch/sm21460188</link>
309
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-28:/watch/sm21460188</guid>
310
+ <pubDate>Sun, 28 Jul 2013 18:28:59 +0900</pubDate>
311
+ <description><![CDATA[
312
+ <p class=\"nico-thumbnail\"><img alt=\"GTA SA カオスモード ゆっくりまりさが実況プレイ その100\" src=\"http://tn-skr1.smilevideo.jp/smile?i=21460188\" width=\"94\" height=\"70\" border=\"0\"/></p>
313
+ <p class=\"nico-description\">あと20本くらいでシリーズ完と予想前sm21325310 mylist/13989635</p>
314
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">17:06</strong>|<strong class=\"nico-info-date\">2013年07月28日 18:28:59</strong> 投稿</small></p>
315
+ ]]></description>
316
+ </item>
317
+ <item>
318
+ <title>【巨星】ダークソウルをゆっくりが初見プレイするよ!7話【墜つ】</title>
319
+ <link>http://www.nicovideo.jp/watch/sm21456351</link>
320
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-28:/watch/sm21456351</guid>
321
+ <pubDate>Sun, 28 Jul 2013 17:00:00 +0900</pubDate>
322
+ <description><![CDATA[
323
+ <p class=\"nico-thumbnail\"><img alt=\"【巨星】ダークソウルをゆっくりが初見プレイするよ!7話【墜つ】\" src=\"http://tn-skr4.smilevideo.jp/smile?i=21456351\" width=\"94\" height=\"70\" border=\"0\"/></p>
324
+ <p class=\"nico-description\">ちょっと遅くなっちゃったね、ごめんねこれも全部ソーサレスせいなんだ・・ぐぬぬ・・ダークソウルマイリストmylist/37808346sm21403379←6話 8話→早くできればいいなぁ(´・ω・`)</p>
325
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">13:30</strong>|<strong class=\"nico-info-date\">2013年07月28日 17:00:00</strong> 投稿</small></p>
326
+ ]]></description>
327
+ </item>
328
+ <item>
329
+ <title>【Minecraft】My Craft part 4~ 牧場で暮らすゆかいな動物たち~</title>
330
+ <link>http://www.nicovideo.jp/watch/sm21447060</link>
331
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-27:/watch/sm21447060</guid>
332
+ <pubDate>Sat, 27 Jul 2013 00:00:00 +0900</pubDate>
333
+ <description><![CDATA[
334
+ <p class=\"nico-thumbnail\"><img alt=\"【Minecraft】My Craft part 4~ 牧場で暮らすゆかいな動物たち~\" src=\"http://tn-skr1.smilevideo.jp/smile?i=21447060\" width=\"94\" height=\"70\" border=\"0\"/></p>
335
+ <p class=\"nico-description\">part4になります。今回は牧場の作成しました。【前】part3 【sm20942781】【次】part5 【現在製作中】今までの投稿動画はこちらから→【mylist/36758399】</p>
336
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">12:53</strong>|<strong class=\"nico-info-date\">2013年07月27日 00:00:00</strong> 投稿</small></p>
337
+ ]]></description>
338
+ </item>
339
+ <item>
340
+ <title>ゆっくり実況プレイ 忙しい人のための「バイオショック Infinite」 part 20</title>
341
+ <link>http://www.nicovideo.jp/watch/sm21461124</link>
342
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-28:/watch/sm21461124</guid>
343
+ <pubDate>Sun, 28 Jul 2013 20:24:15 +0900</pubDate>
344
+ <description><![CDATA[
345
+ <p class=\"nico-thumbnail\"><img alt=\"ゆっくり実況プレイ 忙しい人のための「バイオショック Infinite」 part 20\" src=\"http://tn-skr1.smilevideo.jp/smile?i=21461124\" width=\"94\" height=\"70\" border=\"0\"/></p>
346
+ <p class=\"nico-description\">ども、皆様。まるきゅ~と申す者です。^^今回も以前やった「用語解説」的なものがあります。4秒程度で流れていくので、一時停止でお読み下さい。※ 今回、グロい部分があるので久しぶりにまた、「もきゅ~グロ回避」入れています。知っている方は、ご活用下さい。※ やばいシーンの約5秒前に、右下に泣いたアリスが登場。→出た5秒後、グロいシーン→終了後、「もきゅ~」と聞こえたら、画面見てもおk。という感じの流れでございますw 初投稿の時はガンガンやってましたねwグロ→6:34 用語解説→10:44これの→mylist/37050342 次→恐縮ですが、お待ち下さい。</p>
347
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">14:59</strong>|<strong class=\"nico-info-date\">2013年07月28日 20:24:15</strong> 投稿</small></p>
348
+ ]]></description>
349
+ </item>
350
+ <item>
351
+ <title>【ゆっくり実況】DUST514を極めるPart28【新生FG】</title>
352
+ <link>http://www.nicovideo.jp/watch/sm21461025</link>
353
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-28:/watch/sm21461025</guid>
354
+ <pubDate>Sun, 28 Jul 2013 20:12:10 +0900</pubDate>
355
+ <description><![CDATA[
356
+ <p class=\"nico-thumbnail\"><img alt=\"【ゆっくり実況】DUST514を極めるPart28【新生FG】\" src=\"http://tn-skr2.smilevideo.jp/smile?i=21461025\" width=\"94\" height=\"70\" border=\"0\"/></p>
357
+ <p class=\"nico-description\">PS3が壊れた私が、出来るだけDUST514を頑張る動画です。・極めるための第三目標:iskを二億にする。編集しながらDUSTをやっているとなぜか成績がよくなります。そして動画の完成が遅くなります。でもDUSTやめられない。ああ手が勝手に「in my squad yeah!!」Part1に引き続き、Part2も2525再生達成しました。ありがとうございます。滅茶苦茶嬉しいです。sm21399760:前 次: マイリスト:mylist/35706376</p>
358
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">7:43</strong>|<strong class=\"nico-info-date\">2013年07月28日 20:12:10</strong> 投稿</small></p>
359
+ ]]></description>
360
+ </item>
361
+ <item>
362
+ <title>【ダークソウル】白ファンだったりホストだったり26【ゆっくり実況】</title>
363
+ <link>http://www.nicovideo.jp/watch/sm21461498</link>
364
+ <guid isPermaLink=\"false\">tag:nicovideo.jp,2013-07-28:/watch/sm21461498</guid>
365
+ <pubDate>Sun, 28 Jul 2013 21:09:19 +0900</pubDate>
366
+ <description><![CDATA[
367
+ <p class=\"nico-thumbnail\"><img alt=\"【ダークソウル】白ファンだったりホストだったり26【ゆっくり実況】\" src=\"http://tn-skr3.smilevideo.jp/smile?i=21461498\" width=\"94\" height=\"70\" border=\"0\"/></p>
368
+ <p class=\"nico-description\">ダークソウルの白霊協力プレイ動画第二十六弾になります。最終回です。茶番多めでお送りいたします。ご注意下さい。日曜日ですね。※他のプレイヤーさんへの批判はお控え頂くようお願いいたします。前回→sm21383887 mylist/34850429</p>
369
+ <p class=\"nico-info\"><small><strong class=\"nico-info-length\">19:52</strong>|<strong class=\"nico-info-date\">2013年07月28日 21:09:19</strong> 投稿</small></p>
370
+ ]]></description>
371
+ </item>
372
+
373
+ </channel>
374
+
375
+ </rss>
376
+ </xml>
377
+ """
378
+ end
379
+ end
380
+
@@ -0,0 +1,116 @@
1
+ require "spec_helper"
2
+ require "./lib/nicoquery/parser/tag_search"
3
+ require "./spec/fixture"
4
+
5
+ describe "TagSearch" do
6
+ before do
7
+ @instance = NicoQuery::Parser::TagSearch.new
8
+ @instance.parse Fixture.tag_search_rss
9
+ end
10
+
11
+ shared_examples "url string" do
12
+ specify { expect(subject).to match /(http|https)\:\/\/.+/ }
13
+ end
14
+
15
+ describe "tag" do
16
+ subject { @instance.tag }
17
+ specify { expect(subject).to be }
18
+ end
19
+
20
+ describe "publish_date" do
21
+ subject { @instance.publish_date }
22
+ specify { expect(subject).to be_kind_of(Time) }
23
+ end
24
+
25
+ describe "last_build_date" do
26
+ subject { @instance.last_build_date }
27
+ specify { expect(subject).to be_kind_of(Time) }
28
+ end
29
+
30
+ describe "item" do
31
+ subject { @instance.items }
32
+ specify { expect(subject).to be_kind_of(Array) }
33
+ end
34
+
35
+ describe "each item" do
36
+
37
+ describe "title" do
38
+ subject { @instance.items[0].title }
39
+ specify { expect(subject).to be }
40
+ end
41
+
42
+ describe "video_id" do
43
+ subject { @instance.items[0].video_id }
44
+ specify { expect(subject).to match /(sm|nm)\d{1,}/ }
45
+ end
46
+
47
+ describe "url" do
48
+ subject { @instance.items[0].url }
49
+ it_behaves_like "url string"
50
+ end
51
+
52
+ describe "publish_date" do
53
+ subject { @instance.items[0].url }
54
+ it_behaves_like "url string"
55
+ end
56
+
57
+ describe "thumbnail_url" do
58
+ subject { @instance.items[0].thumbnail_url }
59
+ it_behaves_like "url string"
60
+ end
61
+
62
+ describe "length" do
63
+ subject { @instance.items[0].length }
64
+ specify { expect(subject).to be_kind_of(Fixnum) }
65
+ end
66
+
67
+ describe "description" do
68
+ subject { @instance.items[0].description }
69
+ specify { expect(subject).to be_kind_of(Object) }
70
+ end
71
+
72
+ describe "Description" do
73
+ describe "raw_text" do
74
+ subject { @instance.items[0].description.raw_text }
75
+ specify { expect(subject).to be_kind_of(String) }
76
+ end
77
+
78
+ describe "text" do
79
+ subject { @instance.items[0].description.text }
80
+ specify { expect(subject).to be_kind_of(String) }
81
+ end
82
+
83
+ # spec/fixture.rbを参照。
84
+ describe "movie_references" do
85
+ subject { @instance.items[5].description.movie_references }
86
+ specify { expect(subject).to be_kind_of(Array) }
87
+ specify { expect(subject.length).to eq 4 }
88
+ specify { expect(subject[0]).to match /^(sm|nm)\d{1,}$/ }
89
+ end
90
+
91
+ # Fixtureの最初の動画では、'mylist/(数字)'の記載が2つある。
92
+ describe "mylist_references" do
93
+ subject { @instance.items[0].description.mylist_references }
94
+ specify { expect(subject).to be_kind_of(Array) }
95
+ specify { expect(subject.length).to eq 2 }
96
+ specify { expect(subject[0]).to match /^\d{1,}$/ }
97
+ end
98
+
99
+ # Fixtureの3番目の動画では、'co(数字)'の記載が2つある。
100
+ describe "community_references" do
101
+ subject { @instance.items[2].description.community_references }
102
+ specify { expect(subject).to be_kind_of(Array) }
103
+ specify { expect(subject.length).to eq 1 }
104
+ specify { expect(subject[0]).to match /^co\d{1,}$/ }
105
+ end
106
+
107
+ # Fixtureの3番目の動画では、'im(数字)'の記載が1つある。
108
+ describe "seiga_references" do
109
+ subject { @instance.items[3].description.seiga_references }
110
+ specify { expect(subject).to be_kind_of(Array) }
111
+ specify { expect(subject.length).to eq 1 }
112
+ specify { expect(subject[0]).to match /^im\d{1,}$/ }
113
+ end
114
+ end
115
+ end
116
+ end
@@ -0,0 +1,17 @@
1
+ # This file was generated by the `rspec --init` command. Conventionally, all
2
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
+ # Require this file using `require "spec_helper"` to ensure that it is only
4
+ # loaded once.
5
+ #
6
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
7
+ RSpec.configure do |config|
8
+ config.treat_symbols_as_metadata_keys_with_true_values = true
9
+ config.run_all_when_everything_filtered = true
10
+ config.filter_run :focus
11
+
12
+ # Run specs in random order to surface order dependencies. If you find an
13
+ # order dependency and want to debug it, you can fix the order by providing
14
+ # the seed, which is printed after each run.
15
+ # --seed 1234
16
+ config.order = 'random'
17
+ end
metadata ADDED
@@ -0,0 +1,158 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nicoquery-parser
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.5
5
+ platform: ruby
6
+ authors:
7
+ - Masami Yonehara
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-08-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activesupport
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 4.0.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 4.0.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: nokogiri
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: nori
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: '1.3'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ~>
67
+ - !ruby/object:Gem::Version
68
+ version: '1.3'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - '>='
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: pry
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - '>='
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - '>='
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ description: object parser for niconico douga API
112
+ email:
113
+ - zeitdiebe@gmail.com
114
+ executables: []
115
+ extensions: []
116
+ extra_rdoc_files: []
117
+ files:
118
+ - .gitignore
119
+ - .travis.yml
120
+ - Gemfile
121
+ - LICENSE.txt
122
+ - README.md
123
+ - Rakefile
124
+ - lib/nicoquery/parser.rb
125
+ - lib/nicoquery/parser/tag_search.rb
126
+ - lib/nicoquery/parser/version.rb
127
+ - nicoquery-parser.gemspec
128
+ - spec/fixture.rb
129
+ - spec/parser/tag_search_spec.rb
130
+ - spec/spec_helper.rb
131
+ homepage: ''
132
+ licenses:
133
+ - MIT
134
+ metadata: {}
135
+ post_install_message:
136
+ rdoc_options: []
137
+ require_paths:
138
+ - lib
139
+ required_ruby_version: !ruby/object:Gem::Requirement
140
+ requirements:
141
+ - - '>='
142
+ - !ruby/object:Gem::Version
143
+ version: '0'
144
+ required_rubygems_version: !ruby/object:Gem::Requirement
145
+ requirements:
146
+ - - '>='
147
+ - !ruby/object:Gem::Version
148
+ version: '0'
149
+ requirements: []
150
+ rubyforge_project:
151
+ rubygems_version: 2.0.3
152
+ signing_key:
153
+ specification_version: 4
154
+ summary: object parser for niconico douga API
155
+ test_files:
156
+ - spec/fixture.rb
157
+ - spec/parser/tag_search_spec.rb
158
+ - spec/spec_helper.rb