rubymotionlisp 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/rubylisp/parser.rb +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4a7f855a645ca2da4b3ac56a471bf9cab2a18439
|
|
4
|
+
data.tar.gz: 5e0fe70dfe0318e3b3dc3f1adf05b880f600395d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8010d8d7aa0c49300f5203ddfbc1c5db4a98f2ec3ee098310f1f53124fd351c1c7b32d9792c0a9bdec1bd44a9f4371e602175555c2affa7b77b764352a758e40
|
|
7
|
+
data.tar.gz: c6ec1463534d9d6bd4df63bdb85dbfd22c3babb782e2f4b5d3e186e6a5fa07a4ca7ddca827d174f491cb62b68577cf44a00903375098834dd95340e3be8d8705
|
data/lib/rubylisp/parser.rb
CHANGED
|
@@ -173,6 +173,8 @@ module Lisp
|
|
|
173
173
|
when :COMMAAT
|
|
174
174
|
expr = parse_sexpr(tokens)
|
|
175
175
|
return Lisp::ConsCell.array_to_list([Lisp::Symbol.named('unquote-splicing'), expr])
|
|
176
|
+
when :WHITESPACE
|
|
177
|
+
next
|
|
176
178
|
when :ILLEGAL
|
|
177
179
|
return Lisp::Debug.process_error("Illegal token: #{lit} on line #{tokens.line_number}", Lisp::EnvironmentFrame.global)
|
|
178
180
|
else
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubymotionlisp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dave Astels
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-01-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: An embeddable Lisp as an extension language for RubyMotion
|
|
14
14
|
email: dastels@icloud.com
|