not_my_job 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/not_my_job.gemspec +2 -2
  2. metadata +6 -4
data/not_my_job.gemspec CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  Gem::Specification.new do |gem|
4
4
  gem.name = "not_my_job"
5
- gem.version = "0.0.2"
5
+ gem.version = "0.0.3"
6
6
  gem.summary = "Provides a delegate class method to easily expose contained object's methods as your own."
7
- gem.description = "Provides a delegate class method to easily expose contained object's methods as your own. If an optional code block is specified, then that will be run and its result returned when the delegate object is nil."
7
+ gem.description = "Provides a delegate class method to easily expose contained object's methods as your own. If the delegate object is nil, there are several options: If no block is provided, it will raise a NoMethodError exception; if the optional code block is specified you may return an alternate value, or to take some arbitrary action."
8
8
  gem.author = "Alfredo Ramírez"
9
9
  gem.email = "alfredormz@gmail.com"
10
10
  gem.homepage = 'http://github.com/alfredormz/not_my_job'
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: not_my_job
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.2
5
+ version: 0.0.3
6
6
  platform: ruby
7
7
  authors:
8
8
  - Alfredo Ramírez
@@ -27,9 +27,11 @@ dependencies:
27
27
  - !ruby/object:Gem::Version
28
28
  version: '0'
29
29
  name: rspec
30
- description: Provides a delegate class method to easily expose contained object's
31
- methods as your own. If an optional code block is specified, then that will be run
32
- and its result returned when the delegate object is nil.
30
+ description: ! 'Provides a delegate class method to easily expose contained object''s
31
+ methods as your own. If the delegate object is nil, there are several options: If
32
+ no block is provided, it will raise a NoMethodError exception; if the optional code
33
+ block is specified you may return an alternate value, or to take some arbitrary
34
+ action.'
33
35
  email: alfredormz@gmail.com
34
36
  executables: []
35
37
  extensions: []