tumblr_draftking 0.8.1.1 → 0.8.2
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 +2 -2
- data/lib/draftking/posts.rb +1 -1
- 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: 08bda4d170ab1d6664dcfe307719fb93b5333834
|
|
4
|
+
data.tar.gz: 9562eab99483a7f2f543467a1a9b74d44aa98c54
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b2df414a2a33075a7583813bbbc555122ab44e62dbd2cecc8384b2d79c23f5f4ea5f5317fee0ea3b07d130c21b6a1a8ebd8d2b30caa0cc3551696c527c28719e
|
|
7
|
+
data.tar.gz: 3a278c7e01457b72067627a95aa1e299ecaac5b09c74fec151b08ff3de66c3f60cbd4817b1f7726ab5cca54b8f66a8d3e8d58acb0af236d2bbe9f984b05bb113
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -12,8 +12,8 @@ DraftKing for Tumblr takes the hassle out of managing your draft queue!
|
|
|
12
12
|
+ **Randomize post order to add variety.**
|
|
13
13
|
+ **Manage multiple accounts.**
|
|
14
14
|
|
|
15
|
-
Version 0.8.
|
|
16
|
-
+
|
|
15
|
+
Version 0.8.2
|
|
16
|
+
+ get_posts now returns FIFO order unless the shuffle option is enabled
|
|
17
17
|
|
|
18
18
|
+ Please report any [issues] you encounter!
|
|
19
19
|
+ [Change Log](./CHANGELOG.md)
|
data/lib/draftking/posts.rb
CHANGED
|
@@ -44,7 +44,7 @@ module DK
|
|
|
44
44
|
def setup_operation(options)
|
|
45
45
|
process_options(options)
|
|
46
46
|
act_on_blog(name: @blog_name)
|
|
47
|
-
posts = @shuffle ? get_posts.shuffle : get_posts
|
|
47
|
+
posts = @shuffle ? get_posts.reverse.shuffle : get_posts.reverse
|
|
48
48
|
work = posts_to_queue(posts)
|
|
49
49
|
reporter = options[:reporter] || DK::Reporter
|
|
50
50
|
[work, work.size, Queue.new, reporter]
|
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.2
|
|
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-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tumblr_client
|