# File lib/moneta/adapters/tdb.rb, line 11 def initialize(options) @backend = options[:backend] || begin raise ArgumentError, 'Option :file is required' unless file = options.delete(:file) ::TDB.new(file, options) end end