immutable 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,5 @@
1
+ $VERBOSE = true
2
+
1
3
  require "test/unit"
2
4
 
3
5
  def with_tailcall_optimization
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: immutable
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.2.0
5
+ version: 0.3.0
6
6
  platform: ruby
7
7
  authors:
8
8
  - Shugo Maeda
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2012-04-25 00:00:00 Z
13
+ date: 2012-09-07 00:00:00 Z
14
14
  dependencies: []
15
15
 
16
16
  description:
@@ -25,15 +25,22 @@ files:
25
25
  - lib/immutable.rb
26
26
  - lib/immutable/map.rb
27
27
  - lib/immutable/queue.rb
28
+ - lib/immutable/headable.rb
29
+ - lib/immutable/consable.rb
28
30
  - lib/immutable/stream.rb
31
+ - lib/immutable/output_restricted_deque.rb
29
32
  - lib/immutable/foldable.rb
33
+ - lib/immutable/deque.rb
30
34
  - lib/immutable/list.rb
31
35
  - lib/immutable/promise.rb
36
+ - benchmark/benchmark_deque.rb
32
37
  - benchmark/benchmark_queue.rb
38
+ - benchmark/benchmark_parallel_fib.rb
33
39
  - benchmark/benchmark_map.rb
34
40
  - test/test_helper.rb
35
41
  - test/immutable/test_list.rb
36
42
  - test/immutable/test_stream.rb
43
+ - test/immutable/test_deque.rb
37
44
  - test/immutable/test_map.rb
38
45
  - test/immutable/test_promise.rb
39
46
  - test/immutable/test_queue.rb