We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1fd922 commit 8c7fe93Copy full SHA for 8c7fe93
1 file changed
lib/csv2db/config.rb
@@ -4,11 +4,15 @@ module Csv2db
4
class Config
5
include Singleton
6
7
- attr_writer :storage_adapter
+ attr_writer :storage_adapter, :local_storage_host
8
9
def storage_adapter
10
@storage_adapter ||= :dragonfly
11
ActiveSupport::StringInquirer.new(@storage_adapter.to_s)
12
end
13
+
14
+ def local_storage_host
15
+ @local_storage_host ||= ''
16
+ end
17
18
0 commit comments