Sha256: f0ddbe5f8d316e5c3d7b3e0e1db44ed82533681767b4cf8b6bb1dcf46b20b95a
Contents?: true
Size: 283 Bytes
Versions: 14
Compression:
Stored size: 283 Bytes
Contents
# frozen_string_literal: true module JekyllImport module Importers Dir.chdir(File.expand_path(File.join("importers"), __dir__)) do Dir.entries(".").each do |f| next if f[0..0].eql?(".") require "jekyll-import/importers/#{f}" end end end end
Version data entries
14 entries across 14 versions & 1 rubygems