module StreamdeckProf

Constants

VERSION

Public Class Methods

run(&block) click to toggle source
# File lib/streamdeck_prof.rb, line 9
def self.run(&block)
  context = StreamdeckProf::Context.new
  context.instance_eval(&block)
  context.profiles.each(&:save)
end