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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d46fa427ad2b24f048b448acbe2238b905147666
4
- data.tar.gz: b7f1b6dd5b7a9de8de34aa7963860160c608c222
3
+ metadata.gz: 22abe83a08a4a9ff24d0b544f51cc67de81d1dcf
4
+ data.tar.gz: 5890cc0143913b50d951c716c0380bbe67bae941
5
5
  SHA512:
6
- metadata.gz: a26a811b1d2ce1a77f4bde517cca85c3dc30a1a65c1f012cbe963c8ceb6592305b40b369d23cd947b288829fe956b86e5218eef86eb8004d932c705a3f99a7ca
7
- data.tar.gz: e282608ee9c2e10b5c49362e3016f3c056c06dc985c6c5849d865406b2835f9bca1fe0413eb6223c480037ccf08357e01ad7e204c3fbbd0ee5f80534834d5c17
6
+ metadata.gz: fbea1867b0fd580ed398cd0fe1fd6f9a038c9a8343ebd2a19c2507b9c127e52526eef002e6f9f6e03e39bf3de430650e62e6a5c09f1ee509a910144a4b154b8d
7
+ data.tar.gz: 458b7d342ac70fcdea0e20a0f48d6fa74f3048585de4466593729e91fd9ea9ff72cf6b6fd82d7cdb3d07d81a37dace36716195d4cdc4f5c4a6694510ab5b0508
data/.gitignore CHANGED
@@ -18,3 +18,4 @@ Session.vim
18
18
  .rspec_status
19
19
 
20
20
  jekyll-tweetsert*.gem
21
+ Gemfile.lock
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-cache`. You may delete this if you encounter problems that you think might be related to the cache.
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 3 as necessary
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.
@@ -1,7 +1,7 @@
1
1
 
2
2
  lib = File.expand_path("../lib", __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require "jekyll/tweetsert/version"
4
+ require "jekyll-tweetsert/version"
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "jekyll-tweetsert"
@@ -1,4 +1,4 @@
1
- require "jekyll/tweetsert/version"
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
- APICache.store = Moneta.new(:File, dir: './.tweetsert-cache')
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?
@@ -1,5 +1,5 @@
1
1
  module Jekyll
2
2
  module Tweetsert
3
- VERSION = "1.1.0"
3
+ VERSION = "1.1.1"
4
4
  end
5
5
  end
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.0
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: 2017-12-19 00:00:00.000000000 Z
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/tweetsert.rb
89
- - lib/jekyll/tweetsert/version.rb
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