{"id":20557085,"url":"https://github.com/mitsuru793/ruby-pin-note","last_synced_at":"2025-06-10T20:36:02.661Z","repository":{"id":85132120,"uuid":"130886173","full_name":"mitsuru793/ruby-pin-note","owner":"mitsuru793","description":"Save one text like tweet from cli. This means you tweet on private as note. Your notes are saved in your local.","archived":false,"fork":false,"pushed_at":"2018-04-30T08:12:10.000Z","size":29,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-06T06:48:33.397Z","etag":null,"topics":["cli","memo","notes","ruby"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mitsuru793.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-04-24T16:51:34.000Z","updated_at":"2018-04-30T08:22:42.000Z","dependencies_parsed_at":"2023-03-03T02:31:05.195Z","dependency_job_id":null,"html_url":"https://github.com/mitsuru793/ruby-pin-note","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitsuru793%2Fruby-pin-note","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitsuru793%2Fruby-pin-note/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitsuru793%2Fruby-pin-note/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitsuru793%2Fruby-pin-note/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mitsuru793","download_url":"https://codeload.github.com/mitsuru793/ruby-pin-note/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitsuru793%2Fruby-pin-note/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259146901,"owners_count":22812329,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","memo","notes","ruby"],"created_at":"2024-11-16T03:34:45.025Z","updated_at":"2025-06-10T20:36:02.630Z","avatar_url":"https://github.com/mitsuru793.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PinNote [![Build Status](https://travis-ci.org/mitsuru793/ruby-pin-note.svg?branch=master)](https://travis-ci.org/mitsuru793/ruby-pin-note) [![Maintainability](https://api.codeclimate.com/v1/badges/2db5e897884af5270127/maintainability)](https://codeclimate.com/github/mitsuru793/ruby-pin-note/maintainability) [![Inline docs](http://inch-ci.org/github/mitsuru793/ruby-pin-note.svg?branch=master)](http://inch-ci.org/github/mitsuru793/ruby-pin-note)\n\nSave one text like tweet from cli. This means you tweet on private as note. Your notes are saved in your local.\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'pin_note'\n```\n\nAnd then execute:\n\n    $ bundle\n\nOr install it yourself as:\n\n    $ gem install pin_note\n\n## Usage\n\n```\n❯ pin-note\nCommands:\n  pin-note help [COMMAND]             # Describe available commands or one specific command\n  pin-note list                       # List notes.\n  pin-note save Here is note... #tag  # Save a note.\n```\n\nOptions:\n + c means category.\n + f means format.\n\n```\npin-note save Today is happy.\npin-note save -c todo by my room\npin-note save -c todo clean my room\npin-note save -c want car\n\n$ pin-note list\n[2018-04-30 16:51:46] inbox: Today is happy.\n[2018-04-30 16:51:47] todo: by my room\n[2018-04-30 16:51:47] todo: clean my room\n[2018-04-30 16:53:26] want: car\n\n$ pin-note list -c todo\n[2018-04-30 16:51:47] todo: by my room\n[2018-04-30 16:51:47] todo: clean my room\n\n$ pin-note list -c inbox want\n[2018-04-30 16:51:46] inbox: Today is happy.\n[2018-04-30 16:53:26] want: car\n\n$ pin-note list -f json\n# =\u003e List notes as json. You can use them with jq.\n```\n\n[jq](https://stedolan.github.io/jq/) is like sql for json.\n\nYou can change default category with an Evironment variable.\n\n```\n$ export PIN_NOTE_DEFAULT_CATEGORY=todo\n$ pin-note save buy milk\n$ pin-note save clean my room\n\n$ unset PIN_NOTE_DEFAULT_CATEGORY\n$ pin-note save Today is happy!\n\n$ pin-note list\n[2018-04-30 17:04:55] todo: buy milk\n[2018-04-30 17:05:04] todo: clean my room\n[2018-04-30 17:05:15] inbox: Today is happy!\n```\n\n## Development\n\nAfter checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.\n\nTo install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/pin_note.\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmitsuru793%2Fruby-pin-note","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmitsuru793%2Fruby-pin-note","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmitsuru793%2Fruby-pin-note/lists"}