Sha256: fe5707a5ada542b5bd7f80e7a1d57a5de944c9bf9cc919db683b0b295db78ce5
Contents?: true
Size: 1000 Bytes
Versions: 2
Compression:
Stored size: 1000 Bytes
Contents
# Compile a CQL file into an ActiveFacts vocabulary. # # Copyright (c) 2009 Clifford Heath. Read the LICENSE file. # require 'activefacts/vocabulary' require 'activefacts/cql/parser' require 'activefacts/cql/compiler' module ActiveFacts module Input #:nodoc: # Compile CQL to an ActiveFacts vocabulary. # Invoke as # afgen --<generator> <file>.cql class CQL # Read the specified file def self.readfile(filename) File.open(filename) {|file| read(file, filename) } rescue => e puts e.message+"\n\t"+e.backtrace*"\n\t" if debug :exception raise "In #{filename} #{e.message.strip}" end # Read the specified input stream def self.read(file, filename = "stdin") readstring(file.read, filename) end # Read the specified input string def self.readstring(str, filename = "string") ActiveFacts::CQL::Compiler.new(str, filename).vocabulary end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
activefacts-0.8.6 | lib/activefacts/input/cql.rb |
activefacts-0.8.5 | lib/activefacts/input/cql.rb |