Sha256: 74b1b62c2cb069d9a16c4ba4478b2f4f00018d9012b083b8365795695963b7cb

Contents?: true

Size: 885 Bytes

Versions: 11

Compression:

Stored size: 885 Bytes

Contents

#
#       ActiveFacts Generators.
#       Generate *no* output for ActiveFacts vocabularies; i.e. just a stub
#
# Copyright (c) 2009 Clifford Heath. Read the LICENSE file.
#
require 'activefacts/persistence'

module ActiveFacts
  module Generate
    # Generate nothing from an ActiveFacts vocabulary. This is useful to check the file can be read ok.
    # Invoke as
    #   afgen --null <file>.cql
    class NULL
    private
      def initialize(vocabulary, *options)
        @vocabulary = vocabulary
        @vocabulary = @vocabulary.Vocabulary.values[0] if ActiveFacts::API::Constellation === @vocabulary
        @tables = options.include? "tables"
        @columns = options.include? "columns"
        @indices = options.include? "indices"
      end

    public
      def generate(out = $>)
        @vocabulary.tables if @tables || @columns || @indices
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
activefacts-0.8.16 lib/activefacts/generate/null.rb
activefacts-0.8.15 lib/activefacts/generate/null.rb
activefacts-0.8.13 lib/activefacts/generate/null.rb
activefacts-0.8.12 lib/activefacts/generate/null.rb
activefacts-0.8.10 lib/activefacts/generate/null.rb
activefacts-0.8.9 lib/activefacts/generate/null.rb
activefacts-0.8.8 lib/activefacts/generate/null.rb
activefacts-0.8.6 lib/activefacts/generate/null.rb
activefacts-0.8.5 lib/activefacts/generate/null.rb
activefacts-0.7.2 lib/activefacts/generate/null.rb
activefacts-0.7.3 lib/activefacts/generate/null.rb