
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
ruby-method-locate
Advanced tools
Finds position of ruby methods/modules/classes in a file. Intended for use in code editors.
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.
FAQs
Finds position of ruby methods/modules/classes in a file. Intended for use in code editors.
We found that ruby-method-locate demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.