class Gitomator::Service::CI
Public Class Methods
new(provider, opts = {})
click to toggle source
Calls superclass method
Gitomator::BaseService::new
# File lib/gitomator/service/ci.rb, line 8 def initialize(provider, opts = {}) super(provider, opts) end
Public Instance Methods
ci_enabled?(repo)
click to toggle source
# File lib/gitomator/service/ci.rb, line 29 def ci_enabled?(repo) service_call(__callee__, repo) end
disable_ci(repo, opts={})
click to toggle source
# File lib/gitomator/service/ci.rb, line 25 def disable_ci(repo, opts={}) service_call(__callee__, repo, opts) end
enable_ci(repo, opts={})
click to toggle source
# File lib/gitomator/service/ci.rb, line 21 def enable_ci(repo, opts={}) service_call(__callee__, repo, opts) end
sync(blocking=false, opts={})
click to toggle source
# File lib/gitomator/service/ci.rb, line 13 def sync(blocking=false, opts={}) service_call(__callee__, blocking, opts) end
syncing?(opts={})
click to toggle source
# File lib/gitomator/service/ci.rb, line 17 def syncing?(opts={}) service_call(__callee__, opts) end