tumblr_draftking 0.8.0 → 0.8.1
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 +3 -0
- data/README.md +3 -5
- data/lib/draftking/cli/cli_helpers.rb +3 -1
- data/lib/draftking/posts/post.rb +6 -2
- data/lib/draftking/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b83cb67065dc499c94b9529b1ecf3924d010c678
|
4
|
+
data.tar.gz: 44294c98f5823ac5031648a6f7a9148d77edf3ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4ef6cb3e39874d16615ac7aca1c3b1edef1ee8e42df977f7ee68adaadb36ef80c5b062e52033f88354d972f90f8f2e01c4f0c561c156d3dd10834ba233ca119
|
7
|
+
data.tar.gz: cab87edd90c5594040c2ddb7931f155f7c32bf927696d70d857cf00156e161c96dc33dfe23e895431e7f5f3ae040e2a144b7a7c78c8ff4a49c03f2fec71fb216
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,7 @@
|
|
1
1
|
# Changelog :: tumblr_draftking
|
2
|
+
## Version 0.8.1
|
3
|
+
+ Bugfix: Commands applied to queued posts resulted in post being published.
|
4
|
+
|
2
5
|
## Version 0.8.0
|
3
6
|
+ DK#post_operation now returns both modified count and modified posts. Use `post_operation(opts)[0]` for previous behavior.
|
4
7
|
+ Access all Tumblr Post data via DK::Post. i.e. `DK::Post.new(post_data).photos.first.original_size.url`
|
data/README.md
CHANGED
@@ -5,17 +5,15 @@ DraftKing is not associated with Tumblr
|
|
5
5
|
[](https://codeclimate.com/github/meissadia/tumblr_draftking/coverage)
|
6
6
|
|
7
7
|
DraftKing for Tumblr takes the hassle out of managing your draft queue!
|
8
|
-
+ **(New!) Save and name your own DK commands!**
|
8
|
+
+ **(New!) Save and name your own [DK commands](#custom-commands)!**
|
9
9
|
+ **Automate the addition of comments and tags.**
|
10
10
|
+ **Strip away old comments.**
|
11
11
|
+ **Easily replenish your queue.**
|
12
12
|
+ **Randomize post order to add variety.**
|
13
13
|
+ **Manage multiple accounts.**
|
14
14
|
|
15
|
-
Version 0.8.
|
16
|
-
+
|
17
|
-
+ Access all Tumblr Post data via DK::Post. i.e. `DK::Post.new(post_data).photos.first.original_size.url`
|
18
|
-
+ Post.image (first photo, original size), Post.alt_sizes, Post.photos (array of Photo structs)
|
15
|
+
Version 0.8.1
|
16
|
+
+ Bugfix: Commands applied to queued posts resulted in post being published.
|
19
17
|
|
20
18
|
+ Please report any [issues] you encounter!
|
21
19
|
+ [Change Log](./CHANGELOG.md)
|
@@ -1,7 +1,9 @@
|
|
1
1
|
module DK
|
2
2
|
# Helpers for Command Line Interface
|
3
3
|
module CliHelpers
|
4
|
-
VALID_OPTS = [:simulate, :limit, :blog, :key_text, :comment, :add_tags,
|
4
|
+
VALID_OPTS = [:simulate, :limit, :blog, :key_text, :comment, :add_tags,
|
5
|
+
:mute, :publish, :keep_tags, :keep_comments, :source,
|
6
|
+
:config].freeze
|
5
7
|
|
6
8
|
private
|
7
9
|
|
data/lib/draftking/posts/post.rb
CHANGED
@@ -23,7 +23,6 @@ module DK
|
|
23
23
|
# Direct map
|
24
24
|
@id = @data.id
|
25
25
|
@reblog_key = @data.reblog_key
|
26
|
-
@state = @data.state
|
27
26
|
@summary = @data.summary
|
28
27
|
@tags = @data.tags
|
29
28
|
|
@@ -105,7 +104,7 @@ module DK
|
|
105
104
|
res = client.edit @blog_url,
|
106
105
|
id: id,
|
107
106
|
reblog_key: @reblog_key,
|
108
|
-
state:
|
107
|
+
state: validate_state,
|
109
108
|
attach_reblog_tree: @keep_tree,
|
110
109
|
tags: @tags.join(','),
|
111
110
|
caption: @comment
|
@@ -177,5 +176,10 @@ module DK
|
|
177
176
|
def csv_to_a(csv)
|
178
177
|
csv.split(',')
|
179
178
|
end
|
179
|
+
|
180
|
+
def validate_state
|
181
|
+
raise 'Invalid Post.state' unless VALID_STATE.include?(@state)
|
182
|
+
@state
|
183
|
+
end
|
180
184
|
end
|
181
185
|
end
|
data/lib/draftking/version.rb
CHANGED
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.
|
4
|
+
version: 0.8.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: 2016-10-
|
11
|
+
date: 2016-10-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tumblr_client
|