Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 1.27 KB

README.md

File metadata and controls

42 lines (29 loc) · 1.27 KB

Micro Cutter


Create the base files needed for a micro gem (potentially stored in a gist).

Usage

Call the executable, passing a camel cased class name:

micro-cutter ActsAsBoolean

This creates boilerplate files (overwriting any already there):

  • README.md
  • acts_as_boolean.gemspec
  • acts_as_boolean.rb
  • acts_as_boolean_spec.rb

Using a Gist to store your MicroGem

Head to gist.github.com and create a gist:

  • Give it a good name
  • Set the filename to README.md
  • Add some dummy content
  • Click "Create Public Gist" (or private if you have trouble sharing)

Update the gist from your new MicroGem:

git clone git@gist.github.com:YOUR_GIST_ID.git YOUR_DESIRED_FOLDER_NAME
cd YOUR_DESIRED_FOLDER_NAME
micro-cutter YourClassName
git add .
git commit -v
git push origin master

Credits