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:
parent
a2ac7af389
commit
c39e176eb5
2 changed files with 8 additions and 1 deletions
|
@ -26,5 +26,7 @@ class ActiveFile::Site
|
|||
|
||||
def move(from_key:, to_key:)
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
module ActiveFile::Sites
|
||||
end
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
require "active_file/site"
|
||||
|
||||
require "fileutils"
|
||||
require "pathname"
|
||||
|
||||
class ActiveFile::Sites::DiskSite < ActiveFile::Site
|
||||
attr_reader :root
|
||||
|
||||
|
|
Loading…
Reference in a new issue