sender 1.1.3 → 1.1.4

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
@@ -12,6 +12,6 @@ Added :Kernel.backtrace.
12
12
  Added :Kernel.backtrace_includes?.
13
13
  Fixed external requirement of Ruby source directory. Gem should now install transparently and painlessly.
14
14
 
15
- === 1.1.1-3 2010-06-24
15
+ === 1.1.1-4 2010-06-24
16
16
 
17
17
  Minor detail changes
data/README.rdoc CHANGED
@@ -4,7 +4,7 @@ http://rubygems.org/gems/sender
4
4
 
5
5
  == DESCRIPTION:
6
6
 
7
- Adds :__sender__ and :__caller__ to the built-in :__callee__ and :__method__ methods to Ruby 1.9.1, as well
7
+ Adds :__sender__ and :__caller__ to the built-in :__callee__ and :__method__ methods in Ruby 1.9.1, as well
8
8
  as providing object-oriented :backtrace supporting n-levels backward, and :backtrace_includes?,
9
9
  which allows contents of the backtrace to be queried.
10
10
 
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.3"
14
+ self.version="1.1.4"
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,12 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{sender}
5
- s.version = "1.1.3"
5
+ s.version = "1.1.4"
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__ methods to Ruby 1.9.1, as well
10
+ s.description = %q{Adds :__sender__ and :__caller__ to the built-in :__callee__ and :__method__ methods in Ruby 1.9.1, as well
11
11
  as providing object-oriented :backtrace supporting n-levels backward, and :backtrace_includes?,
12
12
  which allows contents of the backtrace to be queried.}
13
13
  s.email = ["asher@ridiculouspower.com"]
@@ -19,7 +19,7 @@ which allows contents of the backtrace to be queried.}
19
19
  s.require_paths = ["lib"]
20
20
  s.rubyforge_project = %q{asher}
21
21
  s.rubygems_version = %q{1.3.7}
22
- s.summary = %q{Adds :__sender__ and :__caller__ to the built-in :__callee__ and :__method__ methods to Ruby 1.9.1, as well as providing object-oriented :backtrace supporting n-levels backward, and :backtrace_includes?, which allows contents of the backtrace to be queried.}
22
+ s.summary = %q{Adds :__sender__ and :__caller__ to the built-in :__callee__ and :__method__ methods in Ruby 1.9.1, as well as providing object-oriented :backtrace supporting n-levels backward, and :backtrace_includes?, which allows contents of the backtrace to be queried.}
23
23
  s.test_files = ["test/test_sender.rb"]
24
24
 
25
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: 21
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 3
10
- version: 1.1.3
9
+ - 4
10
+ version: 1.1.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Asher
@@ -65,7 +65,7 @@ dependencies:
65
65
  type: :development
66
66
  version_requirements: *id003
67
67
  description: |-
68
- Adds :__sender__ and :__caller__ to the built-in :__callee__ and :__method__ methods to Ruby 1.9.1, as well
68
+ Adds :__sender__ and :__caller__ to the built-in :__callee__ and :__method__ methods in Ruby 1.9.1, as well
69
69
  as providing object-oriented :backtrace supporting n-levels backward, and :backtrace_includes?,
70
70
  which allows contents of the backtrace to be queried.
71
71
  email:
@@ -157,6 +157,6 @@ rubyforge_project: asher
157
157
  rubygems_version: 1.3.7
158
158
  signing_key:
159
159
  specification_version: 3
160
- summary: Adds :__sender__ and :__caller__ to the built-in :__callee__ and :__method__ methods to Ruby 1.9.1, as well as providing object-oriented :backtrace supporting n-levels backward, and :backtrace_includes?, which allows contents of the backtrace to be queried.
160
+ summary: Adds :__sender__ and :__caller__ to the built-in :__callee__ and :__method__ methods in Ruby 1.9.1, as well as providing object-oriented :backtrace supporting n-levels backward, and :backtrace_includes?, which allows contents of the backtrace to be queried.
161
161
  test_files:
162
162
  - test/test_sender.rb