funky 0.2.14 → 0.2.15

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0ee32f9048854c9fb49890992ea93946e409f1ee
4
- data.tar.gz: 737ab7795b544735f2d992adacdc5ca1241ab6f7
3
+ metadata.gz: 603440bcd5f540d026cb62990150a94d8a036fd3
4
+ data.tar.gz: 1d0c8842a8872eceeb057cfdc8a74a39de5f4e8b
5
5
  SHA512:
6
- metadata.gz: e44f6f848b9beff059e7fb522a98fd42878e6b5c18389bd827481054428e492d537ee0cc60fce4571e7a5d78a30330ef1c2de7223b7da28be7a91e4fa9ffdb88
7
- data.tar.gz: 58fd2f90d6e025818ed09f39d47062ce4011e72b7a131bd787041f4ccb66fd2fccca7c5bbabaf15aaacd3e8c0561aefc99f91828ac5e8faa7c44354a2bd4bf90
6
+ metadata.gz: 7280ab0b2035dc879ffbba599b137aca3dba2e755912e436ce2472a12047900a33ac117e047e15cf0ad5099962e846ac9ec05bb9b4a3f48415b657a17723c9c2
7
+ data.tar.gz: 80e5f20881c9a46d532b69bce9132bdcbcf7c06a2c494d9f96653e43f28dbd3ac572e829f196052be63cf5e169c65c34b8f5ebc48960c64e16657c0154f488f7
@@ -6,6 +6,11 @@ For more information about changelogs, check
6
6
  [Keep a Changelog](http://keepachangelog.com) and
7
7
  [Vandamme](http://tech-angels.github.io/vandamme).
8
8
 
9
+ ## 0.2.15 - 2017/03/21
10
+
11
+ * [BUGFIX] Return a string for the description field of a Funky::Video
12
+ object even when the Facebook video has no description
13
+
9
14
  ## 0.2.14 - 2017/02/06
10
15
 
11
16
  * [ENHANCEMENT] Add the Funky::Page API to fetch name, username,
@@ -1,3 +1,3 @@
1
1
  module Funky
2
- VERSION = "0.2.14"
2
+ VERSION = "0.2.15"
3
3
  end
@@ -18,7 +18,7 @@ module Funky
18
18
 
19
19
  # @return [String] the description of the video.
20
20
  def description
21
- data[:description]
21
+ data[:description].to_s
22
22
  end
23
23
 
24
24
  # @return [Float] the length (duration) of the video.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: funky
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.14
4
+ version: 0.2.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Philip Nguyen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-02-06 00:00:00.000000000 Z
11
+ date: 2017-03-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -148,7 +148,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
148
148
  version: '0'
149
149
  requirements: []
150
150
  rubyforge_project:
151
- rubygems_version: 2.6.6
151
+ rubygems_version: 2.5.1
152
152
  signing_key:
153
153
  specification_version: 4
154
154
  summary: Funky is a Ruby library to fetch video data.