1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Require what we need

This commit is contained in:
David Heinemeier Hansson 2017-07-01 00:14:22 +02:00
parent a2ac7af389
commit c39e176eb5
2 changed files with 8 additions and 1 deletions

View file

@ -26,5 +26,7 @@ class ActiveFile::Site
def move(from_key:, to_key:)
end
end
module ActiveFile::Sites
end

View file

@ -1,3 +1,8 @@
require "active_file/site"
require "fileutils"
require "pathname"
class ActiveFile::Sites::DiskSite < ActiveFile::Site
attr_reader :root