Is there a Sublime Text plugin for Ruby that, after I type class/def something
+ Enter, will automatically insert end
and place the curser in the class/method?
For example, typing def initialize(args)
+ Enter would result in:
def initialize(args)
#cursor here
end