Sha256: cddf1ba3bfdd988ac28ad9d6836b1324ad084bde3e697ffcdb45498bc4ef8760
Contents?: true
Size: 668 Bytes
Versions: 44
Compression:
Stored size: 668 Bytes
Contents
#!/usr/bin/env ruby # encoding: utf-8 # 20121112 masa workflow manager client Version = '20130517-111334' require 'drb/drb' if ARGV[0]=='-h' or ARGV[0]=='--help' puts "Usage:\n #{__FILE__}" exit end uri = ARGV[0]||'druby://localhost:12345' wfmrc = if File.exist?(".wfmrc") ".wfmrc" elsif File.exist?(File.expand_path("~/.wfmrc")) File.expand_path("~/.wfmrc") end if wfmrc File.readlines(wfmrc).each do |line| if line =~ /server:\s*(druby.+)/ uri = $1 end if line =~ /project:\s*(\d+)/ project_number = $1 end end end workflow_manager = DRbObject.new_with_uri(uri) puts workflow_manager.hello
Version data entries
44 entries across 44 versions & 1 rubygems