aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_file/store.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2017-06-30 19:12:58 +0200
committerDavid Heinemeier Hansson <david@loudthinking.com>2017-06-30 19:12:58 +0200
commitdd50144bcd4dbd605995123ab5afc99e40e9a630 (patch)
tree81698d44cf2f9dd62e24a95f945f6904689be2f2 /lib/active_file/store.rb
downloadrails-dd50144bcd4dbd605995123ab5afc99e40e9a630.tar.gz
rails-dd50144bcd4dbd605995123ab5afc99e40e9a630.tar.bz2
rails-dd50144bcd4dbd605995123ab5afc99e40e9a630.zip
First sketching
Diffstat (limited to 'lib/active_file/store.rb')
-rw-r--r--lib/active_file/store.rb26
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/active_file/store.rb b/lib/active_file/store.rb
new file mode 100644
index 0000000000..bdac4eab9e
--- /dev/null
+++ b/lib/active_file/store.rb
@@ -0,0 +1,26 @@
+class ActiveFile::Store
+ def upload(key, data)
+ end
+
+ def download(key)
+ end
+
+ def delete(key)
+ end
+
+ def exists?(key)
+ end
+
+ def url(key)
+ end
+
+ def checksum(key)
+ end
+
+
+ def copy(from_key:, to_key:)
+ end
+
+ def move(from_key:, to_key:)
+ end
+end