blockenspiel 0.1.1 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,7 +5,7 @@
5
5
  # This file contains tests for the dsl method directives.
6
6
  #
7
7
  # -----------------------------------------------------------------------------
8
- # Copyright 2008 Daniel Azuma
8
+ # Copyright 2008-2009 Daniel Azuma
9
9
  #
10
10
  # All rights reserved.
11
11
  #
@@ -36,6 +36,7 @@
36
36
  ;
37
37
 
38
38
 
39
+ require 'test/unit'
39
40
  require File.expand_path("#{File.dirname(__FILE__)}/../lib/blockenspiel.rb")
40
41
 
41
42
 
data/tests/tc_dynamic.rb CHANGED
@@ -5,7 +5,7 @@
5
5
  # This file contains tests for dynamic DSL generation.
6
6
  #
7
7
  # -----------------------------------------------------------------------------
8
- # Copyright 2008 Daniel Azuma
8
+ # Copyright 2008-2009 Daniel Azuma
9
9
  #
10
10
  # All rights reserved.
11
11
  #
@@ -36,6 +36,7 @@
36
36
  ;
37
37
 
38
38
 
39
+ require 'test/unit'
39
40
  require File.expand_path("#{File.dirname(__FILE__)}/../lib/blockenspiel.rb")
40
41
 
41
42
 
data/tests/tc_mixins.rb CHANGED
@@ -6,7 +6,7 @@
6
6
  # including nested blocks and multithreading.
7
7
  #
8
8
  # -----------------------------------------------------------------------------
9
- # Copyright 2008 Daniel Azuma
9
+ # Copyright 2008-2009 Daniel Azuma
10
10
  #
11
11
  # All rights reserved.
12
12
  #
@@ -37,6 +37,7 @@
37
37
  ;
38
38
 
39
39
 
40
+ require 'test/unit'
40
41
  require File.expand_path("#{File.dirname(__FILE__)}/../lib/blockenspiel.rb")
41
42
 
42
43
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blockenspiel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Azuma
@@ -9,66 +9,50 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-11-06 00:00:00 -08:00
12
+ date: 2009-04-16 00:00:00 -07:00
13
13
  default_executable:
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
16
- name: mixology
17
- type: :runtime
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
20
- requirements:
21
- - - ">="
22
- - !ruby/object:Gem::Version
23
- version: 0.1.0
24
- version:
25
- - !ruby/object:Gem::Dependency
26
- name: hoe
27
- type: :development
28
- version_requirement:
29
- version_requirements: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: 1.8.2
34
- version:
14
+ dependencies: []
15
+
35
16
  description: Blockenspiel is a helper library designed to make it easy to implement DSL blocks. It is designed to be comprehensive and robust, supporting most common usage patterns, and working correctly in the presence of nested blocks and multithreading.
36
- email:
37
- - dazuma@gmail.com
17
+ email: dazuma@gmail.com
38
18
  executables: []
39
19
 
40
- extensions: []
41
-
20
+ extensions:
21
+ - ext/blockenspiel/extconf.rb
42
22
  extra_rdoc_files:
43
- - History.txt
44
- - ImplementingDSLblocks.txt
45
- - Manifest.txt
46
- - README.txt
23
+ - README.rdoc
24
+ - History.rdoc
25
+ - ImplementingDSLblocks.rdoc
47
26
  files:
48
- - History.txt
49
- - ImplementingDSLblocks.txt
50
- - Manifest.txt
51
- - README.txt
52
- - Rakefile
27
+ - ext/blockenspiel/unmixer.c
28
+ - ext/blockenspiel/extconf.rb
29
+ - ext/blockenspiel/BlockenspielUnmixerService.java
30
+ - lib/blockenspiel/impl.rb
31
+ - lib/blockenspiel/version.rb
53
32
  - lib/blockenspiel.rb
54
33
  - tests/tc_basic.rb
55
34
  - tests/tc_behaviors.rb
56
35
  - tests/tc_dsl_methods.rb
57
36
  - tests/tc_dynamic.rb
58
37
  - tests/tc_mixins.rb
38
+ - History.rdoc
39
+ - ImplementingDSLblocks.rdoc
40
+ - README.rdoc
41
+ - Rakefile
59
42
  has_rdoc: true
60
43
  homepage: http://virtuoso.rubyforge.org/blockenspiel
44
+ licenses: []
45
+
61
46
  post_install_message:
62
- rdoc_options:
63
- - --main
64
- - README.txt
47
+ rdoc_options: []
48
+
65
49
  require_paths:
66
50
  - lib
67
51
  required_ruby_version: !ruby/object:Gem::Requirement
68
52
  requirements:
69
53
  - - ">="
70
54
  - !ruby/object:Gem::Version
71
- version: "0"
55
+ version: 1.8.6
72
56
  version:
73
57
  required_rubygems_version: !ruby/object:Gem::Requirement
74
58
  requirements:
@@ -79,10 +63,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
79
63
  requirements: []
80
64
 
81
65
  rubyforge_project: virtuoso
82
- rubygems_version: 1.3.1
66
+ rubygems_version: 1.3.2
83
67
  signing_key:
84
- specification_version: 2
85
- summary: Blockenspiel is a helper library designed to make it easy to implement DSL blocks
68
+ specification_version: 3
69
+ summary: Blockenspiel is a helper library designed to make it easy to implement DSL blocks.
86
70
  test_files:
87
71
  - tests/tc_basic.rb
88
72
  - tests/tc_behaviors.rb
data/Manifest.txt DELETED
@@ -1,11 +0,0 @@
1
- History.txt
2
- ImplementingDSLblocks.txt
3
- Manifest.txt
4
- README.txt
5
- Rakefile
6
- lib/blockenspiel.rb
7
- tests/tc_basic.rb
8
- tests/tc_behaviors.rb
9
- tests/tc_dsl_methods.rb
10
- tests/tc_dynamic.rb
11
- tests/tc_mixins.rb