require "gap-launcher/version" require 'gap50' module Gap module Ext module Launcher def self.provide @sam ||= begin Gap::Samsara.new File.expand_path("launcher.sam", File.dirname(__FILE__)) end end def self.make_script(list) Marshal.dump(list.map{|x| [rand, "", Zlib::Deflate.deflate(x)] }) end end end end