class FWToolkit::Rake::CITask

Public Class Methods

new() { |self| ... } click to toggle source
# File lib/fwtoolkit/rake/tasks/ci.rb, line 9
def initialize(&block)
  yield self if block_given?
  define_task
end

Private Instance Methods

define_task() click to toggle source
# File lib/fwtoolkit/rake/tasks/ci.rb, line 17
def define_task
  namespace :ci do
    desc 'Build'
    task :build => ['project:update', 'xcode:ci:testing', 'test:build', 'test:ci:frank']
  end
end