Sha256: 41dc039a7f105bc1cbd3bf618a253881cd1dec04b05848e735639a2a0ca424a0

Contents?: true

Size: 834 Bytes

Versions: 13

Compression:

Stored size: 834 Bytes

Contents

# frozen_string_literal: true

require 'rake_factory'

require_relative '../../client'

module RakeCircleCI
  module Tasks
    module Projects
      class Follow < RakeFactory::Task
        default_name :follow
        default_description(RakeFactory::DynamicValue.new do |t|
          "Follow the #{t.project_slug} project"
        end)

        parameter :project_slug, required: true
        parameter :api_token, required: true
        parameter :base_url, default: 'https://circleci.com/api'

        action do |t|
          client = Client.new(
            base_url: t.base_url,
            api_token: t.api_token,
            project_slug: t.project_slug
          )

          print "Following the '#{t.project_slug}' project... "
          client.follow_project
          puts 'Done.'
        end
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
rake_circle_ci-0.14.0.pre.2 lib/rake_circle_ci/tasks/projects/follow.rb
rake_circle_ci-0.14.0.pre.1 lib/rake_circle_ci/tasks/projects/follow.rb
rake_circle_ci-0.13.0 lib/rake_circle_ci/tasks/projects/follow.rb
rake_circle_ci-0.12.0.pre.5 lib/rake_circle_ci/tasks/projects/follow.rb
rake_circle_ci-0.12.0.pre.4 lib/rake_circle_ci/tasks/projects/follow.rb
rake_circle_ci-0.12.0.pre.3 lib/rake_circle_ci/tasks/projects/follow.rb
rake_circle_ci-0.12.0.pre.2 lib/rake_circle_ci/tasks/projects/follow.rb
rake_circle_ci-0.12.0.pre.1 lib/rake_circle_ci/tasks/projects/follow.rb
rake_circle_ci-0.11.0 lib/rake_circle_ci/tasks/projects/follow.rb
rake_circle_ci-0.10.0.pre.10 lib/rake_circle_ci/tasks/projects/follow.rb
rake_circle_ci-0.10.0.pre.9 lib/rake_circle_ci/tasks/projects/follow.rb
rake_circle_ci-0.10.0.pre.8 lib/rake_circle_ci/tasks/projects/follow.rb
rake_circle_ci-0.10.0.pre.7 lib/rake_circle_ci/tasks/projects/follow.rb