nendo 0.3.4 → 0.3.5
Sign up to get free protection for your applications and to get access to all the features.
- data/benchmark/benchmark.nnd +57 -0
- data/{example/tak.nnd → benchmark/nendo_benchmark_code.nnd} +6 -2
- data/benchmark/ruby_benchmark_code.rb +58 -0
- data/example/scratch.nnd +52 -6
- data/lib/debug/syslog.nndc +8 -6
- data/lib/init.nnd +14 -14
- data/lib/init.nndc +4142 -2932
- data/lib/nendo/test.nndc +308 -227
- data/lib/nendo.rb +41 -34
- data/lib/srfi-1.nndc +3572 -2599
- data/lib/text/html-lite.nndc +621 -440
- data/lib/text/tree.nndc +38 -27
- data/test/nendo_spec.rb +179 -149
- data/test/nendo_util.nnd +4 -3
- metadata +20 -7
- data/example/tak_ruby_version.rb +0 -14
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 3
|
8
|
-
-
|
9
|
-
version: 0.3.
|
8
|
+
- 5
|
9
|
+
version: 0.3.5
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Kiyoka Nishiyama
|
@@ -14,10 +14,22 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-
|
17
|
+
date: 2010-10-22 00:00:00 +09:00
|
18
18
|
default_executable: nendo
|
19
|
-
dependencies:
|
20
|
-
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: rspec
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
segments:
|
29
|
+
- 0
|
30
|
+
version: "0"
|
31
|
+
type: :development
|
32
|
+
version_requirements: *id001
|
21
33
|
description: Nendo is a programming language written in Ruby.
|
22
34
|
email: kiyoka@sumibi.org
|
23
35
|
executables:
|
@@ -27,6 +39,9 @@ extensions: []
|
|
27
39
|
extra_rdoc_files:
|
28
40
|
- README
|
29
41
|
files:
|
42
|
+
- benchmark/benchmark.nnd
|
43
|
+
- benchmark/nendo_benchmark_code.nnd
|
44
|
+
- benchmark/ruby_benchmark_code.rb
|
30
45
|
- bin/nendo
|
31
46
|
- emacs/nendo-mode.el
|
32
47
|
- example/KyotoCabinet/kcbench.rb
|
@@ -44,8 +59,6 @@ files:
|
|
44
59
|
- example/html-lite-sample.nnd
|
45
60
|
- example/nqueen.nnd
|
46
61
|
- example/scratch.nnd
|
47
|
-
- example/tak.nnd
|
48
|
-
- example/tak_ruby_version.rb
|
49
62
|
- example/twitterTL.nnd
|
50
63
|
- lib/debug/syslog.nnd
|
51
64
|
- lib/debug/syslog.nndc
|
data/example/tak_ruby_version.rb
DELETED