sender 1.1.1 → 1.1.2

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/CHANGELOG.rdoc CHANGED
@@ -11,6 +11,6 @@ Minor detail changes
11
11
  Added Kernel.backtrace
12
12
  Added Kernel.backtrace_includes?
13
13
 
14
- === 1.1.1 2010-06-24
14
+ === 1.1.1-2 2010-06-24
15
15
 
16
16
  Minor detail changes
data/README.rdoc CHANGED
@@ -4,7 +4,9 @@ http://rubygems.org/gems/sender
4
4
 
5
5
  == DESCRIPTION:
6
6
 
7
- Adds __sender__ and __caller__ to the built-in __callee__ and __method__ functions.
7
+ Adds :__sender__ and :__caller__ to the built-in :__callee__ and :__method__ methods, as well
8
+ as providing object-oriented :backtrace supporting n-levels backward, and :backtrace_includes?,
9
+ which allows contents of the backtrace to be queried.
8
10
 
9
11
  == SUMMARY:
10
12
 
data/Rakefile CHANGED
@@ -11,7 +11,7 @@ Hoe.spec 'sender' do
11
11
  self.spec_extras = { :extensions => ["ext/sender/extconf.rb"] }
12
12
  self.extra_dev_deps << ['rake-compiler', '>= 0']
13
13
 
14
- self.version="1.1.1"
14
+ self.version="1.1.2"
15
15
 
16
16
  Rake::ExtensionTask.new( 'sender', spec ) do |ext|
17
17
  ext.lib_dir = File.join('lib', 'sender')
Binary file
data/sender.gemspec CHANGED
@@ -2,12 +2,14 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{sender}
5
- s.version = "1.1.1"
5
+ s.version = "1.1.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Asher"]
9
9
  s.date = %q{2010-06-23}
10
- s.description = %q{Adds __sender__ and __caller__ to the built-in __callee__ and __method__ functions.}
10
+ s.description = %q{Adds :__sender__ and :__caller__ to the built-in :__callee__ and :__method__ methods, as well
11
+ as providing object-oriented :backtrace supporting n-levels backward, and :backtrace_includes?,
12
+ which allows contents of the backtrace to be queried.}
11
13
  s.email = ["asher@ridiculouspower.com"]
12
14
  s.extensions = ["ext/sender/extconf.rb"]
13
15
  s.extra_rdoc_files = ["Manifest.txt", "CHANGELOG.rdoc", "README.rdoc"]
@@ -17,7 +19,7 @@ Gem::Specification.new do |s|
17
19
  s.require_paths = ["lib"]
18
20
  s.rubyforge_project = %q{asher}
19
21
  s.rubygems_version = %q{1.3.7}
20
- s.summary = %q{Adds __sender__ and __caller__ to the built-in __callee__ and __method__ functions.}
22
+ s.summary = %q{Adds :__sender__ and :__caller__ to the built-in :__callee__ and :__method__ methods, as well as providing object-oriented :backtrace supporting n-levels backward, and :backtrace_includes?, which allows contents of the backtrace to be queried.}
21
23
  s.test_files = ["test/test_sender.rb"]
22
24
 
23
25
  if s.respond_to? :specification_version then
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sender
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 23
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 1
10
- version: 1.1.1
9
+ - 2
10
+ version: 1.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Asher
@@ -64,7 +64,10 @@ dependencies:
64
64
  version: 2.6.1
65
65
  type: :development
66
66
  version_requirements: *id003
67
- description: Adds __sender__ and __caller__ to the built-in __callee__ and __method__ functions.
67
+ description: |-
68
+ Adds :__sender__ and :__caller__ to the built-in :__callee__ and :__method__ methods, as well
69
+ as providing object-oriented :backtrace supporting n-levels backward, and :backtrace_includes?,
70
+ which allows contents of the backtrace to be queried.
68
71
  email:
69
72
  - asher@ridiculouspower.com
70
73
  executables: []
@@ -154,6 +157,6 @@ rubyforge_project: asher
154
157
  rubygems_version: 1.3.7
155
158
  signing_key:
156
159
  specification_version: 3
157
- summary: Adds __sender__ and __caller__ to the built-in __callee__ and __method__ functions.
160
+ summary: Adds :__sender__ and :__caller__ to the built-in :__callee__ and :__method__ methods, as well as providing object-oriented :backtrace supporting n-levels backward, and :backtrace_includes?, which allows contents of the backtrace to be queried.
158
161
  test_files:
159
162
  - test/test_sender.rb