All Projects → codeship → codeship-ruby

codeship / codeship-ruby

Licence: MIT license
[deprecated] Easily interact with Codeship

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to codeship-ruby

glimmer-dsl-tk
Glimmer DSL for Tk (Ruby Tk Desktop Development GUI Library)
Stars: ✭ 26 (+100%)
Mutual labels:  ruby-gem
ruby attic
💍 Unmaintained ruby projects needing people!
Stars: ✭ 26 (+100%)
Mutual labels:  ruby-gem
kitchen-pester
A Test Kitchen driver to execute Pester as a verifier
Stars: ✭ 29 (+123.08%)
Mutual labels:  ruby-gem
has placeholder image
A Ruby gem for generating string based placeholder images in Rails.
Stars: ✭ 20 (+53.85%)
Mutual labels:  ruby-gem
secrets cli
CLI for storing and reading your secrets via vault
Stars: ✭ 24 (+84.62%)
Mutual labels:  ruby-gem
jsonapi-serializer-formats
💎 Gem to enrich jsonapi-serializer with multiple formats
Stars: ✭ 20 (+53.85%)
Mutual labels:  ruby-gem
multi-tenancy-devise
mtdevise adds basecamp style user logins to your ruby on rails application.
Stars: ✭ 27 (+107.69%)
Mutual labels:  ruby-gem
rails cursor pagination
Add cursor pagination to your ActiveRecord backed application
Stars: ✭ 21 (+61.54%)
Mutual labels:  ruby-gem
detectify
Detectify is a gem for multi-tenant Rack apps, to help you retrieve domain and subdomain-related data from a database.
Stars: ✭ 79 (+507.69%)
Mutual labels:  ruby-gem
opta sd
OPTA Sports Data Soccer API Client (OPTA SDAPI)
Stars: ✭ 28 (+115.38%)
Mutual labels:  ruby-gem
make model searchable
Adds simlpe search functionality to models
Stars: ✭ 27 (+107.69%)
Mutual labels:  ruby-gem
busser
Kitchen Busser - Runs tests for projects in test-kitchen
Stars: ✭ 47 (+261.54%)
Mutual labels:  ruby-gem
parse-stack
Parse Server Ruby Client SDK
Stars: ✭ 59 (+353.85%)
Mutual labels:  ruby-gem
space-invaders
👾 Space Invaders 2d game with Ruby/Gosu
Stars: ✭ 16 (+23.08%)
Mutual labels:  ruby-gem
glimmer-dsl-swt
Glimmer DSL for SWT (JRuby Desktop Development GUI Framework)
Stars: ✭ 53 (+307.69%)
Mutual labels:  ruby-gem
ethereal-jekyll-theme
A Jekyll version of the "Ethereal" theme by HTML5 UP.
Stars: ✭ 13 (+0%)
Mutual labels:  ruby-gem
mobility-actiontext
Translate Rails Action Text rich text with Mobility.
Stars: ✭ 27 (+107.69%)
Mutual labels:  ruby-gem
kitchen-habitat
A Test Kitchen Driver for Habitat
Stars: ✭ 13 (+0%)
Mutual labels:  ruby-gem
tty-tree
Print directory or structured data in a tree like format
Stars: ✭ 54 (+315.38%)
Mutual labels:  ruby-gem
instagram graph api
This is a version of koala gem which provides commonly used Instagram Graph APIs
Stars: ✭ 28 (+115.38%)
Mutual labels:  ruby-gem

Codeship

⚠️⚠️⚠️ This gem only supports v1 of Codeship's API which is deprecated as of July 1st 2018. ⚠️⚠️⚠️

Interact with Codeship.

Codeship Status for codeship/codeship-ruby Gem Version

Contributing

See CONTRIBUTING.md

Installation

Add this line to your application's Gemfile:

gem 'codeship'

And then execute:

$ bundle

Or install it yourself as:

$ gem install codeship

Usage

Check the latest Build

project_status = Codeship::Status.new "my_project_uuid"
project_status.status #=> :success

Check the latest Build on a specific branch

project_status = Codeship::Status.new "my_project_uuid", branch: "development"
project_status.status #=> :error

Get a list of your available projects

projects = Codeship::Projects.new "my_api_key"
projects.list #=> [{"id"=>1, "builds"=>[], "repository_name"=>"abcd/repo-name"}, {"id"=>2, "builds"=>[], "repository_name"=>"abcd/another-repo-name"}]

Get a single project

projects = Codeship::Projects.new "my_api_key"
projects.project 1 #=> {"id"=>1, "builds"=>[], "repository_name"=>"abcd/repo-name"}

States

:branchnotfound, :error, :ignored, :projectnotfound, :success, :testing, :waiting, :stopped, :infrastructure_failure

Disclaimer

We cannot guarantee any compatibilty with upcoming versions of this Gem.

License

Copyright (c) 2017 Codeship.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].