homeschool 0.0.1.41 → 0.0.1.44

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/lib/homeschool.rb CHANGED
@@ -152,6 +152,6 @@ class Hash
152
152
  keys.collect &method(:[])
153
153
  end
154
154
  end
155
-
155
+ require 'kernel_extensions'
156
156
  require 'standardized_test' if defined?(RAILS_ENV) && RAILS_ENV == 'test' || defined?(TEST_ENV)
157
157
  require 'tame_rails' if defined?(RAILS_ENV)
@@ -0,0 +1,11 @@
1
+ module Kernel
2
+ def yell(args)
3
+ puts "="*20 + "\n\n"
4
+ puts args
5
+ puts "\n\n" + "="*20
6
+ end
7
+
8
+ def tell(object)
9
+ yell object.inspect
10
+ end
11
+ end
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: homeschool
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.1.41
6
+ version: 0.0.1.44
7
7
  date: 2007-10-08 00:00:00 -04:00
8
8
  summary: The homeschool gem
9
9
  require_paths:
@@ -44,6 +44,7 @@ files:
44
44
  - lib/fight.rb
45
45
  - lib/form_buildr.rb
46
46
  - lib/homeschool.rb
47
+ - lib/kernel_extensions.rb
47
48
  - lib/model_extensions.rb
48
49
  - lib/standardized_test.rb
49
50
  - lib/tame_rails.rb