lisp 1.5.1 → 1.5.2

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/lisp/version.rb +1 -1
  3. data/lisp.gemspec +3 -3
  4. metadata +5 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3140fcbe7a7a85548c0efa3d612b29cc3fdd0cb152f90c913c6c3814c8425b36
4
- data.tar.gz: 2c48b33ebed20827bd71168ff5c3a54ee064682d3dc1abfaaf3a5679f7f92777
3
+ metadata.gz: 600c4afdb71f1e0635249197b7d0eb7fa9c55a5dabf11bffa5e636f61858712e
4
+ data.tar.gz: c73dade15637b2226120e61b31d41ae23363fb25cc4ba462e302dc1c32822855
5
5
  SHA512:
6
- metadata.gz: e642ce75f5b2aea99869cf57049c722dedb51afaff16d49d9108ef665bc500564589c848a64bdb9ca3822866a2e7c0ce74cfa59723d675608c9862600d3c2262
7
- data.tar.gz: 0511e2a95f6bf7851f29ab4e46ce33f2a927deb9efd9e463ad819b836113b3d3953781adb1301e86d35a3634a7b8e04bd141cbe4839a0ac7bf182da03f524b15
6
+ metadata.gz: 88191d156aba236ac005556a8002a24ab12f54129cb3aac6e82502dfa0741f320cf9e535299a0716e8fd2f41ce1f6f005b11d0a88c746a516d0951ae3d0188b4
7
+ data.tar.gz: 919dc08c1f74c65b878e734443d868a2cd006c6bda3a24d4d6c5850aeff1428da591da8d45b392509d4c238f780e86dc4450e7490535d0f3287d6fcee4144d44
data/lib/lisp/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Lisp
2
- VERSION = '1.5.1'.freeze
2
+ VERSION = '1.5.2'.freeze
3
3
  end
data/lisp.gemspec CHANGED
@@ -9,9 +9,9 @@ Gem::Specification.new do |spec|
9
9
  spec.version = Lisp::VERSION
10
10
  spec.authors = ["James Moriarty"]
11
11
  spec.email = ["jamespaulmoriarty@gmail.com"]
12
- spec.summary = %q{Lisp Interpreter in Ruby.}
13
- spec.description = ""
14
- spec.homepage = ""
12
+ spec.summary = %q{Lisp interpreter}
13
+ spec.description = "Minimal Lisp interpreter using 75LOC and only standard libraries excluding the REPL. Inspired by Lis.py."
14
+ spec.homepage = "https://github.com/jamesmoriarty/lisp"
15
15
  spec.license = "MIT"
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lisp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.1
4
+ version: 1.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Moriarty
@@ -80,7 +80,8 @@ dependencies:
80
80
  - - ">"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '5'
83
- description: ''
83
+ description: Minimal Lisp interpreter using 75LOC and only standard libraries excluding
84
+ the REPL. Inspired by Lis.py.
84
85
  email:
85
86
  - jamespaulmoriarty@gmail.com
86
87
  executables:
@@ -102,7 +103,7 @@ files:
102
103
  - lisp.gemspec
103
104
  - test/lisp_test.rb
104
105
  - test/support/simplecov.rb
105
- homepage: ''
106
+ homepage: https://github.com/jamesmoriarty/lisp
106
107
  licenses:
107
108
  - MIT
108
109
  metadata: {}
@@ -124,7 +125,7 @@ requirements: []
124
125
  rubygems_version: 3.0.3
125
126
  signing_key:
126
127
  specification_version: 4
127
- summary: Lisp Interpreter in Ruby.
128
+ summary: Lisp interpreter
128
129
  test_files:
129
130
  - test/lisp_test.rb
130
131
  - test/support/simplecov.rb