Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@Shekharrajak
Created March 22, 2018 10:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Shekharrajak/ffc729a367e5ca7458e0e7416987e438 to your computer and use it in GitHub Desktop.
Save Shekharrajak/ffc729a367e5ca7458e0e7416987e438 to your computer and use it in GitHub Desktop.
Adapter having basic methods
module Daru
module View
module Adapter
module xyzAdapter
extend self # rubocop:disable Style/ModuleFunction
def init(data, options)
# TODO
end
def export_html_file(plot, path)
# TODO
end
def show_in_iruby(plot)
# TODO
end
def init_script
# TODO
end
def generate_body(plot)
# TODO
end
def init_iruby
# TODO
end
private
def multi_dimension_check(arr)
# TODO
end
# other private methods
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment