YPBT 0.2.6 → 0.2.8
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 +4 -4
- data/lib/YPBT/version.rb +1 -1
- data/lib/YPBT/video.rb +9 -1
- data/lib/YPBT/youtube_api.rb +19 -2
- data/spec/Ytapi_spec.rb +5 -0
- data/spec/fixtures/cassettes/youtube_api.yml +8465 -7707
- data/spec/video_spec.rb +5 -0
- metadata +3 -3
data/spec/video_spec.rb
CHANGED
@@ -48,6 +48,11 @@ describe 'Video specifications' do
|
|
48
48
|
video.channel_image_url.must_match(/https:/)
|
49
49
|
end
|
50
50
|
|
51
|
+
it 'should able to get popular videos' do
|
52
|
+
videos = YoutubeVideo::Video.find_popular(max_results: 25)
|
53
|
+
videos.length.must_be :==, 25
|
54
|
+
end
|
55
|
+
|
51
56
|
it 'should run the executable file' do
|
52
57
|
output = `YPBT #{TEST_VIDEO_ID}`
|
53
58
|
output.split("\n").length.must_be :>, 5
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: YPBT
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yi-Min
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2016-12-
|
13
|
+
date: 2016-12-14 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: http
|
@@ -222,7 +222,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
222
222
|
version: '0'
|
223
223
|
requirements: []
|
224
224
|
rubyforge_project:
|
225
|
-
rubygems_version: 2.
|
225
|
+
rubygems_version: 2.5.1
|
226
226
|
signing_key:
|
227
227
|
specification_version: 4
|
228
228
|
summary: Gets comment from public Youtube videos
|