module Zresume::Printable
Public Instance Methods
file_exit?(format = 'yaml')
click to toggle source
# File lib/zresume/printable.rb, line 14 def file_exit?(format = 'yaml') #pending end
to_file(format = 'yaml')
click to toggle source
# File lib/zresume/printable.rb, line 6 def to_file(format = 'yaml') file_name = "#{name}.#{format}" File.open(file_name, 'w') do |out| out.puts self.to_yaml end #pending end
to_html()
click to toggle source
# File lib/zresume/printable.rb, line 18 def to_html #pending end
to_json()
click to toggle source
# File lib/zresume/printable.rb, line 21 def to_json #pending end