Sha256: 8a2c5bc40d001192845a5a4fad9c5b48f640f2d2ad2d9c47775d6479e38f79fa

Contents?: true

Size: 528 Bytes

Versions: 5

Compression:

Stored size: 528 Bytes

Contents

$:.unshift File.dirname(__FILE__) # For use/testing when author gem is not installed

# Convenience method that will require all files in the given path
def require_all(path)
  glob = File.join(File.dirname(__FILE__), path, '*.rb')
  Dir[glob].each do |file|
    require file
  end
end

# stdlib

# 3rd party
require 'liquid'
require 'coderay'
require 'thor'
require 'kramdown'

# internals
require 'author/version'
require_all 'author/commands'
require_all 'author/plugins'
require_all 'author/exporters'

module Author
  
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
author-1.1.4.alpha lib/author.rb
author-1.1.3.alpha lib/author.rb
author-1.1.2.alpha lib/author.rb
author-1.1.1.alpha lib/author.rb
author-1.1.0.alpha lib/author.rb