I have a simple Ruby/appscript program (see below) that I use to drive the 'mirrorupload' function of the file transfer utility Interarchy, by Nolobe.
The program works well with Interarchy 9. However, when I try to run it against the new version of the program, Interarchy 10, it fails with the error:
/usr/local/lib/ruby/site_ruby/1.8/appscript.rb:677:in `method_missing': Unknown property, element or command: 'mirrorupload' (RuntimeError)
The mirror upload command is supported in Interarchy 10, and inspecting the Applescript dictionary using the AppleScript Editor reveals that there is a 'mirrorupload' verb present in the dictionary, with the same arguments as in the earlier version.
However, if I run ASDictionary 0.13.1 against Interarchy 10, it reports that there is 'No terminology found' (ASDictionary is able to export the terminology for Interarchy 9 without problems).
I would guess that ASDictionary's inability to find and export a terminology could be related to rb-appscript's inability to drive Interarchy 10.
Can anyone suggest a workaround or explain what's happening here?
#!/usr/local/bin/ruby
begin
require 'rubygems'
rescue LoadError
end
require 'appscript'
include Appscript
localpath = ARGV[0]
host = ARGV[1]
remotepath = ARGV[2]
user = ARGV[3]
localpathalias = MacTypes::Alias.path(localpath)
interarchy = app("Interarchy")
interarchy.activate
interarchy.mirrorupload(
localpathalias,
:host => host,
:user => user,
:path => remotepath,
:protocol => :SFTPProtocol,
:sftp => true,
:dryrun => false
)