Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はCellを使用していて、それらは素晴らしいですがapp/views/shared/、Cell内で使用したいコンポーネントがいくつかあります。
app/views/shared/
それは可能ですか?
それはドキュメントで説明されました:)
セル内のアプリ/ビューからグローバルパーシャルをレンダリングする必要がある場合があります。たとえば、gmaps4railsヘルパーはグローバルパーシャルに依存しています。これによりカプセル化が解除されますが、セル内でも可能です。グローバルビューパスを追加するだけです。
class MapCell < Cell::Rails append_view_path "app/views"
(https://github.com/apotonick/cellsから取得)