class IB::Generator def write src, dest files = IB::Parser.new.find_all(src) FileUtils.mkpath dest File.open("#{dest}/Stubs.h", 'w') do |f| f.write <<-OBJC // Generated by IB v#{IB::VERSION} gem. Do not edit it manually // Run `rake design` to refresh #import #import #import #{generate_objc(files)} OBJC end File.open("#{dest}/Stubs.m", 'w') do |f| f.write <<-OBJC // Generated by IB v#{IB::VERSION} gem. Do not edit it manually // Run `rake design` to refresh #import "Stubs.h" #{generate_objc_impl(files)} OBJC end end def generate_objc files src = files.map do |path, info| <<-OBJC @interface #{info[:class][0][0]} : #{info[:class][0][1]} #{info[:outlets].map {|name, type| "@property IBOutlet #{type} * #{name};" }.join("\n")} #{info[:actions].map {|action| "-(IBAction) #{action[0]}:(id) sender;" }.join("\n")} @end OBJC end.join("\n" * 2) end def generate_objc_impl files src = files.map do |path, info| <<-OBJC @implementation #{info[:class][0][0]} @end OBJC end.join("\n" * 2) end end