liquid-rails
liquid-rails copied to clipboard
Renders liquid templates with layout and partial support
updated RubyGems to v2.5.2 updated bundler to v2.0 updated liquid gem to v4.0.3 updated kaminari gem to v1.2.2
Hi! Just found this gem as I am looking to use Liquid in my Rails 6 app. It looks like it hasn't been updated in 2 years tho. Is it...
`rails_50.gemfile` and `rails_51.gemfile` both require update to `.translate` method's second argument, switching it from `options.with_indifferent_access` to `**options.to_sym` `rails_52.gemifle` fails every test with this stacktrace: ```ruby Failure/Error: super NoMethodError: undefined method...
https://github.com/kaminari/kaminari/blob/master/CHANGELOG.md#121 resolve conflict with other Gemfile dependencies
Hello! Looks like Rails 6 has a slight change in template handler signature. ``` DEPRECATION WARNING: Single arity template handlers are deprecated. Template handlers must now accept two parameters, the...
When I run the `rails generate scaffold_controller Foo name:string` I get an error `liquid [not found]`. ```bash $ rails g scaffold_controller Foo name:string create app/controllers/foos_controller.rb error liquid [not found] invoke...
We have a project that has some classes in `app/filters` and consequently `spec/filters` that have nothing to do with Liquid, but the liquid-rails gem makes the assumption that whatever is...
Hi Chamnap, Thank you for making this library. I have been working with the code and have a working prototype for implementing the layout tag similar to what shopify has:...
Hi @radin-reth I hold my templates in app/templates and when attempt to include partials inside that directory i'm getting error about "No such template 'v14/html/shared/region_select'" . Is there way to...
Assume that in rails we can do something like this ` 'my_partial', :locals => { :my_var => 'value' } %>` How can do this in liquid? Thanks