Kristian Van Der Vliet
Kristian Van Der Vliet
Certain plugins (Source, Action) may require dependencies are installed on the build host I.e. `git` if Git sources are used. Right now there is no way for the plugins to...
The Github status decorator should include a link to the UI for the job being built (if a UI is available)
Testing anything with Net::SSH is a problem as it lacks proper Mocks; it looks like I'll have to implement a whole bunch of boilerplate to be effectively mock the SSH...
If the Github repo requires authentication but the plugin can't find a matching OAuth token it just crashes with a backtrace. It actually calls "raise" without a message at a...
It would be useful if cyclid-db-init wrote the admin password & HMAC secret to a file (maybe JSON?) so that the database creation can be automated more easily.
Currently a user can only have one email address, which applies across all of the organizations that they belong too. As Github proves, this can be a problem if you...
Currently there is no way to delete or archive and organization (although you can 'hide' it by removing all of the members, which makes it inaccessible to anybody except Super...
The Stage/Action code has a bunch of places where either calls need to wrapped in begin/rescue blocks or it needs to raise an internal exception to be caught upstream. I...
Right now the Github plugin only responds to pull request events, but there's no real reason it couldn't respond to any of the events Github can generate. The actual events...
The default for the Bcrypt Gem is 10, bump the work factor up to ~11 or 12; create() takes a cost parameter.