Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

analizaruptor

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

analizaruptor

  • 0.3.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Analizaruptor

Analizaruptor is a tool that looks for break, require, and provides commands (and does a teensy bit of code analyzing - it will detect VERY basic class and module declarations) to make your RubyMotion Rakefile and debugger_cmds files short and consistent.

CAUTION: It overwrites the debugger_cmds file!

To use, include this gem (gem 'analizaruptor'), and add app.analyze to your Rakefile, after you have added your libraries and whatnot. It looks at app.files and scans those files, so I mean it when I say "after you have added your libraries and whatnot". In your source code you can add Analizaruptor commands

# @provides Foo
# @requires Bar
# older syntax:
#--> provides Foo
#--> requires Bar
def scary_method
#-----> break
  doing
  interesting
  stuff
end

And those will be translated into directives for app.files_dependencies and debugger_cmds.

Run rake or rake debug=1, and off you go!

The syntax for a command is:

^#[ \t]*@(provides|requires)
or
^#--+> *(break|require|provides)( *(\w+|[0-9]+))?$

If a line number is given to the break command, a breakpoint will be added at that line, otherwise it will be added to the line below break. It's better to insert the #--> break where you NEED it, rather than hardcode line numbers. Line numbers are not constant.

FAQs

Package last updated on 07 Mar 2013

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc