n13org/jekyll-kw-stackexchange

View on GitHub
.fttemplates/Create RubyGem project structure/lib/[ProjectName | lowercase?paramcase].rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Jekyll
  module <Company | pascalcase>
    module <Project | pascalcase>
      class Error < StandardError; end
      class Exception < Gem::Exception; end

      # Your code goes here...
    end
  end
end