stateology 0.2.0 → 0.2.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.
Files changed (3) hide show
  1. data/CHANGELOG +5 -0
  2. data/lib/stateology.rb +2 -1
  3. metadata +1 -1
data/CHANGELOG CHANGED
@@ -1,4 +1,9 @@
1
1
  13-6-09
2
+ * version 0.2.1
3
+ * ugh, fixed silly (and rare) bug
4
+
5
+ 13-6-09
6
+ * version 0.2.0
2
7
  * now supports ruby 1.9.1 and ruby 1.8.6
3
8
 
4
9
  3-12-08
@@ -35,7 +35,8 @@ module Stateology
35
35
 
36
36
  # if const is defined here then module_eval
37
37
  if const_defined?(name, *pram) then
38
- self.module_eval(&block)
38
+ m = self.const_get(name)
39
+ m.module_eval(&block)
39
40
  else
40
41
 
41
42
  m = Module.new
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stateology
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Mair