Class: ActiveFile::Base
Instance Attribute Summary
#attributes
Class Method Summary
collapse
auto_assign_fields, base_class, configuration_for_custom_finder, count, create, create!, data=, define_custom_find_all_method, define_custom_find_method, define_getter_method, define_interrogator_method, define_setter_method, #eql?, field, fields, find, find_by_id, #hash, #id, #id=, #initialize, insert, method_missing, #new_record?, next_id, #readonly?, respond_to?, #save, #to_param, transaction, #valid?
Class Method Details
.all ⇒ Object
8
9
10
11
|
# File 'lib/active_file/base.rb', line 8
def all
reload unless data_loaded
super
end
|
.delete_all ⇒ Object
13
14
15
16
|
# File 'lib/active_file/base.rb', line 13
def delete_all
self.data_loaded = true
super
end
|
.extension ⇒ Object
41
42
43
|
# File 'lib/active_file/base.rb', line 41
def extension
raise "Override Me"
end
|
.full_path ⇒ Object
35
36
37
38
39
|
# File 'lib/active_file/base.rb', line 35
def full_path
root_path = read_inheritable_attribute(:root_path) || Dir.pwd
filename = read_inheritable_attribute(:filename) || name.tableize
File.join(root_path, "#{filename}.#{extension}")
end
|
.load_file ⇒ Object
31
32
33
|
# File 'lib/active_file/base.rb', line 31
def load_file
raise "Override Me"
end
|
.reload(foo = true) ⇒ Object
18
19
20
21
|
# File 'lib/active_file/base.rb', line 18
def reload(foo = true)
self.data_loaded = true
self.data = load_file
end
|
.set_filename(name) ⇒ Object
23
24
25
|
# File 'lib/active_file/base.rb', line 23
def set_filename(name)
write_inheritable_attribute :filename, name
end
|
.set_root_path(path) ⇒ Object
27
28
29
|
# File 'lib/active_file/base.rb', line 27
def set_root_path(path)
write_inheritable_attribute :root_path, path
end
|