Warning, file /education/kturtle/spec/start_kturtle.rb was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 #!/usr/bin/env ruby 0002 # SPDX-FileCopyrightText: 2009 Cies Breijs 0003 # SPDX-FileCopyrightText: 2009 Niels Slot 0004 # 0005 # SPDX-License-Identifier: GPL-2.0-or-later 0006 0007 puts "Staring the KTurtle interpreter in DBUS mode..." 0008 k = IO.popen './src/kturtle --dbus' 0009 sleep 1.5 # give it some time to start 0010 pid_file = File.new("pid", "w") 0011 pid_file.puts(k.pid.to_s) 0012 pid_file.close 0013 0014 puts "started with pid: #{k.pid}"