Class: Neovim::Plugin::Handler Private
- Inherits:
-
Object
- Object
- Neovim::Plugin::Handler
- Defined in:
- lib/neovim/plugin/handler.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary collapse
- #block ⇒ Object readonly private
Instance Method Summary collapse
- #call(*args) ⇒ Object private
-
#initialize(source, type, name, sync, options, block) ⇒ Handler
constructor
private
A new instance of Handler.
- #qualified_name ⇒ Object private
- #sync? ⇒ Boolean private
- #to_spec ⇒ Object private
Constructor Details
#initialize(source, type, name, sync, options, block) ⇒ Handler
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Handler.
7 8 9 10 11 12 13 14 |
# File 'lib/neovim/plugin/handler.rb', line 7 def initialize(source, type, name, sync, , block) @source = source @type = type.to_sym @name = name.to_s @sync = !!sync @options = @block = block || Proc.new {} end |
Instance Attribute Details
#block ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
5 6 7 |
# File 'lib/neovim/plugin/handler.rb', line 5 def block @block end |
Instance Method Details
#call(*args) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
38 39 40 |
# File 'lib/neovim/plugin/handler.rb', line 38 def call(*args) @block.call(*args) end |
#qualified_name ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
16 17 18 19 20 21 22 23 |
# File 'lib/neovim/plugin/handler.rb', line 16 def qualified_name if @type == :autocmd pattern = @options.fetch(:pattern, "*") "#{@source}:#{@type}:#{@name}:#{pattern}" else "#{@source}:#{@type}:#{@name}" end end |
#sync? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
25 26 27 |
# File 'lib/neovim/plugin/handler.rb', line 25 def sync? @sync end |
#to_spec ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
29 30 31 32 33 34 35 36 |
# File 'lib/neovim/plugin/handler.rb', line 29 def to_spec { :type => @type, :name => @name, :sync => @sync, :opts => @options, } end |