https://github.com/cored/bugherd-api
Bugherd API wrapper
https://github.com/cored/bugherd-api
Last synced: over 1 year ago
JSON representation
Bugherd API wrapper
- Host: GitHub
- URL: https://github.com/cored/bugherd-api
- Owner: cored
- License: mit
- Created: 2011-08-23T12:43:27.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2013-06-25T22:27:18.000Z (about 13 years ago)
- Last Synced: 2024-04-27T05:04:41.757Z (about 2 years ago)
- Language: Ruby
- Homepage:
- Size: 750 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Bugherd API wrapper for Ruby (using ActiveResource)
===
[](http://travis-ci.org/cored/bugherd-api)
This is a Ruby wrapper for the [Bugherd](http://bugherd.com) API.
It allows you to interface with the Bugherd API using simple
ActiveRecord-like syntax, i.e.:
```ruby
BugherdAPI.authenticate 'username', 'password'
BugherdAPI::Project.find :all
BugherdAPI::Project.find 1458
```
### Installation
```
$ gem install bugherd-api
```
### Usage
Simple require the library before using it
```ruby
require 'rubygems'
require 'bugherd-api'
```
### Contributing
* Fork the project
* Create feature and tests
* Make a pull request
### License
Copyright (c) 2011 Rafael George
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.