block-chainable 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,8 @@
1
+ === 0.1.1 / 2008-05-23
2
+
3
+ * 1 minor enhancement
4
+ * Classes instantiated through blocks (using start) return the result of executing the block
5
+
1
6
  === 0.1.0 / 2008-04-08
2
7
 
3
8
  * 1 major enhancement
data/README.txt CHANGED
@@ -1,6 +1,7 @@
1
1
  = BlockChainable
2
2
 
3
3
  * http://block-chainable.rubyforge.org
4
+ * source - http://github.com/dfg59/block-chainable/tree/master
4
5
 
5
6
  == DESCRIPTION:
6
7
 
@@ -161,7 +162,8 @@ you to assert values within the blocks as well as calling any other methods from
161
162
 
162
163
  == INSTALL:
163
164
 
164
- * sudo gem install block-chainable
165
+ * rubyforge - sudo gem install block-chainable
166
+ * github - sudo gem install dfg59-block-chainable --source=http://gems.github.com
165
167
 
166
168
  == LICENSE:
167
169
 
data/Rakefile CHANGED
@@ -6,11 +6,11 @@ require 'need'
6
6
  require 'spec/rake/spectask'
7
7
  need{'./lib/block_chainable.rb'}
8
8
 
9
- Hoe.new('block-chainable', '0.1.0') do |p|
9
+ Hoe.new('block-chainable', '0.1.1') do |p|
10
10
  p.rubyforge_name = 'block-chainable'
11
11
  p.author = 'Drew Olson'
12
- p.email = 'olsonas@gmail.com'
13
- # p.summary = 'FIX'
12
+ p.email = 'drew@drewolson.org'
13
+ p.summary = 'tool for building DSLs with blocks'
14
14
  p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
15
15
  p.url = "http://block-chainable.rubyforge.org"
16
16
  p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
@@ -16,8 +16,6 @@ module BlockChainable
16
16
  end
17
17
 
18
18
  klass_instance.instance_eval(&block)
19
-
20
- klass_instance
21
19
  end
22
20
 
23
21
  def inherited(klass)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: block-chainable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Drew Olson
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-04-10 00:00:00 -07:00
12
+ date: 2008-05-23 00:00:00 -05:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -40,7 +40,7 @@ dependencies:
40
40
  version: 1.5.1
41
41
  version:
42
42
  description: "== DESCRIPTION: BlockChainable is a module to aid in the creation of Domain Specific Languages using block structure. By including BlockChainable into your classes, you will be able to instantiate that class using the class name itself, followed by any parameters to be passed to initialize, followed by a block to be executed within the instantiated class. BlockChainable also allows methods to search up the chain of classes, meaning that although a block is executed in the scope of the instantiated class, any methods not found in the class but found in a class \"up-scope\" will be called successfully on the up-scope class. This chaining of method calls allows you to assert values within the blocks as well as calling any other methods from \"up-scope\" classes. == FEATURES/PROBLEMS:"
43
- email: olsonas@gmail.com
43
+ email: drew@drewolson.org
44
44
  executables: []
45
45
 
46
46
  extensions: []
@@ -88,9 +88,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
88
  requirements: []
89
89
 
90
90
  rubyforge_project: block-chainable
91
- rubygems_version: 1.1.0
91
+ rubygems_version: 1.1.1
92
92
  signing_key:
93
93
  specification_version: 2
94
- summary: BlockChainable is a module to aid in the creation of Domain Specific Languages using block structure
94
+ summary: tool for building DSLs with blocks
95
95
  test_files:
96
96
  - test/test_block_chainable.rb