README.md in tumblr_wrapper-0.4.0 vs README.md in tumblr_wrapper-0.4.1
- old
+ new
@@ -87,9 +87,21 @@
response.status.should == 200
response.message.should == "OK"
response.blog[:title].should == "Your Blog Title"
response.posts.should be_a(Array)
+Additional:
+The date format tumblr expects when you are scheduling a post or updating the date the post was created is a lambda defined here:
+
+ TumblrWrapper.date_format
+
+In Rails 3, for example, you may want to set it up in an initializer:
+
+ Time::DATE_FORMATS[:tumblr] = TumblrWrapper.date_format
+
+ Time.now.to_s(:tumblr)
+ => "2012-08-10 19:12:32 GMT"
+
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)