Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I'm not a high enough level yet to ask clarifying questions, but my first piece of advice is to clarify your question in the following way (consider this solid advice for posting any question anywhere):</p> <ul> <li><p>list the versions of rails, liquid, gems, ruby, etc that you are using (especially the rails version)</p></li> <li><p>copy-paste the entire output of your terminal where the error message is arising. While you may not understand that output, it is useful for someone else to debug your situation. Copy-pasting from the terminal (including the command you ran) leaves zero question</p></li> <li><p>provide better info on your file structure. Once again a terminal copy-paste is perfect. From your rails root, you could run the command <code>find lib</code> (unless you're on Windows, in which case you can't use find and it's time to consider switching to OSX or ubuntu).</p></li> </ul> <p>Here's an example of a terminal copy-paste that includes all that information:</p> <pre><code>dhcp-c-200:foo luke$ rails -v &amp;&amp; gem -v &amp;&amp; ruby -v &amp;&amp; gem list | grep liquid Rails 2.3.5 1.3.5 ruby 1.8.7 (2009-06-12 patchlevel 174) [universal-darwin10.0] dhcp-c-200:foo luke$ find lib lib lib/Liquid lib/Liquid/some_module_file.rb lib/tasks dhcp-c-200:foo luke$ script/server =&gt; Booting Mongrel =&gt; Rails 2.3.5 application starting on http://0.0.0.0:3000 /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:440:in `load_missing_constant': uninitialized constant Liquid::Template (NameError) from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:80:in `const_missing' from /Users/luke/Sites/foo/config/environment.rb:43 from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require' from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require' from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:156:in `require' from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:521:in `new_constants_in' from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:156:in `require' from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/rails-2.3.5/lib/commands/server.rb:84 from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require' from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require' from script/server:3 dhcp-c-200:foo luke$ cat lib/Liquid/some_module_file.rb module Liquid end module Liquid::Foo enddhcp-c-200:foo luke$ </code></pre> <p>... all in one terminal.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload