0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Creates gem scaffolding, complete with Gemfile and README
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.10
~> 3.0
~> 0.11
~> 0.8
 Project Readme

gemstrapper

Build Status

gemstrapper is a small gem that can create directories and common files for building gems.

Installing

To install gemstrapper use the following command:

$ gem install gemstrapper

Usage

To use gemstrapper run the init <gem_name> command, which will generate the folders and files in the current working directory

$ gemstrapper init my-gem
my-gem/Gemfile created
my-gem/my-gem.gemspec created
my-gem/lib/my-gem/version.rb created

The application will generate the basic scaffolding for a gem as well as common files, such as the gemspec and Gemfile. The top level module is created by converting the gem name into valid Ruby syntax for constants, eg my-gem will become MyGem

To configure the gem to have an executable component you can add the -e or --executable argument to the init subcommand

$ gemstrapper init my-gem -e
...
my-gem/bin/my_gem created

License

gemstrapper is licensed under the MIT license