Search code examples
ruby-on-rails-4rubygemszurb-foundation-6

Can't make foudantion-rails gem work


SW Versions:

  • ruby 2.3.0
  • rails 4.2.5.1
  • foundation-rails 6.2.0.1

I'm using the foundation-rails gem in an empty rails app with just a basic scaffold controller, model and views. I installed it following these instructions in the gem gitHub page. I get the basic Foundation markup (links, tables, buttons...), but any other stuff doesn't work, for example, if i try to insert a side navigation menu using this code (from the foundation website):

<ul class="side-nav">
  <li><a href="#">Link 1</a></li>
  <li><a href="#">Link 2</a></li>
  <li><a href="#">Link 3</a></li>
  <li><a href="#">Link 4</a></li>
</ul>

I get this:

enter image description here

The foundation css file generated from the scss files is here

Any ideas?


Solution

  • Updating to version 6.2.1 fixed the issue