pry-send_tweet.rb 0.5.0 → 0.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ed084e3b9fae0289169d8f868beb43339998d9d30349eacb5261979148721e56
4
- data.tar.gz: 31d443e012af14a5e9b7dcdb9ec9ccc49ab735cf710ab5f9f34a8f924cdbf46f
3
+ metadata.gz: f7a99a90f60dd7d07e5b521cd2ef09920aaff72ce65130d94807aaf25ae33d61
4
+ data.tar.gz: 5dd0ce3a096d264d434ba54f7bf93b1bc1343816040f9511edc4f473085711d6
5
5
  SHA512:
6
- metadata.gz: b8e7dcf4fb5561197b1f428c6f0e3af4690d12f00d5ba30a0bb086e0e6b2ffd9a9fb5221e595262cce3049fd447c13ec7653332b21abbe527cf105ceb5b8f3d1
7
- data.tar.gz: b2d006dc6fc9c62716b95ee382b5e6a9e2430e9a25bae531e90c1cd9f0e5b0a2ee77faa28d83577b9e05800e80661e7ec01e6f7ff9f7518f0b669871896ceeb8
6
+ metadata.gz: 2a23b1b28d2e34c67d74d4c1cc28f60244fcbd427ab0186ca9ea2a368605390604e1487913e64ceb653c56ab08947890dcde8f398151bd9057164fc09dc46ce5
7
+ data.tar.gz: 48f360e3b9d92047efb4b7939a206ac5fc6a9e7d248550e788f794492c8a5ebd6dd464349db5085d179eff8fc01bf7202eb31e8e8a696b88c6114dd0ef4c54bf
@@ -1,6 +1,11 @@
1
1
  # CHANGELOG
2
2
 
3
- ## master
3
+ ## v0.5.1
4
+
5
+ * Update an outdated description for the `read-tweets` command.
6
+
7
+ * Group the `send-tweet` command under the `Twitter` group, it was previously
8
+ grouped as '(other)'.
4
9
 
5
10
  ## v0.5.0
6
11
 
@@ -1,7 +1,7 @@
1
1
  class Pry::SendTweet::ReadTweets < Pry::SendTweet::BaseCommand
2
2
  DEFAULT_COUNT = 35
3
3
  match 'read-tweets'
4
- description "Read tweets from your timeline or the timeline of another user"
4
+ description "Read tweets"
5
5
  banner <<-B
6
6
  read-tweets [options]
7
7
 
@@ -1,5 +1,6 @@
1
1
  class Pry::SendTweet::SendTweetCommand < Pry::SendTweet::BaseCommand
2
2
  match 'send-tweet'
3
+ description 'Send a tweet'
3
4
  command_options argument_required: false
4
5
  banner <<-BANNER
5
6
  send-tweet [options]
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "pry-send_tweet.rb"
3
- spec.version = "0.5.0"
3
+ spec.version = "0.5.1"
4
4
  spec.authors = ["Robert Gleeson"]
5
5
  spec.email = "trebor.g@protonmail.com"
6
6
  spec.summary = "Extends the Pry REPL with the capabilities of a Twitter client."
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pry-send_tweet.rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Gleeson