New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

ruby-method-locate

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ruby-method-locate

Finds position of ruby methods/modules/classes in a file. Intended for use in code editors.

latest
Source
npmnpm
Version
0.0.6
Version published
Maintainers
1
Created
Source

ruby-method-locate

Build Status

Finds position of ruby methods/modules/classes in a file. Intended for use in code editors.

const rubyLocate = require('ruby-method-locate');

rubyLocate('./main.rb').then(result => {
  // ...
}).catch( failure => {
  // some file access error
});

If main.rb contains:

module MyModule
  class MyClass
    def initialize
    end

    def call
    end
  end
end

the locator will return a promise which resolves with:

{ module:
  { MyModule:
      { posn: { line: 0, char: 7 },
        class:
        { MyClass:
            { posn: { line: 1, char: 8 },
              method:
              { initialize: { posn: { line: 2, char: 8 } },
                call: { posn: { line: 5, char: 8 } }
              } } } } } }

returns undefined if there are no modules, classes or methods in the file.

Keywords

ruby

FAQs

Package last updated on 05 Mar 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts