README.md in blobby-1.0.1 vs README.md in blobby-1.1.0
- old
+ new
@@ -37,7 +37,18 @@
# fake success
Blobby::FakeSuccessStore.new
Other gems provide additional implementations:
- # gem "blobby-s3"
- Blobby::S3Store.new("mybucket")
+ * ["blobby-s3"](https://github.com/realestate-com-au/blobby-s3)
+
+`Blobby.store` provides a convenient way to construct an appropriate
+implementation, given a URI (or psuedo-URI):
+
+ Blobby.store("file:///tmp")
+ # => #<Blobby::FilesystemStore ...>
+
+ Blobby.store("mem:")
+ # => #<Blobby::InMemoryStore ...>
+
+ Blobby.store("http://storage.com/mystuff/")
+ # => #<Blobby::HttpStore ...>