Sha256: 90c52c24d64f3c1762a41e21e27497890cae9515248eeb540ce8d0a397b6e7d8

Contents?: true

Size: 495 Bytes

Versions: 3

Compression:

Stored size: 495 Bytes

Contents

require 'csv'
require 'yaml'

require 'quandl/operation/qdformat/dump'
require 'quandl/operation/qdformat/load'
require 'quandl/operation/qdformat/node'

class Quandl::Operation::QDFormat
  class << self
    
    def load(input)
      Quandl::Operation::QDFormat::Load.from_string(input)
    end
    
    def load_file(file_path)
      Quandl::Operation::QDFormat::Load.from_file(input)
    end
    
    def dump(nodes)
      Quandl::Operation::QDFormat::Dump.nodes(nodes)
    end
    
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
quandl_operation-0.1.21 lib/quandl/operation/qdformat.rb
quandl_operation-0.1.20 lib/quandl/operation/qdformat.rb
quandl_operation-0.1.19 lib/quandl/operation/qdformat.rb