Class: ActiveYaml::Base

Inherits:
ActiveFile::Base show all
Defined in:
lib/active_yaml/base.rb

Instance Attribute Summary

Attributes inherited from ActiveHash::Base

#attributes

Class Method Summary collapse

Methods inherited from ActiveFile::Base

all, delete_all, full_path, reload, set_filename, set_root_path

Methods inherited from ActiveHash::Base

#[], #[]=, all, auto_assign_fields, base_class, #cache_key, 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, delete_all, #destroyed?, #eql?, #errors, field, field_names, fields, find, find_by_id, has_instance_method?, has_singleton_method?, #hash, #id, #id=, #initialize, insert, mark_clean, mark_dirty, #marked_for_destruction?, method_missing, #new_record?, next_id, #persisted?, #readonly?, reload, respond_to?, #save, the_meta_class, #to_param, transaction, #valid?, validate_field

Constructor Details

This class inherits a constructor from ActiveHash::Base

Class Method Details

.extensionObject



17
18
19
# File 'lib/active_yaml/base.rb', line 17

def extension
  "yml"
end

.load_fileObject



5
6
7
8
9
10
11
# File 'lib/active_yaml/base.rb', line 5

def load_file
  if (data = raw_data).is_a?(Array)
    data
  else
    data.values
  end
end

.raw_dataObject



13
14
15
# File 'lib/active_yaml/base.rb', line 13

def raw_data
  YAML.load_file(full_path)
end