Class: Mutant::License::Subscription::Opensource Private

Inherits:
Mutant::License::Subscription show all
Defined in:
lib/mutant/license/subscription/opensource.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Defined Under Namespace

Classes: Repository

Constant Summary

Constants inherited from Mutant::License::Subscription

FAILURE_FORMAT, FORMAT

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Mutant::License::Subscription

#description, load

Class Method Details

.from_json(value) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



44
45
46
47
48
49
50
51
# File 'lib/mutant/license/subscription/opensource.rb', line 44

def self.from_json(value)
  new(
    value
      .fetch('repositories')
      .map(&Repository.public_method(:parse))
      .to_set
  )
end

Instance Method Details

#apply(world) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



53
54
55
56
57
58
# File 'lib/mutant/license/subscription/opensource.rb', line 53

def apply(world)
  world
    .capture_stdout(%w[git remote --verbose])
    .fmap(&method(:parse_remotes))
    .bind(&method(:check_subscription))
end