Sha256: 107a8aefe43f04992079268a97ff6a06e1223cbb5e25d13341cf1bfccc442c7d

Contents?: true

Size: 824 Bytes

Versions: 27

Compression:

Stored size: 824 Bytes

Contents

#!/usr/bin/env ruby -w -I..

if $0 == __FILE__ then

  class File
    def File.sjoin(*args)
      File.join(args.select{ | o | o })
    end
  end

  require 'xamplr-generator'

  include XamplGenerator
  include Xampl

  Xampl.transaction("setup", :in_memory) do
    directory = File.sjoin(".", "xampl_generated_code")

    options = Xampl.make(Options) do |options|
      options.new_index_attribute("pid").persisted = true
      options.new_index_attribute("id")

      options.resolve("http://xampl.com/stuff", "TestingStuff", "s")
    end

    filenames = Dir.glob("./xml/**/*.xml")

    generator = Generator.new
    generator.go(:options => options,
                 :filenames => filenames,
                 :directory => directory)

    #puts generator.print_elements("./generated-elements.xml")
    exit!
  end
end

Version data entries

27 entries across 27 versions & 2 rubygems

Version Path
xamplr-1.9.5 regression/tightly-nested-mutual-mentions/xampl-gen.rb
xamplr-1.9.4 regression/tightly-nested-mutual-mentions/xampl-gen.rb
xamplr-1.9.3 regression/tightly-nested-mutual-mentions/xampl-gen.rb
xamplr-1.9.2 regression/tightly-nested-mutual-mentions/xampl-gen.rb
xamplr-1.9.1 regression/tightly-nested-mutual-mentions/xampl-gen.rb
xamplr-1.9.0 regression/tightly-nested-mutual-mentions/xampl-gen.rb
xamplr-1.3.15 regression/tightly-nested-mutual-mentions/xampl-gen.rb