BlossomApi
Ruby wrapper for the Blossom API.
Installation
Add this line to your application's Gemfile:
gem 'blossom_api'
And then execute:
$ bundle
Or install it yourself as:
$ gem install blossom_api
Usage
my_project = BlossomApi::Project.new(
organization_id: 'xxx',
project_id: 'xxx',
access_token: 'xxx'
)
my_project.create_card 'New feature', 'Description of the feature'
More features to come...
Contributing
- Fork it ( https://github.com/[my-github-username]/blossom_api/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request