nendo 0.3.4 → 0.3.5

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 3
8
- - 4
9
- version: 0.3.4
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-09-09 00:00:00 +09:00
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
@@ -1,14 +0,0 @@
1
- #!/usr/local/bin/ruby
2
-
3
- # takeuchi function ( tarai mawashi bench )
4
- def tak( x, y, z )
5
- if y >= x
6
- y
7
- else
8
- tak( tak( x-1, y, z ),
9
- tak( y-1, z, x ),
10
- tak( z-1, x, y ))
11
- end
12
- end
13
-
14
- puts tak( 10, 5, 0 )