lr-console 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1081e5736bc3fc206d1b10ee96afbc6b3b088217
4
- data.tar.gz: 57a9f0041031ee0bef3245a85c50aed574e811e6
3
+ metadata.gz: 9ad2e590c9c17b617ce1bed37f99564445538225
4
+ data.tar.gz: dcfa07b756615c29975c167cedcd5fbb01495d79
5
5
  SHA512:
6
- metadata.gz: 5e08ffc4fa465d1e5c612e2b1ba47708802336412cabb32c5422e767f93347c03fe92663a17d78cc71bfae6cd091db683f67db64d7d0f207f6e968543d4d63e7
7
- data.tar.gz: 74ff16c5b4a0ab3836fd059b020ef451922020b6ec51f535b2086a88c73494300a91faab88dbad8b7f31cd956e447db703bbf31ea01876acd380a559ce2b418e
6
+ metadata.gz: c1964bc6bd0114dfb7ac8af9fdaa847254ac4f52fd3d8a71bd7a730c346c80764c3bf02893b79def538fe3289bc996c8a56797ed569ec060852297e5dc04b60c
7
+ data.tar.gz: 5c843a9942cff66c0af28ddaa5de79aa134030322489ea5830dc6754fc07d049ec9aed1312ac86830a17ab12d4ad37ee12cf20105ebcf67775842799a7ebeb93
data/.gitignore ADDED
@@ -0,0 +1,36 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /test/tmp/
9
+ /test/version_tmp/
10
+ /tmp/
11
+
12
+ ## Specific to RubyMotion:
13
+ .dat*
14
+ .repl_history
15
+ build/
16
+
17
+ ## Documentation cache and generated files:
18
+ /.yardoc/
19
+ /_yardoc/
20
+ /doc/
21
+ /rdoc/
22
+
23
+ ## Environment normalisation:
24
+ /.bundle/
25
+ /lib/bundler/man/
26
+
27
+ # for a library or gem, you might want to ignore these files since the code is
28
+ # intended to run in multiple environments; otherwise, check them in:
29
+ # Gemfile.lock
30
+ # .ruby-version
31
+ # .ruby-gemset
32
+
33
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
34
+ .rvmrc
35
+
36
+ .DS_Store
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'heist'
data/Gemfile.lock ADDED
@@ -0,0 +1,16 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ heist (0.3.3)
5
+ oyster (>= 0.9)
6
+ treetop (>= 1.2)
7
+ oyster (0.9.5)
8
+ polyglot (0.3.4)
9
+ treetop (1.5.3)
10
+ polyglot (~> 0.3)
11
+
12
+ PLATFORMS
13
+ ruby
14
+
15
+ DEPENDENCIES
16
+ heist
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 sorpa'as plat
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,4 @@
1
+ lr-console
2
+ ==========
3
+
4
+ Lisp Ruby Console
@@ -0,0 +1,14 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = 'lr-console'
3
+ s.version = '0.0.2'
4
+ s.date = '2014-05-12'
5
+ s.summary = "Yet another all-is-list scheme interpreter."
6
+ s.description = "A scheme interpreter that treat all things as lists."
7
+ s.authors = ["sorpa'as plat"]
8
+ s.email = 'sorpaas@gmail.com'
9
+ s.files = `git ls-files -z`.split("\x0")
10
+ s.executables << "lr-console"
11
+ s.homepage =
12
+ 'http://github.com/sorpaas/lr-console'
13
+ s.license = 'MIT'
14
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lr-console
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - sorpa'as plat
@@ -17,7 +17,13 @@ executables:
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
+ - ".gitignore"
21
+ - Gemfile
22
+ - Gemfile.lock
23
+ - LICENSE
24
+ - README.md
20
25
  - bin/lr-console
26
+ - lr-console.gemspec
21
27
  homepage: http://github.com/sorpaas/lr-console
22
28
  licenses:
23
29
  - MIT