ruby-oembed 0.16.0 → 0.16.1

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
  SHA256:
3
- metadata.gz: eeb96fbccad7fd520db58a1a89c977249ec15af8318b1a40800e2467a3c2e341
4
- data.tar.gz: 80ac3291c0193e290ddae08a434bcefa40d94767a2f3db3986c83554f6ff05b7
3
+ metadata.gz: dfcdff2a45ff8d739d78d8b44f0694735d6bb962b01ff6e0fef85e0a089d1d23
4
+ data.tar.gz: 3fdef0f50c4d9f65a316099e069fde6e50c3dcdd52bb3251fa3c97d300736dbb
5
5
  SHA512:
6
- metadata.gz: 06bd338f7b9f3d33e0cb865e9c605cd38393d4324d5191d1654089862a0f5fc81c7cb54c14557fc5c1f842ffdd935b8e463368af40ce6532bddd4cc56dd6ecef
7
- data.tar.gz: 529bc64612cb52c8950e0fa93d4ab3afc6a13b2c1ca2cf31b2b69d41a0ed7f7244695f1f2d2dc8577c8614d769893ce748dd504f260d6d081dabd5a1c8a3d639
6
+ metadata.gz: a6f93f4aa24f1cbf281c94657d2f58749599f1b7628e835475feb61eed2136333736478ce34f82bff209b9557ce70dd6ef1214ddaffdd99ba36fcdd6bb1a3793
7
+ data.tar.gz: bd3bdbd9a24b06c715498ca90691998d13fb05b13332f698b1f4065cd639d46db9644404328ef4f0d7a74cc46488008f1d36688b89f8b99324df6c6ed4ca48a2
data/CHANGELOG.rdoc CHANGED
@@ -1,6 +1,10 @@
1
1
  = CHANGELOG
2
2
 
3
- == Unreleased (0.16.1)
3
+ == Unreleased (0.16.2)
4
+
5
+ == 0.16.1 - 13 January 2022
6
+
7
+ * Fix the "already initialized constant OEmbed::Providers::TikTok" warning; Pull #84 (Christopher Nelson)
4
8
 
5
9
  == 0.16.0 - 8 January 2022
6
10
 
@@ -205,11 +205,6 @@ module OEmbed
205
205
  Ted << "https://*.ted.com/talks/*"
206
206
  add_official_provider(Ted)
207
207
 
208
- # Provider for TikTok
209
- # See https://developers.tiktok.com/doc/embed-videos
210
- TikTok = OEmbed::Provider.new("https://www.tiktok.com/oembed", format: :json)
211
- TikTok << "https://www.tiktok.com/*/video/*"
212
-
213
208
  # Provider for tumblr.com
214
209
  Tumblr = OEmbed::Provider.new("http://www.tumblr.com/oembed/1.0/", format: :json)
215
210
  Tumblr << "http://*.tumblr.com/post/*"
@@ -2,7 +2,7 @@ module OEmbed
2
2
  class Version
3
3
  MAJOR = 0
4
4
  MINOR = 16
5
- PATCH = 0
5
+ PATCH = 1
6
6
  STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
7
7
 
8
8
  class << self
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-oembed
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.16.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Magnus Holm
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2022-01-08 00:00:00.000000000 Z
14
+ date: 2022-01-13 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: xml-simple
@@ -103,7 +103,7 @@ rdoc_options:
103
103
  - "--main"
104
104
  - README.rdoc
105
105
  - "--title"
106
- - ruby-oembed-0.16.0
106
+ - ruby-oembed-0.16.1
107
107
  - "--inline-source"
108
108
  - "--exclude"
109
109
  - tasks