Class: Module

Inherits:
Object
  • Object
show all
Defined in:
lib/inline.rb

Overview

module Inline

Instance Method Summary collapse

Instance Method Details

#inline(lang = :C, options = {}) {|builder| ... } ⇒ Object

Extends the Module class to have an inline method. The default language/builder used is C, but can be specified with the lang parameter.

Yields:

  • (builder)


831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
# File 'lib/inline.rb', line 831

def inline(lang = :C, options={})
  Inline.register self

  require "inline/#{lang}" unless Inline.const_defined? lang

  builder_class = Inline.const_get lang

  builder = builder_class.new self

  yield builder

  unless options[:testing] then
    unless builder.load_cache then
      builder.build
      builder.load
    end
  end
end