cells icon indicating copy to clipboard operation
cells copied to clipboard

View components for Ruby and Rails.

Results 54 cells issues
Sort by recently updated
recently updated
newest added

http://trailblazer.to/gems/cells/cells4.html ``` Cells per default does not escape HTML. However, you may run into problems when using Rails helpers. Internally, those helpers often blindly escape. This is not Cells’ fault...

1. It seems that cache does not take into consideration neither template not cell code change. Rails does template digesting to combat this 2. Say I want only a part...

I started to upgrade cells from 3.11.2 to 4.0.4 basing on https://github.com/apotonick/cells/wiki/From-Cells-3-to-Cells-4---Upgrading-Guide (I also added `cells-slim` gem since my views are in slim). So I have such cell now: **app/cells/permissions_cell.rb**...

Hi, "I think you got it all wrong" ;) Well, no, quite possibly not everything, many things seem nice, but this particular part here........ http://trailblazer.to/gems/cells/api.html#html-escaping Logically, IMHO "escaping" (or, possibly...

Hello! I've been using cells fo some time now in one of my projects. Encountered some error once (i can't remember what exactly it was and found a solution in...

Cells is a **great** gem, and in my opinion should be part of core Rails. Kudos to Nick. Sometimes though, it can be really hard to track down bugs. The...

Hey guys, I'm having some issue with Airbrake and Cells. Gems used: ``` airbrake (7.1.0) airbrake-ruby (2.6.0) cells (4.1.7) cells-haml (0.0.10) cells-rails (0.0.8) ``` The problem occurs when there is...

I don't know if is a bug but I have the following Cell ```ruby class SchedulesCell < Cell::ViewModel def show render end def daily render end def weekly render end...

In upgrading from 3 to 4 (cells seems to be the most changeable gem I've ever worked with, and I've been using it for a long time :)), I was...

``` ruby class TestCell < Cell::Rails build do SubCell end def my_action render :text => "foo" end end class SubCell < Cell::Rails build do SubSubCell end end class SubSubCell <...