Class: ActiveYaml::Base

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

Instance Attribute Summary

Attributes inherited from ActiveHash::Base

#attributes

Class Method Summary collapse

Methods included from ActiveFile::HashAndArrayFiles

raw_data

Methods inherited from ActiveFile::Base

actual_root_path, delete_all, full_path, reload, set_filename, set_root_path

Methods included from ActiveFile::MultipleFiles

full_paths, #multiple_files?, multiple_files?, set_filenames, #use_multiple_files

Methods inherited from ActiveHash::Base

#[], #[]=, add_to_record_index, all, auto_assign_fields, base_class, #cache_key, cache_key, compute_type, configuration_for_custom_finder, count, create, create!, data, data=, define_custom_find_all_method, define_custom_find_method, define_getter_method, define_interrogator_method, define_setter_method, delete_all, #destroyed?, #eql?, #errors, exists?, 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?, pluralize_table_names, primary_key, #readonly?, record_index, reload, reset_record_index, respond_to?, #save, the_meta_class, #to_param, transaction, #valid?, validate_field, validate_unique_id, where

Constructor Details

This class inherits a constructor from ActiveHash::Base

Class Method Details

.extensionObject



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

def extension
  "yml"
end

.load_fileObject



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

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