# File lib/ramaze/tool/bin.rb, line 10
        def default_pidfile # {{{
          return @default_pidfile if @default_pidfile
          require "pathname"
          @default_pidfile = (Pathname.new(".").expand_path.basename.to_s + ".pid").strip
        end