vimeo_ruby 0.4.1 → 0.4.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/vimeo_ruby/user.rb +9 -3
- data/lib/vimeo_ruby/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6e322bad016985f2258e442017837049fd62007364cc6338ca4e705f7b573b5d
|
4
|
+
data.tar.gz: 12fd20df10e0df161bb757931079f9d53aeb8468795a7ffac3f20b7ea4ed2228
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c0b0eb5766fa016c12d1992e3a67e063559ac3b48c53e053d04b8897ecf3f75f79ba693200b29301b032e32e145baeec2f8e15548ab099e63ac5b288818967ef
|
7
|
+
data.tar.gz: 5f9507375cac59c5c9ccb88f4f40cef547fadee3e680319652585a62a247df7966e54c1750380d7a92b9c7215ea3ca53948c97428ef645707c8fbfccaf2c35c0
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [0.4.2] - 2022-12-29
|
4
|
+
|
5
|
+
- Refactor `VimeoRuby::User#uploaded_videos` method
|
6
|
+
|
7
|
+
## [0.4.1] - 2022-12-29
|
8
|
+
|
9
|
+
- Fix erroneous minor version release (yanked 0.4.0)
|
10
|
+
|
3
11
|
## [0.4.0] - 2022-12-29
|
4
12
|
|
5
13
|
- Save unnecessary call to get a users uploaded video collection if we already have it and no additional query params are passed in to `VimeoRuby::User#uploaded_videos`.
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
data/lib/vimeo_ruby/user.rb
CHANGED
@@ -25,9 +25,7 @@ module VimeoRuby
|
|
25
25
|
|
26
26
|
def uploaded_videos(query_params: {})
|
27
27
|
if @video_collection.nil? || !query_params.empty?
|
28
|
-
|
29
|
-
uploaded_videos = uploaded_videos_response["data"]
|
30
|
-
@video_collection = UploadedVideoCollection.new(uploaded_videos)
|
28
|
+
@video_collection = retrieve_video_collection(query_params)
|
31
29
|
else
|
32
30
|
@video_collection
|
33
31
|
end
|
@@ -40,5 +38,13 @@ module VimeoRuby
|
|
40
38
|
def can_work_remotely?
|
41
39
|
@can_work_remotely
|
42
40
|
end
|
41
|
+
|
42
|
+
private
|
43
|
+
|
44
|
+
def retrieve_video_collection(query_params)
|
45
|
+
uploaded_videos_response = self.class.get("#{base_uri}/users/#{vimeo_id}/videos", query_params: query_params)
|
46
|
+
uploaded_videos = uploaded_videos_response["data"]
|
47
|
+
UploadedVideoCollection.new(uploaded_videos)
|
48
|
+
end
|
43
49
|
end
|
44
50
|
end
|
data/lib/vimeo_ruby/version.rb
CHANGED