Questions tagged [trailblazer]

Trailblazer is a thin layer on top of Rails. It gently enforces encapsulation, an intuitive code structure and gives you an object-oriented architecture.

Trailblazer gives you a high-level architecture for web applications. It extends the basic MVC pattern with new abstractions. Rock-solid conventions that go far beyond database table naming or route paths let you focus on your application code, minimize bugs and improve the maintainability.

https://github.com/trailblazer/trailblazer

61 questions
-1
votes
1 answer

Rails & Cells: render array inside view

Right now array inside cells render like a string. How I can render an array like array inside cell view? def skill_options ["js", "ruby"] end call: <%= skill_options %> render: array outside cell: ["js", "ruby"] array inside cell: jsruby
Pavel
  • 2,103
  • 4
  • 23
  • 41
1 2 3 4
5