Sha256: 082244da791dee99459343f552d03053cded72e8cbab0e3df868ed3e76a291ae

Contents?: true

Size: 986 Bytes

Versions: 4

Compression:

Stored size: 986 Bytes

Contents

require 'bundler/gem_tasks'
require 'junoser/development'
require 'nokogiri'
require 'pathname'
require 'rake/testtask'

xsd_path = File.join(__dir__, 'tmp/junos-system-17.2.xsd')
rule_path = File.join(__dir__, 'tmp/rule.rb')
parser_path = File.join(__dir__, 'lib/junoser/parser.rb')

def open_files(input, output, &block)
  i = open(input)
  o = open(output, 'w')

  yield i, o

  i.close
  o.close
end


namespace :build do
  desc 'Build an intermediate config hierarchy'
  task(:config) do
    open_files(xsd_path, rule_path) do |input, output|
      Nokogiri::XML(input).root.remove_unused.xpath('/xsd:schema/*').each do |e|
        output.puts e.to_config
      end
    end
  end

  desc 'Build the parser'
  task(:rule) do
    open_files(rule_path, parser_path) do |input, output|
      output.puts Junoser::Ruler.new(input).to_rule
    end
  end
end


Rake::TestTask.new do |t|
  t.libs << 'test'

  t.verbose = true
  t.warning = false
end

desc 'Run tests'
task default: :test

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
junoser-0.3.3 Rakefile
junoser-0.3.2 Rakefile
junoser-0.3.1 Rakefile
junoser-0.3.0 Rakefile