A gem to generate the scaffolding of another gem
take laziness to another level because why not?
- A folder with files below:
no-scope
├── no-scope.gemspec
└── lib
└── no-scope.rb
- A empty class with camelcase gem_name (/lib/no-scope.rb)
# frozen_string_literal: true
class NoScope
end
- A default gemspec with TODOs
Gem::Specification.new do |s|
s.name = "<%= no-scope %>"
s.version = '0.0.1'
s.summary = "<%= no-scope %>"
s.description = "[TODO]"
s.authors = [""]
s.email = ''
s.files = ["lib/<%= no-scope %>.rb"]
s.homepage = "[TODO]"
s.license = "<%= @license %>"
end