I have:
def self.host
@@host ||= something
endnow I want to convert it into this:
| module ActionController | |
| module Resources | |
| class Resource | |
| # Redefining methods from /usr/lib/ruby/gems/1.8/gems/actionpack-2.3.4/lib/action_controller/resources.rb so that the RESTful routes accept member_path option | |
| def member_path | |
| @member_path || options[:member_path] || "#{shallow_path_prefix}/#{path_segment}/:id" | |
| end |
| def default_url_options(options = {}) | |
| # resource hack so that url_for(@post) works like it should | |
| # if a post was given as a parameter to `post_path` it will be assigned to the first (unnassigned) parameter of the route (year) | |
| if options[:controller] == "posts" && options[:year].is_a?(Post) | |
| post = options[:year] | |
| options[:year] = post.year | |
| options.merge(:month => post.month, :slug => post.slug) | |
| else | |
| {} | |
| end |
I have:
def self.host
@@host ||= something
endnow I want to convert it into this:
| It's 8:00 o'clock on a Friday | |
| The regular crowd shuffles in | |
| there's an old man sitting next to me | |
| making love to his beer | |
| la la di di da | |
| la la di di da | |
| Sing us a song, you're the piano man! | |
| sing us a song tonight |
| ```bash | |
| ☺ vim --version 11:16 | |
| VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Oct 26 2012 16:45:32) | |
| Included patches: 1-547 | |
| Modified by [email protected] | |
| Compiled by buildd@ | |
| Huge version with GTK2-GNOME GUI. Features included (+) or not (-): | |
| +arabic +autocmd +balloon_eval +browse ++builtin_terms +byte_offset +cindent | |
| +clientserver +clipboard +cmdline_compl +cmdline_hist +cmdline_info +comments | |
| +conceal +cryptv +cscope +cursorbind +cursorshape +dialog_con_gui +diff |
| { | |
| "app/assets/javascripts/models/*.coffee": { | |
| "command": "jmodel", | |
| "alternate": "spec/javascripts/models/%s_spec.coffee", | |
| "template": "App.%S = DS.Model.extend" | |
| }, | |
| "app/assets/javascripts/controllers/*_controller.coffee": { | |
| "command": "jcontroller", | |
| "alternate": "spec/javascripts/controllers/%s_spec.coffee", |
| class BigDecimal | |
| def inspect | |
| format("#<BigDecimal:%x %s>", object_id, to_s('F')) | |
| end | |
| end |
I hereby claim:
To claim this, I am signing this object:
| require 'rom-mapper' | |
| class BigDecimal | |
| def inspect | |
| format("#<BigDecimal:%x %s>", object_id, to_s('F')) | |
| end | |
| end | |
| class Gateway | |
| def get_authors |