Welcome To Snipplr
Everyone's Recent Snippets Tagged rails
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
This is an easy to use any helpers that rails provides in any other place besides views and view helpers
        
        
        
            1 
        
        
            1214 
        
                    posted 18 years ago by vanne
            This redirects visitors to a new URL using a 301 redirect. Using a 301 redirect is the safest way to let search engines like Google, Yahoo!, Live and Ask know your address has changed.
        
        
        
            3 
        
        
            2623 
        
                    posted 18 years ago by jonhenshaw
            Put this in environment.rb to use in your whole app or the console
        
        
        
            1 
        
        
            1194 
        
                    posted 18 years ago by vanne
            Renders the partial template called 'cart', sends along local variable @cart, this will be known locally using the same name as the partial, 'cart'.
        
        
        
            1 
        
        
            1169 
        
                    posted 18 years ago by wackimonki
            The code tests if session[:counter] exists. If you leave out the all important '?', it will fail with an error.
        
        
        
            1 
        
        
            1358 
        
                    posted 18 years ago by wackimonki
            This will add up all the prices and return it?
What does |item| mean exactly?
        
        
        
            2 
        
        
            1367 
        
                    posted 18 years ago by wackimonki
            Redirects from one method to another in a controller. This is handy when there's an error, and you need to go back to index page, or for other purposes.
        
        
        
            1 
        
        
            1252 
        
                    posted 18 years ago by wackimonki
            Adds a button in view, which triggers a method.
"Empty cart" is the button name
empty_cart is the method name
        
        
        
            1 
        
        
            1293 
        
                    posted 18 years ago by wackimonki
            Catches an exception error, uses a technique called flash to display error on another page.
The Ruby on Rails code needs to be in a controller.
The rhtml code needs to be in the index layout.
        
        
        
            1 
        
        
            1191 
        
                    posted 18 years ago by wackimonki
            Add this inside your .irbrc file to call "show Model" in your console instead of "y Model.column_names"
        
        
        
            1 
        
        
            1181 
        
                    posted 18 years ago by vanne
            Add this to your ~/.irbrc file and you will have inline logging in the console
        
        
        
            1 
        
        
            1125 
        
                    posted 18 years ago by vanne
            Use this to sanitize a string and convert all wierd characters to your choice of delimiter
        
        
        
            1 
        
        
            1216 
        
                    posted 18 years ago by vanne
            Define multiple associations on the same associated class.  From the Rails Way blog.
        
        
        
            1 
        
        
            990 
        
                    posted 18 years ago by gnatware
            used to remove unnecessary duplication of code. Code is from Jamis Buck (http://weblog.jamisbuck.org/2007/1/24/object-with_options)
        
        
        
            1 
        
        
            1224 
        
                    posted 18 years ago by andyh
            
