Sha256: b78a3e1d21e77f1af0c28a133132df73d279e8de5d04cf1afed1ce2a13da6c35

Contents?: true

Size: 414 Bytes

Versions: 1

Compression:

Stored size: 414 Bytes

Contents

module IndexHtml
  class Main
    class << self
      def run(options = {})
        files = CodeLister.files options || []
        unless files.empty?
          puts "FYI: your options #{options}"
          IndexHtml.htmlify files, options
          puts "FYI: your result is in #{options[:output]}"
        else
          puts "No match found for your options :#{options}"
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
index_html-0.0.7 lib/index_html/main.rb