Sha256: 94920c8757d76cc380a33894ba4652deb1de33a631a2a7d5849050a608be99b3

Contents?: true

Size: 972 Bytes

Versions: 3

Compression:

Stored size: 972 Bytes

Contents

require_relative '../args/import'
require_relative '../import/xlsx_importer'
require_relative '../errors_warnings/warn_unexpected_params'

module Squib
  # DSL method. See http://squib.readthedocs.io
  def xlsx(opts = {}, &block)
    DSL::Xlsx.new(__callee__).run(opts, &block)
  end
  module_function :xlsx

  class Deck
    # DSL method. See http://squib.readthedocs.io
    def xlsx(opts = {}, &block)
      DSL::Xlsx.new(__callee__).run(opts, &block)
    end
  end

  module DSL
    class Xlsx
      include WarnUnexpectedParams
      attr_reader :dsl_method, :block

      def initialize(dsl_method)
        @dsl_method = dsl_method
      end

      def self.accepted_params
        %i( file sheet strip explode )
      end

      def run(opts,&block)
        warn_if_unexpected opts
        import_args = Args.extract_import opts
        importer = Squib::Import::XlsxImporter.new
        importer.import_to_dataframe(import_args, &block)
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
squib-0.19.0 lib/squib/dsl/xlsx.rb
squib-0.19.0b lib/squib/dsl/xlsx.rb
squib-0.19.0a lib/squib/dsl/xlsx.rb