class Gemat::Gemat
Public Class Methods
run(options = {}, &block)
click to toggle source
# File lib/gemat.rb, line 24 def self.run(options = {}, &block) dsl = InDsl.new(options[:input]) outdsls = OutDsl.create(options[:columns], all: options[:all]) fetcher = Fetcher.new(dsl) fetcher.run block.call(fetcher.gems, outdsls) end