Sha256: 27f9695bac266633ad1f09af8871c2db427355c59cbb685d06289d0ad3781fcd
Contents?: true
Size: 304 Bytes
Versions: 2
Compression:
Stored size: 304 Bytes
Contents
# frozen_string_literal: true module Speek require "active_support/inflector" class UnknownColumnTypeError < StandardError; end module Export # Base class class Base attr_accessor :app def initialize(app) @app = app end def export; end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
speek-0.1.1 | lib/speek/export/base.rb |
speek-0.1.0 | lib/speek/export/base.rb |