Remove controller actions to ensure there isn't a helper or anything related to displaying the changelog or MaRuKu any more.
Based off feedback from mailing list. Signed-off-by: Michael Stahnke <[email protected]> --- app/controllers/pages_controller.rb | 2 -- app/views/pages/release_notes.html.haml | 4 ---- 2 files changed, 0 insertions(+), 6 deletions(-) delete mode 100644 app/views/pages/release_notes.html.haml diff --git a/app/controllers/pages_controller.rb b/app/controllers/pages_controller.rb index 8fd9fcd..aac3f6c 100644 --- a/app/controllers/pages_controller.rb +++ b/app/controllers/pages_controller.rb @@ -10,6 +10,4 @@ class PagesController < ApplicationController @unchanged_nodes = @all_nodes.unchanged end - def release_notes - end end diff --git a/app/views/pages/release_notes.html.haml b/app/views/pages/release_notes.html.haml deleted file mode 100644 index 179ff7d..0000000 --- a/app/views/pages/release_notes.html.haml +++ /dev/null @@ -1,4 +0,0 @@ -#main - .item - .section - = markdown(File.read(Rails.root.join('RELEASE_NOTES.md'))) -- 1.7.4.4 -- You received this message because you are subscribed to the Google Groups "Puppet Developers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/puppet-dev?hl=en.
