https://github.com/timcraft/noko
Ruby client for the Noko API
https://github.com/timcraft/noko
api-client nokotime ruby
Last synced: about 1 year ago
JSON representation
Ruby client for the Noko API
- Host: GitHub
- URL: https://github.com/timcraft/noko
- Owner: timcraft
- License: mit
- Created: 2015-07-10T15:01:49.000Z (almost 11 years ago)
- Default Branch: main
- Last Pushed: 2025-01-02T13:12:39.000Z (over 1 year ago)
- Last Synced: 2025-03-15T23:15:34.287Z (over 1 year ago)
- Topics: api-client, nokotime, ruby
- Language: Ruby
- Homepage:
- Size: 91.8 KB
- Stars: 6
- Watchers: 1
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# noko
[](https://badge.fury.io/rb/noko) [](https://github.com/timcraft/noko/actions/workflows/test.yml)
Ruby client for the [Noko API](https://developer.nokotime.com/v2/).
## Install
Using Bundler:
$ bundle add noko
Using RubyGems:
$ gem install noko
## Getting started
```ruby
require 'noko'
noko = Noko::Client.new(token: ENV.fetch('NOKO_TOKEN'))
noko.get_projects.each do |project|
puts project.name
end
```