Coding with headphones
Jul 11, 2008
8:20pm
More On Tumblr4Rails
So, I’m nearing completion of my Tumblr4Rails plugin. So far, I’m really happy with it. It supports all aspects of the Tumblr API - including multiform data uploading. This means that you can browse for an audio, video or image file and upload it to Tumblr as a post. Additionally, you can create any other type of post with little or no error. It’s as simple as:
post = Tumblr4Rails::RegularPost.new(:title => "Something", :body => "The body")
post.save!
-or-
posts = Tumblr4Rails::TumblrReader.link_posts(:limit => 10)
Obviously, there is much more. You can also check to see if a user is authorized to use Tumblr, whether a user can upload audio, video, etc.
I will be releasing it soon. For now, I’m test driving it in a couple of applications to ensure that it’s relatively stable.
Page 1 of 1