Class: Factbase::ToYAML
- Inherits:
-
Object
- Object
- Factbase::ToYAML
- Defined in:
- lib/factbase/to_yaml.rb
Overview
Instance Method Summary collapse
-
#initialize(fb) ⇒ ToYAML
constructor
Constructor.
-
#yaml ⇒ String
Convert the entire factbase into YAML.
Constructor Details
#initialize(fb) ⇒ ToYAML
Constructor.
40 41 42 |
# File 'lib/factbase/to_yaml.rb', line 40 def initialize(fb) @fb = fb end |
Instance Method Details
#yaml ⇒ String
Convert the entire factbase into YAML.
46 47 48 49 |
# File 'lib/factbase/to_yaml.rb', line 46 def yaml maps = Marshal.load(@fb.export) YAML.dump({ 'facts' => maps }) end |