This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Embedded file name: c:\Jenkins\live\output\win_64_static\Release\python-bundle\MIDI Remote Scripts\MPK249\MPK249.py | |
from __future__ import absolute_import, print_function, unicode_literals | |
from _Framework.ControlSurface import ControlSurface | |
from _Framework.Layer import Layer | |
from _Framework.DrumRackComponent import DrumRackComponent | |
from _Framework.TransportComponent import TransportComponent | |
from _Framework.DeviceComponent import DeviceComponent | |
from _Framework.MixerComponent import MixerComponent | |
from _Framework.MidiMap import MidiMap as MidiMapBase | |
from _Framework.MidiMap import make_button, make_encoder, make_slider |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
def find_deps(cookbook_dir) | |
nel = Hash.new { |h, k| h[k] = [] } | |
Dir.glob("#{cookbook_dir}/*/").each do |r| | |
deps_for(r, nel) | |
end | |
nel | |
end |