RailsCasts Pro episodes are now free!

Learn more or hide this

johnwilde's Profile

GitHub User: johnwilde

Comments by

Avatar

Adding a thor command to thor.json and the following method in custom_plan.rb seems to do the trick

ruby
  def thor
    require 'thor/runner'
    $thor_runner = true
    Thor::Runner.start
  end
Avatar

Any suggestions for getting Zeus and Thor to work together?

Avatar

I found that I needed to change this line:
<% form_tag projects_path, :method => 'get' do %>
to
<%= form_tag projects_path, :method => 'get' do %>
in order to get the form to appear.