aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_file
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2017-07-01 12:10:22 +0200
committerDavid Heinemeier Hansson <david@loudthinking.com>2017-07-01 12:10:22 +0200
commitea429eaa14cfb04f931053256624a8e7c820ca33 (patch)
treef8eebbfbc1c2bfe2cfd011453748d8cc1bdc1398 /lib/active_file
parent4038bda96bba66f64f8f1322e031eefc65616c58 (diff)
downloadrails-ea429eaa14cfb04f931053256624a8e7c820ca33.tar.gz
rails-ea429eaa14cfb04f931053256624a8e7c820ca33.tar.bz2
rails-ea429eaa14cfb04f931053256624a8e7c820ca33.zip
Implied well enough
Diffstat (limited to 'lib/active_file')
-rw-r--r--lib/active_file/site.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/active_file/site.rb b/lib/active_file/site.rb
index d7035a3f09..2a9043567c 100644
--- a/lib/active_file/site.rb
+++ b/lib/active_file/site.rb
@@ -28,11 +28,11 @@ class ActiveFile::Site
end
- def copy(from_key:, to_key:)
+ def copy(from:, to:)
raise NotImplementedError
end
- def move(from_key:, to_key:)
+ def move(from:, to:)
raise NotImplementedError
end
end