No commit activity in last 3 years
No release in over 3 years
A thor sub-command to install thor tasks from gists
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0
 Project Readme

thor-install-gist

A thor sub-command to install thor tasks from gists

Installation

Just install it yourself as:

$ gem install thor-install-gist

Then run below as guide:

$ thor-install-gist-init

Command will be installed into your $HOME/.thor.

Using with bundler

When you use bundler and Gemfile in your project, thor command will automatically load the Gemfile.

So if you want to use thor-install-gist command in your project, you must explicitly add below:

gem 'thor-install-gist'

Otherwise you can't load necessary 'thor-install-gist' file...

Usage

If you have installed then run below:

$ thor install:gist GIST_ID

GIST_ID should be a Gist's ID (your 123456), or URL can be used (https://gist.github.com/123456) for copying and pasting

Options --as and --force can be used as you do thor install

License

See LICENSE.txt

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request