{"id":15033083,"url":"https://github.com/kirillshevch/integration_workflow","last_synced_at":"2026-02-09T10:38:03.604Z","repository":{"id":186171803,"uuid":"674700280","full_name":"kirillshevch/integration_workflow","owner":"kirillshevch","description":"A Ruby DSL for building integration workflows","archived":false,"fork":false,"pushed_at":"2023-08-04T18:13:56.000Z","size":7,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-22T12:46:00.919Z","etag":null,"topics":["dsl","integrations","ruby","workflows"],"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/kirillshevch.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}},"created_at":"2023-08-04T14:53:21.000Z","updated_at":"2023-08-06T14:47:13.000Z","dependencies_parsed_at":null,"dependency_job_id":"98021b0a-cbd2-4bd6-a64b-560c38361a72","html_url":"https://github.com/kirillshevch/integration_workflow","commit_stats":null,"previous_names":["kirillshevch/integration_workflow"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kirillshevch/integration_workflow","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kirillshevch%2Fintegration_workflow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kirillshevch%2Fintegration_workflow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kirillshevch%2Fintegration_workflow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kirillshevch%2Fintegration_workflow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kirillshevch","download_url":"https://codeload.github.com/kirillshevch/integration_workflow/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kirillshevch%2Fintegration_workflow/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268330932,"owners_count":24233152,"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","status":"online","status_checked_at":"2025-08-02T02:00:12.353Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["dsl","integrations","ruby","workflows"],"created_at":"2024-09-24T20:20:02.954Z","updated_at":"2026-02-09T10:37:58.529Z","avatar_url":"https://github.com/kirillshevch.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# IntegrationWorkflow\n\nA Ruby DSL for building integration workflows\n\n## Installation\n\nInstall the gem and add it to the application's Gemfile by executing:\n\nAdd the `integration_workflow` gem to your application's Gemfile:\n\n```sh\ngem 'integration_workflow'\n```\n\nAnd then execute:\n\n```sh\nbundle install\n```\n\n## Usage\n\nTo define a workflow with steps and actions, you can use the `step` and `action` methods, there are 2 options:\n\n1. without options:\n\n```ruby\nworkflow = IntegrationWorkflow.new do\n  step 'Step 1' do\n    action 'Action 1' do\n      puts \"Running #{name} in #{step_name}\"\n    end\n  end\n\n  step 'Step 2' do\n    action 'Action 1' do\n      puts \"Running #{name} in #{step_name}\"\n    end\n  end\nend\n\nworkflow.run\n```\n\n2. with options:\n\n```ruby\nworkflow = IntegrationWorkflow.new(user_id: '1') do\n  step 'Step 1' do\n    action 'Action 1' do\n      puts \"Running #{name} in #{step_name} with user_id: #{options[:user_id]}\"\n    end\n  end\n\n  step 'Step 2' do\n    action 'Action 1' do\n      puts \"Running #{name} in #{step_name} with user_id: #{options[:user_id]}\"\n    end\n  end\nend\n\nworkflow.run\n```\n\n## Development\n\nAfter checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` 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 the created tag, 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/kirillshevch/integration_workflow.\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%2Fkirillshevch%2Fintegration_workflow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkirillshevch%2Fintegration_workflow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkirillshevch%2Fintegration_workflow/lists"}