Jist is a gem that allows you to publish a gist from Ruby.
As with all ruby gems, you can install Jist (assuming you have ruby and rubygems) with:
$ gem install jist
If you want to use the library in your application, and you're using Bundler. Add the following to your Gemfile.
source :rubygems
gem 'jist'
The jist gem provides a jist
command that you can use from your terminal to
upload content to https://gist.github.com/.
It's easy to use. To upload the contents of a.rb
just:
$ jist a.rb
https://gist.github.com/0d07bc98c139810a4075
By default it reads from STDIN, and you can set a filename with -f
.
$ jist -f test.rb <a.rb
https://gist.github.com/7db51bb5f4f35c480fc8
Alternatively, you can just paste from the clipboard:
$ jist -P
https://gist.github.com/6a330a11a0db8e52a6ee
Use -p
to make the gist public and -d
to add a description.
$ jist -p -d "Random rbx bug" a.rb
https://gist.github.com/2977722
You can update existing gists with -u
:
$ jist lib/jist.rb bin/jist -u 42f2c239d2eb57299408
https://gist.github.com/42f2c239d2eb57299408
If you'd like to copy the resulting URL to your clipboard, use -c
.
$ jist -c <a.rb
https://gist.github.com/7db51bb5f4f35c480fc8
And you can just ask jist to open a browser window directly with -o
.
$ jist -o <a.rb
https://gist.github.com/7db51bb5f4f35c480fc8
See jist --help
for more detail.
If you want to associate your gists with your github account, you need to login with jist. It doesn't store your username and password, it just uses them to get an OAuth2 token (with the "gist" permission).
jist --login
Obtaining OAuth2 access_token from github.
Github username: ConradIrwin
Github password:
Success! https://github.com/settings/applications
This token is stored in ~/.jist
and used for all future gisting. If you need to
you can revoke it from https://github.com/settings/applications, or just delete the
file.
After you've done this, you can still upload gists anonymously with -a
.
jist -a a.rb
https://gist.github.com/6bf7ec379fc9119b1f15
You can also use Jist as a library from inside your ruby code:
Jist.gist("Look.at(:my => 'awesome').code")
If you need more advanced features you can also pass:
:access_token
to authenticate using OAuth2 (default is `File.read("~/.jist")).:filename
to change the syntax highlighting (default isa.rb
).:public
if you want your gist to have a guessable url.:description
to add a description to your gist.:update
to update an existing gist (can be a URL or an id).:anonymous
to submit an anonymous gist (default is false).:copy
to copy the resulting URL to the clipboard (default is false).:open
to open the resulting URL in a browser (default is false).
NOTE: The access_token must have the "gist" scope.
If you want to upload multiple files in the same gist, you can:
Jist.multi_gist("a.rb" => "Foo.bar", "a.py" => "Foo.bar")
If you'd rather use jist's builtin access_token, then you can force the user to obtain one by calling:
Jist.login!
This will take them through the process of obtaining an OAuth2 token, and storing it
in ~/.jist
, where it can later be read by Jist.gist
If you'd like -o
or -c
to be the default when you use the jist executable, add an
alias to your ~/.bashrc
(or equivalent). For example:
alias jist='jist -c'
If you'd prefer jist to open a different browser, then you can export the BROWSER environment variable:
export BROWSER=google-chrome
If clipboard or browser integration don't work on your platform, please file a bug or (more ideally) a pull request.
If you need to use an HTTP proxy to access the internet, export the HTTP_PROXY
or
http_proxy
environment variable and jist will use it.
I wrote this because the gist
gem is out of action, and has been for many months.
It's licensed under the MIT license, and bug-reports, and pull requests are welcome.