SnapCiManualTrigger
SnapCiManualTrigger will connect to Snap-CI's API and trigger a manual stage on
a given pipeline or create a new pipeline.
It uses Snap-CI's API, with user and APIKEY, so it acts in a users name.
Installation
Add this line to your application's Gemfile:
gem 'snap_ci_manual_trigger'
And then execute:
$ bundle
Or install it yourself as:
$ gem install snap_ci_manual_trigger
Usage
The Service object can be used programmatically.
service = SnapCiManualTrigger.for user: snap_ci_user,
api_key: snap_ci_api_key,
owner: owner,
repository: repository,
branch_name: branch_name
# creates a new pipeline, and returns the ID
pipeline_id = service.new_pipeline
# triggers the stage "Deploy" in the new pipeline
running_pipeline_url = service.manual_stage stage: 'Deploy', pipeline_id: pipeline_id
# trigger the stage "Deploy" in a new pipeline in one command
running_pipeline_url = service.manual_stage_on_new_pipeline 'Deploy'
Generate tasks
TODO: generate rake tasks for quick setup of project/repo/branch, using ENV variables for Auth and overrides.
Development
After checking out the repo, run bin/setup to install dependencies. Then, run rake rspec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.
To 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.
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/artirix/snap_ci_manual_trigger.

