#!/usr/bin/env ruby # -*- coding: utf-8 -*- require "al_form" require "al_template" require "al_worker_ipc" class KitchenTimerContoller < AlController include AlWorker::IpcAction ## # constructor # def initialize() @ipc = AlWorker::Ipc.open( "/tmp/kitchen_timer" ) end # # デフォルトアクションの定義 # def action_index() @values = @ipc.call( "get_values" ) AlTemplate.run( 'index.rhtml' ) end end