Sha256: 67b239defd9a36fdb86ea61e283a89e94f8c8edad8f0fb23de03a4ad504a0af5

Contents?: true

Size: 379 Bytes

Versions: 3

Compression:

Stored size: 379 Bytes

Contents

#!/usr/bin/env ruby
$:.unshift File.join(File.dirname(__FILE__), "..", "lib")
require 'rubygems'
require 'getoptlong'
require 'dowl'
require 'erb'

PROGRAM     = File::basename $0

schema = DOWL::Schema.create_from_file(ARGV[0])
if ARGV[1]
  generator = DOWL::Generator.new( schema, ARGV[1] )
else
  generator = DOWL::Generator.new( schema )
end
file = generator.run()
puts file

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
dowl-0.7 bin/dowl
dowl-0.6 bin/dowl
dowl-0.5 bin/dowl