Project

packethost

0.03
No release in over 3 years
Low commit activity in last 3 years
Ruby client for the Packet API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.0
>= 0
~> 0
~> 4
~> 3
~> 0.43.0
~> 1.4
~> 1.20

Runtime

 Project Readme

Build Status

Packet

A Ruby client for the Packet API.

This repository is Experimental meaning that it's based on untested ideas or techniques and not yet established or finalized or involves a radically new and innovative style! This means that support is best effort (at best!) and we strongly encourage you to NOT use this in production.

Installation

Add this to your Gemfile

gem 'packethost', '~> 0.0.8'

Or install with

gem install packethost

Configuration

You can either configure the library in a global way (easier):

Packet.configure do |config|
  config.auth_token = 'my_token'
end

or create and use an individual instance of Packet::Client (more complex):

Packet::Client.new(auth_token)

Generally speaking, you'll probably want to configure it globally if you only ever use a single API token.

Usage

If you configured the library globally, you can just call methods on the Packet module. For example:

Packet.list_projects
=> [#<Packet::Project>, #<Packet::Project>]

If you configured a Packet::Client manually, you can call those same methods on the client itself:

client = Packet::Client.new( ... )
client.list_projects
=> [#<Packet::Project>, #<Packet::Project>]

See a list of available methods.

Contributing

  • Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
  • Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
  • Fork the project.
  • Start a feature/bugfix branch.
  • Commit and push until you are happy with your contribution.
  • Make sure to add tests for it. This is important so we don't break it in a future version unintentionally. You can run the test suite with bundle exec rake.
  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so we can cherry-pick around it.

Copyright

Copyright (c) 2015 Packet Host. See LICENSE for further details.