Sha256: 4f2de6858b1f76e2c35fe3f7911be9f7b4f14f810d6a2b58855b3cecea3fd6a1
Contents?: true
Size: 654 Bytes
Versions: 3
Compression:
Stored size: 654 Bytes
Contents
require "blockly_interpreter/version" require "active_support/dependencies/autoload" require "active_support/core_ext" if defined?(::Rails::Engine) # Rails autoloading will take care of the requires for us, and explicitly doing it will # break it. require 'blockly_interpreter/engine' else module BlocklyInterpreter extend ActiveSupport::Autoload autoload :Block autoload :BlockLibrary autoload :CoreBlocks autoload :DSL autoload :DSLGenerator autoload :ExecutionContext autoload :GenericBlockDSLGenerator autoload :Interpreter autoload :Parser autoload :ProgramCache autoload :Program end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
blockly_interpreter-0.3.0 | lib/blockly_interpreter.rb |
blockly_interpreter-0.2.1 | lib/blockly_interpreter.rb |
blockly_interpreter-0.2.0 | lib/blockly_interpreter.rb |