DISQUS

Building Browsergames: Building a Space Strategy Game with Ruby on Rails - Part II

  • muxe · 1 year ago
    Thanks for this tutorial, even though it was nothing new for me (pretty basic stuff) I'm looking forward to reading your next articles, especially when you will be talking about game logic. Thumbs up!
  • chase · 1 year ago
    Could not figure out why I was getting an error on the line <pre lang="ruby">Welcome <%=current_player.login%></pre> - turns out that changes to acts_as_authenticated mean the line <pre lang="ruby"><% if current_player %></pre> should now be <pre lang="ruby"><% if logged_in? %></pre>

    Wonderful blog, keep up the great work!