not_my_job 0.0.2 → 0.0.3
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/not_my_job.gemspec +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.
|
|
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
|
|
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.
|
|
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
|
|
32
|
-
|
|
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: []
|