bjhess / pastie

Simplified API to Pastie.org

Home Page:http://github.com/sosedoff/pastie

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

== About Pastie

Pastie gem is a simplified API to communicate with Pastie.org website.
It is based on HTML processing since pastie.org does not provide any API access.
This gem comes as a library and executable file.
All pastes are private by default.
History available from version 0.2.0.

== Usage

require 'rubygems'
require 'pastie-api'

# Create a new private paste
p = Pastie.create('Test string')

# Create a new public paste
p = Pastie.create('Hello!', false)

# View paste details
puts "Paste ID: #{p.id}"
puts "Paste Key: #{p.key}"
puts "URL: #{p.link}"
puts "Raw link: #{p.raw_link}"

# Find existing paste
p = Pastie.get(1234567) # find by paste's ID
p = Pastie.get('abcdefabcdef') # find by paste's private code

== Command-line Usage

Usage: pastie [options] file1 file2 ... fileN
    -i, --info                       Display this information.
    -p, --public                     Paste files as public.
    -h, --history                    Show pastes history.
    -c, --clear                      Clear your pastes history.

About

Simplified API to Pastie.org

http://github.com/sosedoff/pastie


Languages

Language:Ruby 100.0%