Default content goes here.
181 | <% end %> 182 |├── spec ├── internal │ ├── log │ │ └── .gitignore │ ├── app │ │ ├── views │ │ │ ├── nestive │ │ │ │ ├── index.html.erb │ │ │ │ ├── extended_one.html.erb │ │ │ │ ├── extended_two.html.erb │ │ │ │ ├── extended_three.html.erb │ │ │ │ ├── extended_without_yield.html.erb │ │ │ │ ├── purge_single.html.erb │ │ │ │ ├── purge_multiple.html.erb │ │ │ │ ├── replace.html.erb │ │ │ │ ├── append.html.erb │ │ │ │ └── prepend.html.erb │ │ │ └── layouts │ │ │ │ ├── extend_without_yield.html.erb │ │ │ │ ├── extend_two.html.erb │ │ │ │ ├── extend_one.html.erb │ │ │ │ └── nestive.html.erb │ │ └── controllers │ │ │ ├── application_controller.rb │ │ │ └── nestive_controller.rb │ └── config │ │ └── routes.rb ├── spec_helper.rb └── controllers │ └── nestive_spec.rb ├── .gitignore ├── lib ├── nestive │ ├── version.rb │ ├── railtie.rb │ └── layout_helper.rb └── nestive.rb ├── Rakefile ├── Gemfile ├── config.ru ├── .yardopts ├── gemfiles ├── rails_5_0.gemfile ├── rails_3_1.gemfile ├── rails_3_2.gemfile ├── rails_4_0.gemfile ├── rails_4_1.gemfile ├── rails_4_2.gemfile ├── rails_4_0.gemfile.lock ├── rails_4_1.gemfile.lock ├── rails_3_1.gemfile.lock ├── rails_3_2.gemfile.lock ├── rails_4_2.gemfile.lock └── rails_5_0.gemfile.lock ├── Appraisals ├── .travis.yml ├── nestive.gemspec ├── MIT-LICENSE └── README.md /spec/internal/log/.gitignore: -------------------------------------------------------------------------------- 1 | *.log -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .rvmrc 2 | doc 3 | .yardoc 4 | pkg 5 | Gemfile.lock 6 | -------------------------------------------------------------------------------- /spec/internal/app/views/nestive/index.html.erb: -------------------------------------------------------------------------------- 1 |
extended: one
-------------------------------------------------------------------------------- /spec/internal/app/views/nestive/extended_two.html.erb: -------------------------------------------------------------------------------- 1 |extended: two
-------------------------------------------------------------------------------- /spec/internal/app/views/nestive/extended_three.html.erb: -------------------------------------------------------------------------------- 1 | <% append :title, 'lol' %> -------------------------------------------------------------------------------- /spec/internal/app/views/nestive/extended_without_yield.html.erb: -------------------------------------------------------------------------------- 1 |extended: without_yield
2 | -------------------------------------------------------------------------------- /spec/internal/config/routes.rb: -------------------------------------------------------------------------------- 1 | Rails.application.routes.draw do 2 | get ':controller/:action' 3 | end 4 | -------------------------------------------------------------------------------- /spec/internal/app/views/nestive/purge_single.html.erb: -------------------------------------------------------------------------------- 1 |Default content goes here.
181 | <% end %> 182 |