- Includes All Features Critical to Launching 3.1 App
- User profiles and sign up (includes welcome page)
- Events
- Blog
- Partners
| def sidebar_link(text, image, url) | |
| img = image_tag(image, :class => "icon") | |
| link = link_to(url) { img + text } | |
| content_tag("li", link) | |
| end |
| class Foo | |
| foo = %w(a b c) | |
| BAR = %w(a b c) | |
| foo.each do |method| | |
| define_method(method) { p method.upcase! } | |
| end | |
| BAR.each do |method| | |
| define_method(method.upcase!) { p method } |