Class: Mutant::License::Subscription::Commercial Private

Inherits:
Mutant::License::Subscription show all
Defined in:
lib/mutant/license/subscription/commercial.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: Author

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.



14
15
16
# File 'lib/mutant/license/subscription/commercial.rb', line 14

def self.from_json(value)
  new(value.fetch('authors').map(&Author.public_method(:new)).to_set)
end

Instance Method Details

#call(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.



18
19
20
21
22
23
24
25
26
# File 'lib/mutant/license/subscription/commercial.rb', line 18

def call(world)
  candidates = candidates(world)

  if (licensed & candidates).any?
    success
  else
    failure(licensed, candidates)
  end
end