blockenspiel 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +4 -0
- data/ImplementingDSLblocks.txt +686 -0
- data/Manifest.txt +9 -0
- data/README.txt +346 -0
- data/Rakefile +49 -0
- data/lib/blockenspiel.rb +544 -0
- data/tests/tc_basic.rb +135 -0
- data/tests/tc_dsl_methods.rb +283 -0
- data/tests/tc_mixins.rb +206 -0
- metadata +87 -0
metadata
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: blockenspiel
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Daniel Azuma
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
|
|
12
|
+
date: 2008-10-20 00:00:00 -07:00
|
|
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.0
|
|
34
|
+
version:
|
|
35
|
+
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
|
|
38
|
+
executables: []
|
|
39
|
+
|
|
40
|
+
extensions: []
|
|
41
|
+
|
|
42
|
+
extra_rdoc_files:
|
|
43
|
+
- History.txt
|
|
44
|
+
- ImplementingDSLblocks.txt
|
|
45
|
+
- Manifest.txt
|
|
46
|
+
- README.txt
|
|
47
|
+
files:
|
|
48
|
+
- History.txt
|
|
49
|
+
- ImplementingDSLblocks.txt
|
|
50
|
+
- Manifest.txt
|
|
51
|
+
- README.txt
|
|
52
|
+
- Rakefile
|
|
53
|
+
- lib/blockenspiel.rb
|
|
54
|
+
- tests/tc_basic.rb
|
|
55
|
+
- tests/tc_mixins.rb
|
|
56
|
+
- tests/tc_dsl_methods.rb
|
|
57
|
+
has_rdoc: true
|
|
58
|
+
homepage: http://virtuoso.rubyforge.org/blockenspiel
|
|
59
|
+
post_install_message:
|
|
60
|
+
rdoc_options:
|
|
61
|
+
- --main
|
|
62
|
+
- README.txt
|
|
63
|
+
require_paths:
|
|
64
|
+
- lib
|
|
65
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
66
|
+
requirements:
|
|
67
|
+
- - ">="
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: "0"
|
|
70
|
+
version:
|
|
71
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: "0"
|
|
76
|
+
version:
|
|
77
|
+
requirements: []
|
|
78
|
+
|
|
79
|
+
rubyforge_project: virtuoso
|
|
80
|
+
rubygems_version: 1.3.0
|
|
81
|
+
signing_key:
|
|
82
|
+
specification_version: 2
|
|
83
|
+
summary: Blockenspiel is a helper library designed to make it easy to implement DSL blocks
|
|
84
|
+
test_files:
|
|
85
|
+
- tests/tc_basic.rb
|
|
86
|
+
- tests/tc_dsl_methods.rb
|
|
87
|
+
- tests/tc_mixins.rb
|