{"id":25013138,"url":"https://github.com/npupko/dude","last_synced_at":"2025-04-12T21:26:40.024Z","repository":{"id":38323613,"uuid":"114297609","full_name":"npupko/dude","owner":"npupko","description":"A daily assistant in the hard work of a programmer","archived":false,"fork":false,"pushed_at":"2023-03-07T03:57:44.000Z","size":5986,"stargazers_count":25,"open_issues_count":22,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-04-27T00:06:54.129Z","etag":null,"topics":["cli","cli-utilities","dude","gem","git","gitlab","ruby","toggl"],"latest_commit_sha":null,"homepage":null,"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/npupko.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"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":"2017-12-14T21:25:05.000Z","updated_at":"2022-11-29T00:39:05.000Z","dependencies_parsed_at":"2025-02-05T06:35:37.529Z","dependency_job_id":null,"html_url":"https://github.com/npupko/dude","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/npupko%2Fdude","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/npupko%2Fdude/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/npupko%2Fdude/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/npupko%2Fdude/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/npupko","download_url":"https://codeload.github.com/npupko/dude/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248633544,"owners_count":21136886,"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","cli-utilities","dude","gem","git","gitlab","ruby","toggl"],"created_at":"2025-02-05T06:35:28.325Z","updated_at":"2025-04-12T21:26:39.989Z","avatar_url":"https://github.com/npupko.png","language":"Ruby","readme":"# Dude\n\n[![Gem Version](https://badge.fury.io/rb/dude-cli.svg)](https://badge.fury.io/rb/dude-cli)\n![Codacy coverage](https://img.shields.io/codacy/coverage/8c564cf8054e4575b20b580d47020f52)\n[![Codacy Badge](https://app.codacy.com/project/badge/Grade/a02f0a87f88542c89ac5bf62d1a7d0f7)](https://www.codacy.com/gh/npupko/dude/dashboard?utm_source=github.com\u0026amp;utm_medium=referral\u0026amp;utm_content=npupko/dude\u0026amp;utm_campaign=Badge_Grade)\n![Gem](https://img.shields.io/gem/dv/dude-cli/stable)\n![GitHub](https://img.shields.io/github/license/npupko/dude)\n\nA daily assistant in the hard work of a programmer\n\nThis program helps to combine such services as [Jira](https://atlassian.net), [Trello](https://trello.com), [Toggl](https://toggl.com), etc. and replace most routine activities with one simple CLI utility.\n\n![Dude](/demo/dude.gif)\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'dude-cli'\n```\n\nAnd then execute:\n\n    $ bundle\n\nOr install it yourself as:\n\n    $ gem install dude-cli\n\nAfter that create .duderc.yml file in your work project directory by command:\n\n    $ dude install\n\nIt will offer you a step by step instruction how to setup dude:\n\n![Setup Wizard](/demo/wizard.gif)\n\nYou always could edit this file manually and setup some stuff like Toggl time entry name or Github PR template\n\nDefault template could be found here: [lib/dude/templates/duderc_template](/lib/dude/templates/duderc_template)\n\n### Additional configuration variables:\n\n#### Replace it with your project list names. Skip for empty lists\n\n```yaml\n:todo_list_name: To Do\n:in_progress_list_name: In Progress\n:code_review_list_name: Code Review\n:testing_list_name: TESTABLE\n:done_list_name: Done\n```\n\n#### Use the *{issue_id}* and *{issue_title}* and specify format for the task titles in Toggl or keep it as it is\n\n```yaml\n:toggl:\n  :task_format: [{issue_id}] {issue_title}\n```\n\n#### Github PR template looks like this (Available variables: *{issue_id}*, *{issue_title}*, *{issue_url}*)\n\n```yaml\n:github:\n  :pr_template:\n    :title: \"[{issue_id}] {issue_title}\\n\"\n    :body: |\n      ## Story\n      [**\\[{issue_id}\\] {issue_title}**]({issue_url})\n      ## Description\n      Example description of the issue\n```\n\n## Usage\n\n#### Using RVM\n\nTo run gem in any folder using RVM just install gem to the global default ruby version and add alias to ~/.bashrc or ~/.zshrc\n(Replace 2.7.2 to your ruby version and/or gemset)\n\n```bash\nalias dude=\"rvm 2.7.2 do dude\"\n```\n\n|    Command    | Required parameters | Optional parameters |                                       Description                                          |\n|:-------------:|:-------------------|:-------------------|:--------------------------------------------------------------------------------------       |\n| dude install      | -                   | -                   | Create .duderc file in your home directory                                             |\n| dude checkout     | ISSUE_ID*            | -                   | Checkout to branch with name \"ID-issue-title\"                                          |\n| dude track        | ISSUE_ID*           | -                   | Start time entry in Toggl with issue project, title and id                             |\n| dude tasks        | -                   | -                   | Show all issues in current project (For current sprint)                                |\n| dude commit       | ISSUE_ID*           | -                   | Create commit with the ID and title of current story                                   |\n| dude stop         | -                   | -                   | Stop current time entry in Toggl                                                       |\n| dude start        | ISSUE_ID*            | -                   | Do `checkout`, `track` and `move` actions                                              |\n| dude move         | ISSUE_ID*            | --list=NAME         | Move issue to another column (Will provide options if called without --list parameter) |\n| dude pr create    |                     |                     | Creates PR in Github using template                                                    |\n| dude assign       | ISSUE_ID*            |                     | Assign current user as author for current task                                         |\n| dude version      | -                   | -                   | Display gem version                                                                    |\n| dude healthcheck  | -                   | -                   | Check configuration of all dependencies                                                |\n\n\\* You could ignore ISSUE_ID if you are already on a git branch with issue id\n\nYou also can use `dude help` for short description of every command.\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/npupko/dude.\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n\n## Changelog\n\n[CHANGELOG.md](/CHANGELOG.md)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnpupko%2Fdude","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnpupko%2Fdude","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnpupko%2Fdude/lists"}