jekyll-tweetsert 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/README.md +8 -2
- data/jekyll-tweetsert.gemspec +1 -1
- data/lib/{jekyll/tweetsert.rb → jekyll-tweetsert.rb} +3 -2
- data/lib/{jekyll/tweetsert → jekyll-tweetsert}/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 22abe83a08a4a9ff24d0b544f51cc67de81d1dcf
|
4
|
+
data.tar.gz: 5890cc0143913b50d951c716c0380bbe67bae941
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fbea1867b0fd580ed398cd0fe1fd6f9a038c9a8343ebd2a19c2507b9c127e52526eef002e6f9f6e03e39bf3de430650e62e6a5c09f1ee509a910144a4b154b8d
|
7
|
+
data.tar.gz: 458b7d342ac70fcdea0e20a0f48d6fa74f3048585de4466593729e91fd9ea9ff72cf6b6fd82d7cdb3d07d81a37dace36716195d4cdc4f5c4a6694510ab5b0508
|
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -15,6 +15,8 @@ To organize your tweet-posts, Tweetsert can automatically assign a category and/
|
|
15
15
|
|
16
16
|
## What's new?
|
17
17
|
|
18
|
+
*v1.1.1* Change cache location, allow inclusion in `_config.yml`
|
19
|
+
|
18
20
|
*v1.1.0* Added `prefix` and `suffix` options to `embed`
|
19
21
|
|
20
22
|
## Installation
|
@@ -269,7 +271,7 @@ tweetsert:
|
|
269
271
|
|
270
272
|
## Cache
|
271
273
|
|
272
|
-
*Tweetsert* caches Twitter's timelines and oEmbed results in a hidden folder, `.tweetsert
|
274
|
+
*Tweetsert* caches Twitter's timelines and oEmbed results in a hidden folder in your home, `.jekyll-plugins/jekyll-tweetsert`. You may delete this if you encounter problems that you think might be related to the cache.
|
273
275
|
|
274
276
|
## Further configuration
|
275
277
|
|
@@ -331,7 +333,7 @@ See the [author's blog](https://ibrado.org) for a demo.
|
|
331
333
|
1. Commit your changes (`git commit -m "Bug fix"`)
|
332
334
|
1. Build it (`gem build jekyll-tweetsert.gemspec`)
|
333
335
|
1. Install and test it (`gem install ./jekyll-tweetsert-*.gem`)
|
334
|
-
1. Repeat from step
|
336
|
+
1. Repeat from step 5 as necessary
|
335
337
|
1. Push the branch (`git push -u origin my-bug-fix`)
|
336
338
|
1. Create a Pull Request, making sure to select the proper branch, e.g. `my-bug-fix` (via https://github.com/*your_user_name*/jekyll-tweetsert)
|
337
339
|
|
@@ -347,3 +349,7 @@ Everyone interacting in the Jekyll::Tweetsert project's codebases, issue tracker
|
|
347
349
|
## Also by the author
|
348
350
|
|
349
351
|
[Jekyll Stickyposts Plugin](https://github.com/ibrado/jekyll-stickyposts) - Move/pin posts tagged `sticky: true` before all others. Sorting on custom fields supported, collection and paginator friendly.
|
352
|
+
|
353
|
+
[Jekyll::Paginate::Content](https://github.com/ibrado/jekyll-tweetsert) - Split your Jekyll pages, posts, etc. into multiple pages automatically. Single-page view, pager, SEO support, self-adjusting links, multipage-aware Table Of Contents.
|
354
|
+
|
355
|
+
[Jekyll::ViewSource](https://github.com/ibrado/jekyll-viewsource) - Generate pretty or plain HTML and/or Markdown source code pages.
|
data/jekyll-tweetsert.gemspec
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
require "jekyll
|
1
|
+
require "jekyll-tweetsert/version"
|
2
2
|
require 'net/http'
|
3
3
|
require "uri"
|
4
4
|
require "cgi"
|
@@ -136,7 +136,8 @@ module Jekyll
|
|
136
136
|
|
137
137
|
@access_token = ENV['JTP_ACCESS_TOKEN'] || timeline["access_token"]
|
138
138
|
|
139
|
-
|
139
|
+
tmpdir = File.join(Dir.home, '.jekyll-plugins', 'jekyll-tweetsert', 'cache')
|
140
|
+
APICache.store = Moneta.new(:File, dir: tmpdir)
|
140
141
|
|
141
142
|
no_newer = timeline['no_newer'] || timeline['no_newer'].nil?
|
142
143
|
no_older = timeline['no_older'] || timeline['no_older'].nil?
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-tweetsert
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alex Ibrado
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-01-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -85,8 +85,8 @@ files:
|
|
85
85
|
- README.md
|
86
86
|
- bin/setup
|
87
87
|
- jekyll-tweetsert.gemspec
|
88
|
-
- lib/jekyll
|
89
|
-
- lib/jekyll
|
88
|
+
- lib/jekyll-tweetsert.rb
|
89
|
+
- lib/jekyll-tweetsert/version.rb
|
90
90
|
homepage: https://github.com/ibrado/jekyll-tweetsert
|
91
91
|
licenses:
|
92
92
|
- MIT
|