Created
January 13, 2012 13:54
-
-
Save blambeau/1606332 to your computer and use it in GitHub Desktop.
Temple uninitialized constant Temple::Mixins::CompiledDispatcher
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source :rubygems | |
gem "temple" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'temple' | |
# Uncomment the following line to get it work | |
#require 'temple/mixins/dispatcher' | |
class MyParser | |
def call(input); [:static, "Hello world"]; end | |
end | |
class MyEngine < Temple::Engine | |
use MyParser | |
generator :ArrayBuffer | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment