pageflow-oembed 1.2.1 → 12.0.0.pre
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 +48 -0
- data/lib/pageflow/oembed/version.rb +1 -1
- data/pageflow-oembed.gemspec +1 -1
- metadata +9 -15
- data/CHANGELOG +0 -35
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 30f06a86f9d6ed15e65a272171b84631361c8181
|
|
4
|
+
data.tar.gz: 02265db3b74f8a9bb0deadf80499471363127964
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 44ecbf334a23ecd97867b752b1fa7dbc392e345338b680af78c9b28b5057e8291aa9b1e84fe98ba4daefe3d5683ddd8e8c41dbcc71d409ec14756ddbb5fc8176
|
|
7
|
+
data.tar.gz: 214fd3086e9ff21f188091aa25c330892782b7e97a3ef4484debe7ef41d33b9737687f9f3d57e2e92e7afe74543152247e3d23c46d752654226c7dc9b1c87e27
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
All notable changes to this project will be documented in this file.
|
|
3
|
+
|
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
### Added
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- Compatible with Pageflow 12
|
|
12
|
+
- Reformatted this file to conform to [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
### Removed
|
|
17
|
+
|
|
18
|
+
## [1.2.1] - 2017-08-12
|
|
19
|
+
### Fixed
|
|
20
|
+
- changed key in English translations file to `en`.
|
|
21
|
+
|
|
22
|
+
## [1.2.0] - 2017-07-28
|
|
23
|
+
### Added
|
|
24
|
+
- Facebook single post support. Uses the Facebook JS SDK. Spy on all the things!
|
|
25
|
+
facebook, single post: https://www.facebook.com/20531316728/posts/10154009990506729/
|
|
26
|
+
Will add Facebook Video in a future release.
|
|
27
|
+
|
|
28
|
+
## [1.1.1] - 2017-07-25
|
|
29
|
+
### Fixed
|
|
30
|
+
- make the URL test more strict. Otherwise non-embeddable links were found.
|
|
31
|
+
|
|
32
|
+
## [1.1.0] - 2017-07-16
|
|
33
|
+
### Added
|
|
34
|
+
- Spotify support. Uses Oembed like the makers intended, damnit!
|
|
35
|
+
spotify, single track: https://open.spotify.com/track/298gs9ATwr2rD9tGYJKlQR
|
|
36
|
+
spotify, artist: https://open.spotify.com/artist/0IIPgITtEO4JJfipw57KGv
|
|
37
|
+
|
|
38
|
+
### Fixed
|
|
39
|
+
- NodeList to Array now considers empty Nodelist. Also, speed.
|
|
40
|
+
|
|
41
|
+
## [1.0.1] - 2017-07-17
|
|
42
|
+
### Fixed
|
|
43
|
+
- tweet ID is now correctly parsed from the link.
|
|
44
|
+
|
|
45
|
+
## [1.0.0] - 2017-07-16
|
|
46
|
+
### Added
|
|
47
|
+
- Twitter support. Doesn't actually use oEmbed, because the Twitter SDK handles everything for us. Oh well.
|
|
48
|
+
twitter, single tweet: https://twitter.com/scrollytelling/status/885128273239396352
|
data/pageflow-oembed.gemspec
CHANGED
|
@@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
|
|
|
30
30
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
31
31
|
spec.require_paths = ["lib"]
|
|
32
32
|
|
|
33
|
-
spec.add_runtime_dependency "pageflow", "
|
|
33
|
+
spec.add_runtime_dependency "pageflow", "~> 12.0"
|
|
34
34
|
spec.add_runtime_dependency 'rails', '>= 3.0'
|
|
35
35
|
spec.add_runtime_dependency "faraday"
|
|
36
36
|
spec.add_runtime_dependency "faraday_middleware"
|
metadata
CHANGED
|
@@ -1,35 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pageflow-oembed
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 12.0.0.pre
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Joost Baaij
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-08-
|
|
11
|
+
date: 2017-08-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pageflow
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
18
|
-
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.10.0
|
|
20
|
-
- - "<"
|
|
17
|
+
- - "~>"
|
|
21
18
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 12.0
|
|
19
|
+
version: '12.0'
|
|
23
20
|
type: :runtime
|
|
24
21
|
prerelease: false
|
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
23
|
requirements:
|
|
27
|
-
- - "
|
|
28
|
-
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.10.0
|
|
30
|
-
- - "<"
|
|
24
|
+
- - "~>"
|
|
31
25
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 12.0
|
|
26
|
+
version: '12.0'
|
|
33
27
|
- !ruby/object:Gem::Dependency
|
|
34
28
|
name: rails
|
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -127,7 +121,7 @@ files:
|
|
|
127
121
|
- ".gitignore"
|
|
128
122
|
- ".rspec"
|
|
129
123
|
- ".travis.yml"
|
|
130
|
-
- CHANGELOG
|
|
124
|
+
- CHANGELOG.md
|
|
131
125
|
- CODE_OF_CONDUCT.md
|
|
132
126
|
- Gemfile
|
|
133
127
|
- LICENSE.txt
|
|
@@ -172,9 +166,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
172
166
|
version: '0'
|
|
173
167
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
174
168
|
requirements:
|
|
175
|
-
- - "
|
|
169
|
+
- - ">"
|
|
176
170
|
- !ruby/object:Gem::Version
|
|
177
|
-
version:
|
|
171
|
+
version: 1.3.1
|
|
178
172
|
requirements: []
|
|
179
173
|
rubyforge_project:
|
|
180
174
|
rubygems_version: 2.6.11
|
data/CHANGELOG
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
Version 1.2.1—12 August 2017
|
|
2
|
-
|
|
3
|
-
Bugfix: changed key in English translations file to `en`.
|
|
4
|
-
|
|
5
|
-
Version 1.2.0—28 July 2017
|
|
6
|
-
|
|
7
|
-
Added Facebook single post support. Uses the Facebook JS SDK. Spy on all the things!
|
|
8
|
-
|
|
9
|
-
* facebook, post: https://www.facebook.com/20531316728/posts/10154009990506729/
|
|
10
|
-
|
|
11
|
-
Will add Facebook Video in a future release.
|
|
12
|
-
|
|
13
|
-
Version 1.1.1—25 July 2017
|
|
14
|
-
|
|
15
|
-
Bugfix: make the URL test more strict. Otherwise non-embeddable links were found.
|
|
16
|
-
|
|
17
|
-
Version 1.1.0—16 July 2017
|
|
18
|
-
|
|
19
|
-
Bugfix: NodeList to Array now considers empty Nodelist. Also, speed.
|
|
20
|
-
|
|
21
|
-
Added Spotify support. Uses Oembed like the makers intended, damnit!
|
|
22
|
-
|
|
23
|
-
* spotify, single track: https://open.spotify.com/track/298gs9ATwr2rD9tGYJKlQR
|
|
24
|
-
* spotify, artist: https://open.spotify.com/artist/0IIPgITtEO4JJfipw57KGv
|
|
25
|
-
|
|
26
|
-
Version 1.0.1—16 July 2017
|
|
27
|
-
|
|
28
|
-
Bugfix: tweet ID is now correctly parsed from the link.
|
|
29
|
-
|
|
30
|
-
Version 1.0.0—16 July 2017
|
|
31
|
-
|
|
32
|
-
Twitter support. Doesn't actually use oEmbed, because the Twitter SDK
|
|
33
|
-
handles everything for us. Oh well.
|
|
34
|
-
|
|
35
|
-
* twitter, single tweet: https://twitter.com/scrollytelling/status/885128273239396352
|