We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e5a7a4 commit 4c5c547Copy full SHA for 4c5c547
2 files changed
TODO.md
@@ -0,0 +1,3 @@
1
+Improve Interface for #create_update to not need :body in args
2
+Add error if message is obviously above 140 char
3
+- Extra feature to shorten web links to length used by t.co
bin/demo-buffer
@@ -0,0 +1,7 @@
+require 'buff' # Gem require
+require 'pry' # Pry for exploring and demo
+
4
+client = Buff::Client.new(Buff::ACCESS_TOKEN) # Setup a client instance
5
+id = client.profiles[2].id # Grab a profile id
6
+updates = client.updates_by_profile_id(id, status: :sent) # Gather a set of updates
7
+binding.pry # Enter pry demo, let's do it.
0 commit comments