Module: RakeGithub
- Defined in:
- lib/rake_github.rb,
lib/rake_github/version.rb,
lib/rake_github/task_sets/repository.rb,
lib/rake_github/task_sets/deploy_keys.rb,
lib/rake_github/tasks/releases/create.rb,
lib/rake_github/tasks/deploy_keys/ensure.rb,
lib/rake_github/tasks/deploy_keys/destroy.rb,
lib/rake_github/tasks/pull_requests/merge.rb,
lib/rake_github/exceptions/no_pull_request.rb,
lib/rake_github/tasks/deploy_keys/provision.rb,
lib/rake_github/exceptions/required_argument_unset.rb
Defined Under Namespace
Modules: Exceptions, TaskSets, Tasks
Constant Summary
collapse
- VERSION =
'0.13.0'
Class Method Summary
collapse
Class Method Details
.define_deploy_keys_tasks(opts = {}, &block) ⇒ Object
9
10
11
|
# File 'lib/rake_github.rb', line 9
def self.define_deploy_keys_tasks(opts = {}, &block)
RakeGithub::TaskSets::DeployKeys.define(opts, &block)
end
|
.define_release_task(opts = {}, &block) ⇒ Object
17
18
19
|
# File 'lib/rake_github.rb', line 17
def self.define_release_task(opts = {}, &block)
RakeGithub::Tasks::Releases::Create.define(opts, &block)
end
|
.define_repository_tasks(opts = {}, &block) ⇒ Object
13
14
15
|
# File 'lib/rake_github.rb', line 13
def self.define_repository_tasks(opts = {}, &block)
RakeGithub::TaskSets::Repository.define(opts, &block)
end
|