module Specular::Integration

Constants

INTEGRATIONS

Public Class Methods

for(name, context) click to toggle source
# File lib/specular/integration.rb, line 4
def self.for(name, context)
  integration = INTEGRATIONS[name]

  integration.new(
    **integration.extract_args(context)
  )
end