benhoskings-hammock 0.3.7 → 0.3.8

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 CHANGED
@@ -1,3 +1,8 @@
1
+ == 0.3.8 2009-06-05
2
+ Added LambdaAlias dep to RouteDrawingHooks, for Hammock.load_models.
3
+ Added LambdaComposition component.
4
+
5
+
1
6
  == 0.3.7 2009-06-05
2
7
  Rewrote hammock loading code to use nestable dependencies instead of the LoadFirst constant.
3
8
  Replaced Hammock::Aliases with the Hammock:LambdaAlias component.
data/Manifest.txt CHANGED
@@ -4,6 +4,7 @@ Manifest.txt
4
4
  README.rdoc
5
5
  Rakefile
6
6
  hammock.gemspec
7
+ init.rb
7
8
  lib/hammock.rb
8
9
  lib/hammock/ajaxinate.rb
9
10
  lib/hammock/callback.rb
@@ -14,6 +15,8 @@ lib/hammock/controller_attributes.rb
14
15
  lib/hammock/export_scope.rb
15
16
  lib/hammock/hamlink_to.rb
16
17
  lib/hammock/javascript_buffer.rb
18
+ lib/hammock/lambda_alias.rb
19
+ lib/hammock/lambda_composition.rb
17
20
  lib/hammock/logging.rb
18
21
  lib/hammock/model_attributes.rb
19
22
  lib/hammock/model_logging.rb
@@ -27,6 +30,7 @@ lib/hammock/monkey_patches/numeric.rb
27
30
  lib/hammock/monkey_patches/object.rb
28
31
  lib/hammock/monkey_patches/route_set.rb
29
32
  lib/hammock/monkey_patches/string.rb
33
+ lib/hammock/mutex.rb
30
34
  lib/hammock/overrides.rb
31
35
  lib/hammock/resource_mapping_hooks.rb
32
36
  lib/hammock/resource_retrieval.rb
data/hammock.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{hammock}
5
- s.version = "0.3.7"
5
+ s.version = "0.3.8"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Ben Hoskings"]
data/lib/hammock.rb CHANGED
@@ -4,7 +4,7 @@ require 'ambition'
4
4
  require 'ambition/adapters/active_record'
5
5
 
6
6
  module Hammock
7
- VERSION = '0.3.7'
7
+ VERSION = '0.3.8'
8
8
  IncludeTarget = ActionController::Base
9
9
 
10
10
  def self.included base # :nodoc:
@@ -1,7 +1,7 @@
1
1
  module Hammock
2
2
  module RouteDrawingHooks
3
3
  MixInto = ActionController::Routing::RouteSet
4
- Deps = [ModulePatches]
4
+ Deps = [LambdaAlias, ModulePatches]
5
5
 
6
6
  def self.included base # :nodoc:
7
7
  base.send :include, Methods
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: benhoskings-hammock
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.7
4
+ version: 0.3.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Hoskings