gestalt 0.0.7 → 0.0.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/gestalt.gemspec CHANGED
@@ -13,8 +13,8 @@ Gem::Specification.new do |s|
13
13
  ## If your rubyforge_project name is different, then edit it and comment out
14
14
  ## the sub! line in the Rakefile
15
15
  s.name = 'gestalt'
16
- s.version = '0.0.7'
17
- s.date = '2010-05-10'
16
+ s.version = '0.0.8'
17
+ s.date = '2010-05-12'
18
18
  s.rubyforge_project = 'gestalt'
19
19
 
20
20
  ## Make sure your summary is short. The description may be as long
data/lib/gestalt.rb CHANGED
@@ -5,7 +5,7 @@ require 'formatador'
5
5
 
6
6
  class Gestalt
7
7
 
8
- VERSION = '0.0.7'
8
+ VERSION = '0.0.8'
9
9
 
10
10
  attr_accessor :calls
11
11
 
@@ -77,6 +77,7 @@ class Gestalt
77
77
  when *@traceable_calls
78
78
  call = Gestalt::Call.new(
79
79
  :action => "#{classname}##{id}",
80
+ :binding => binding,
80
81
  :location => "#{file}:#{line}"
81
82
  )
82
83
  unless @stack.empty?
data/lib/gestalt/call.rb CHANGED
@@ -3,7 +3,7 @@ class Gestalt
3
3
  class Call
4
4
 
5
5
  attr_accessor :children, :durations
6
- attr_accessor :action, :finished_at, :location, :started_at
6
+ attr_accessor :action, :binding, :finished_at, :location, :started_at
7
7
 
8
8
  def initialize(attributes = {})
9
9
  @started_at = Time.now.to_f
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 7
9
- version: 0.0.7
8
+ - 8
9
+ version: 0.0.8
10
10
  platform: ruby
11
11
  authors:
12
12
  - geemus (Wesley Beary)
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-05-10 00:00:00 -07:00
17
+ date: 2010-05-12 00:00:00 -07:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency