Sha256: 4c7e3aa9e7caede158edac4e2f53280e32fa1cdff642bc6b3a2051bf8ff6b414

Contents?: true

Size: 941 Bytes

Versions: 9

Compression:

Stored size: 941 Bytes

Contents

require "wurfl/command"

# A simple command line tool to make sure that a wurfl file properly parses.
# Used to make sure changes to Wurfl/Patch files are OK.
class Wurfl::Command::Sanitycheck < Wurfl::Command
  def execute
    if ARGV.size != 1
     puts "Must have the path of the wurfl file to check"
     exit 1
    end
    lines = File.open(ARGV[0],"r").readlines

    curdev = nil
    c = 0

    lines.each do |line|
    line = line.strip
    if line =~ /^(<d)evice.*[^\/]>$/
      curdev = line
    elsif line =~ /^(<d)evice.*\/>$/
      if curdev
        puts "#{c}:A device was not closed and we got a new device! #{curdev}"
      end
      curdev = nil
    elsif line =~ /^(<\/d)evice>$/
      if curdev.nil?
        puts "#{c}:A closing device with no opening! #{curdev}"
      end
      curdev=nil
    end
    c += 1
    end

    if curdev
    puts "The curent device was not closed #{curdev}"
    end

    puts "Done"
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
wurfl-1.3.7 lib/wurfl/command/sanitycheck.rb
wurfl-1.3.6 lib/wurfl/command/sanitycheck.rb
wurfl-1.3.5 lib/wurfl/command/sanitycheck.rb
wurfl-1.1.1 lib/wurfl/command/sanitycheck.rb
wurfl-1.1.2 lib/wurfl/command/sanitycheck.rb
wurfl-1.2.0 lib/wurfl/command/sanitycheck.rb
wurfl-1.3.0 lib/wurfl/command/sanitycheck.rb
wurfl-1.3.1 lib/wurfl/command/sanitycheck.rb
wurfl-1.1.0 lib/wurfl/command/sanitycheck.rb