Socket
Book a DemoInstallSign in
Socket

sorcerer

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sorcerer

2.0.1
bundlerRubygems
Version published
Maintainers
2
Created
Source

Sorcerer -- Recovering the Source

Master
Master Build Status

Sorcerer will generate Ruby code from a Ripper-like abstract syntax tree (i.e. S-Expressions).

Sorcerer is targeted mainly at small snippets of Ruby code, expressable in a single line. Longer examples may be re-sourced, but they will be rendered in a single line format.

Version: 2.0.1

Limitations

Sorcerer only supports Ruby 2.0 & up.

DescriptionLink
Documentshttp://github.com/rspec-given/sorcerer
Git Clonegit://github.com/rspec-given/sorcerer.git
Issues / Bug Trackinghttps://github.com/rspec-given/sorcerer/issues
Continuous Integrationhttp://travis-ci.org/#!/rspec-given/sorcerer

Examples

  sexp = [:binary,
           [:var_ref, [:@ident, "a", [1, 0]]],
           :+,
           [:var_ref, [:@ident, "b", [1, 4]]]]
  puts Sorcerer.source(sexp)

will generate

  a + b

Ripper may be used to produce the s-expressions used by Sorcerer. The following will produce the same output.

  sexp = Ripper::SexpBuilder.new("a + b").parse
  puts Sorcerer.source(sexp)

Options

No Options

By default, sorcerer will output its source in single line mode.

For example, given:

  sexp = Ripper::SexpBuilder.new("def foo; bar; end").parse

Then the following

  puts Sorcerer.source(sexp)

generates single line output (the default):

def foo; bar; end

Multi-Line Output

If you want multi-line output of source, add the multiline option to the source command.

For example, given the sexp generated above, then this

  puts Sorcerer.source(sexp, multiline: true)

generates multi-line output

def foo
bar
end

(Note that all multi-line output will have a final newline.)

Indentation

By default, sorcerer does not indent its multiline output. Adding the "indent" option will cause the output to be indented.

For example, given the sexp generated above, then the following

  puts Sorcerer.source(sexp, indent: true)

generates indented output:

def foo
  bar
end

Debugging Output

If you wish to see the S-Expressions processed by Sorcerer and the output emitted, then use the debug option:

  puts Sorcerer.source(sexp, debug: true)

License

Sorcerer is available under the terms of the MIT license. See the MIT-LICENSE file for details.

History

  • 2.0.0 - Fix several bugs introduced by changes to ripper under 2.5 & 2.6, drop 1.9.3 support

  • 1.0.2 - Fix bug in interpolated regular expression resourcing.

  • 1.0.1 - Add support for missing exception class or variable in rescue (from Trent Ogren).

  • 1.0.0 - Ready for the work, version 1!

  • 0.3.11 - Fix support for subexpressions involving Meth() calls.

  • 0.3.10 - Fix several issues with spaces in argument lists.

  • 0.3.9 - Support %i{} and %I{}.

  • 0.3.8 - Include constants in sub-expressions.

  • 0.3.7 - Include array in sub-expressions.

  • 0.3.6 - Support 'defined?'. Suppress nil, true, false in sub-expressions.

  • 0.3.5 - Add handler for mrhs_new.

  • 0.3.4 - Support 'meth a, b'.

  • 0.3.3 - Fix unary not.

  • 0.3.2 - Support 'def mod.method' syntax.

  • 0.3.1 - 1.9.3 support. Indenting stabby procs. RedCloth not required for testing.

  • 0.3.0 - New hash literal support. Multi-line output always end with a newline.

  • 0.2.0 - Added support for indented output.

  • 0.1.0 - Added support for multi-line output. Improved rendering of a number of constructs

  • 0.0.7 - Basic single line version

FAQs

Package last updated on 02 Dec 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

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.