sender 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.rdoc CHANGED
@@ -6,7 +6,11 @@ Initial release
6
6
 
7
7
  Minor detail changes
8
8
 
9
- === 1.1 2010-06-23
9
+ === 1.1.0 2010-06-24
10
10
 
11
11
  Added Kernel.backtrace
12
12
  Added Kernel.backtrace_includes?
13
+
14
+ === 1.1.1 2010-06-24
15
+
16
+ Minor detail changes
data/README.rdoc CHANGED
@@ -1,9 +1,12 @@
1
- Sender:
1
+ == Sender
2
2
 
3
- == DESCRIPTION:
4
3
  http://rubygems.org/gems/sender
5
4
 
6
- Adds __sender__ and __caller__ to the built-in __callee__ and __method__ functions.
5
+ == DESCRIPTION:
6
+
7
+ Adds __sender__ and __caller__ to the built-in __callee__ and __method__ functions.
8
+
9
+ == SUMMARY:
7
10
 
8
11
  Adds object-oriented backtrace, which returns :object and :method for each stack frame,
9
12
  and which permits queries regarding backtrace contents.
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.0"
14
+ self.version="1.1.1"
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,26 +2,12 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{sender}
5
- s.version = "1.1.0"
5
+ s.version = "1.1.1"
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{http://rubygems.org/gems/sender
11
-
12
- Adds __sender__ and __caller__ to the built-in __callee__ and __method__ functions.
13
-
14
- Adds object-oriented backtrace, which returns :object and :method for each stack frame,
15
- and which permits queries regarding backtrace contents.
16
-
17
- * __sender__
18
- * __caller__
19
- * backtrace
20
- * backtrace( frames_to_trace_backward )
21
- * backtrace_includes?( Class )
22
- * backtrace_includes?( class_instance )
23
- * backtrace_includes?( :symbol )
24
- * backtrace_includes?( Class, class_instance, :symbol, ... )}
10
+ s.description = %q{Adds __sender__ and __caller__ to the built-in __callee__ and __method__ functions.}
25
11
  s.email = ["asher@ridiculouspower.com"]
26
12
  s.extensions = ["ext/sender/extconf.rb"]
27
13
  s.extra_rdoc_files = ["Manifest.txt", "CHANGELOG.rdoc", "README.rdoc"]
@@ -31,7 +17,7 @@ Gem::Specification.new do |s|
31
17
  s.require_paths = ["lib"]
32
18
  s.rubyforge_project = %q{asher}
33
19
  s.rubygems_version = %q{1.3.7}
34
- s.summary = %q{http://rubygems.org/gems/sender Adds __sender__ and __caller__ to the built-in __callee__ and __method__ functions}
20
+ s.summary = %q{Adds __sender__ and __caller__ to the built-in __callee__ and __method__ functions.}
35
21
  s.test_files = ["test/test_sender.rb"]
36
22
 
37
23
  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: 19
4
+ hash: 17
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 0
10
- version: 1.1.0
9
+ - 1
10
+ version: 1.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Asher
@@ -64,22 +64,7 @@ dependencies:
64
64
  version: 2.6.1
65
65
  type: :development
66
66
  version_requirements: *id003
67
- description: |-
68
- http://rubygems.org/gems/sender
69
-
70
- Adds __sender__ and __caller__ to the built-in __callee__ and __method__ functions.
71
-
72
- Adds object-oriented backtrace, which returns :object and :method for each stack frame,
73
- and which permits queries regarding backtrace contents.
74
-
75
- * __sender__
76
- * __caller__
77
- * backtrace
78
- * backtrace( frames_to_trace_backward )
79
- * backtrace_includes?( Class )
80
- * backtrace_includes?( class_instance )
81
- * backtrace_includes?( :symbol )
82
- * backtrace_includes?( Class, class_instance, :symbol, ... )
67
+ description: Adds __sender__ and __caller__ to the built-in __callee__ and __method__ functions.
83
68
  email:
84
69
  - asher@ridiculouspower.com
85
70
  executables: []
@@ -169,6 +154,6 @@ rubyforge_project: asher
169
154
  rubygems_version: 1.3.7
170
155
  signing_key:
171
156
  specification_version: 3
172
- summary: http://rubygems.org/gems/sender Adds __sender__ and __caller__ to the built-in __callee__ and __method__ functions
157
+ summary: Adds __sender__ and __caller__ to the built-in __callee__ and __method__ functions.
173
158
  test_files:
174
159
  - test/test_sender.rb