0.0
No commit activity in last 3 years
No release in over 3 years
Small library that will help you to port a Merb-based app to Rails3
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

merb-to-rails3

About

merb-to-rails3 is a gem which adds several methods from Merb's API to your Rails 3 app in order to ease updating existing Merb app to Rails.

Things covered:

Controller:

  • redirect => redirect_to
  • before => before_filter
  • after => after_filter

Controller/View:

  • url(name) => name_path
  • resource(...) => ....._path
  • submit => submit_tag
  • css_include_tag => stylesheet_link_tag
  • js_include_tag => javascript_include_tag
  • throw_content(name) => content_for(name)
  • partial => render :partial