🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

ruby_parser

Package Overview
Dependencies
Maintainers
1
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ruby_parser - rubygems Package Compare versions

Comparing version
3.7.1
to
3.7.2
+6
-0
History.txt

@@ -0,1 +1,7 @@

=== 3.7.2 / 2015-10-26
* 1 bug fix:
* I hate regexen. Fixed a lexing bug confusing strings vs labels. (phiggins)
=== 3.7.1 / 2015-08-06

@@ -2,0 +8,0 @@

+2
-2

@@ -671,6 +671,6 @@ # encoding: UTF-8

def process_label_or_string text
if @was_label && text =~ /:$/ then
if @was_label && text =~ /:\Z/ then
@was_label = nil
return process_label text
elsif text =~ /:$/ then
elsif text =~ /:\Z/ then
ss.pos -= 1 # put back ":"

@@ -677,0 +677,0 @@ text = text[0..-2]

@@ -94,3 +94,3 @@ # encoding: ASCII-8BIT

module RubyParserStuff
VERSION = "3.7.1" unless constants.include? "VERSION" # SIGH
VERSION = "3.7.2" unless constants.include? "VERSION" # SIGH

@@ -97,0 +97,0 @@ attr_accessor :lexer, :in_def, :in_single, :file

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display