tumblr_draftking 0.8.3 → 0.8.3.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: 3c1b27da4e0f56a4f0ef9b3cd6cd64c27b0e4525
4
- data.tar.gz: 035d3a92cc389359be66854971196ce2d7d0729a
3
+ metadata.gz: a84fbff38a43cc1fd25c685987816d31740f5004
4
+ data.tar.gz: 138e73cb0fe57bc992326af67a8a27c1bfe03605
5
5
  SHA512:
6
- metadata.gz: c7e858d13b0fa24686467464678396cbacefcf6a502fa4fad696d2b4af73d52e176ae01bb1614c01db0d240f940efa1c05e5a70437542e59b1dc55c11b8495d5
7
- data.tar.gz: 2697b4e18bf633f64e706a690c1747e8da52e973046fc208ab1a346b8e8a8ad15b02ad840cbde0d52f11004cdeaf8b73d86558ef0f0b2ab63591d1e9f5499f68
6
+ metadata.gz: c774c61c855248ba16a2e7d82103d9f33ad0a5cc09b489d371186c1383ba32c555b77ea93dd7837935869b4e7fd8f04e2bd6042af0b2e89f022ba8f72dd52846
7
+ data.tar.gz: b3926738e0d46b55264eb20f7f2639c194c7ae5590fad9c6debb0bb5cb1d2a6e6a5e898219a008ce8ee4948268519808160ff30971f2b4db115d80931bb10356
data/CHANGELOG.md CHANGED
@@ -1,4 +1,7 @@
1
1
  # Changelog :: tumblr_draftking
2
+ ## Version 0.8.3.1
3
+ + Fix: Update @blog_url in DK::Client#process_options to target posts for a blog_name modified after DK::Client creation.
4
+
2
5
  ## Version 0.8.3
3
6
  + New! (Auto-Poster) Publish up to 200 posts per 24 hours!
4
7
 
data/README.md CHANGED
@@ -1,11 +1,12 @@
1
1
  <img style='width:100%' src='./readme/logo-draftking.png'/>
2
2
  DraftKing is not associated with Tumblr
3
+
3
4
  [![Gem Version](https://badge.fury.io/rb/tumblr_draftking.svg)](https://badge.fury.io/rb/tumblr_draftking)
4
5
  [![Code Climate](https://codeclimate.com/github/meissadia/tumblr_draftking/badges/gpa.svg)](https://codeclimate.com/github/meissadia/tumblr_draftking)
5
6
  [![Test Coverage](https://codeclimate.com/github/meissadia/tumblr_draftking/badges/coverage.svg)](https://codeclimate.com/github/meissadia/tumblr_draftking/coverage)
6
7
 
7
8
  DraftKing for Tumblr takes the hassle out of managing your draft queue!
8
- + **(New!) Save and name your own [DK commands](#custom-commands)!**
9
+ + **(New!) [Auto-Poster](#auto-poster): Publish up to 200 posts a day!**
9
10
  + **Save and name your own [DK commands](#custom-commands)!**
10
11
  + **Automate the addition of comments and tags.**
11
12
  + **Strip away old comments.**
@@ -13,8 +14,8 @@ DraftKing for Tumblr takes the hassle out of managing your draft queue!
13
14
  + **Randomize post order to add variety.**
14
15
  + **Manage multiple accounts.**
15
16
 
16
- Version 0.8.3
17
- + New! (Auto-Poster) Publish up to 200 posts per 24 hours!
17
+ Version 0.8.3.1
18
+ + Fix: Update @blog_url in DK::Client#process_options to target posts for a blog_name modified after DK::Client creation.
18
19
 
19
20
  + Please report any [issues] you encounter!
20
21
  + [Change Log](./CHANGELOG.md)
@@ -47,6 +47,7 @@ module DK
47
47
  @offset = options[:offset] || 0
48
48
  @limit = options[:limit]
49
49
  @type = options[:type]
50
+ @blog_url = tumblr_url(@blog_name)
50
51
  end
51
52
 
52
53
  # Configure tumblr_client gem
@@ -35,6 +35,7 @@ module DK
35
35
  # Construct Tumblr URL string
36
36
  # @param blog_name [String] Blog Name
37
37
  def tumblr_url(blog_name)
38
+ return '' unless blog_name
38
39
  blog_name += '.tumblr.com' unless blog_name.include?('.')
39
40
  blog_name
40
41
  end
@@ -1,3 +1,3 @@
1
1
  module DK
2
- VERSION = '0.8.3'.freeze
2
+ VERSION = '0.8.3.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tumblr_draftking
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.3
4
+ version: 0.8.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Meissa Dia
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-02-15 00:00:00.000000000 Z
11
+ date: 2017-05-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tumblr_client