rubycom 0.4.1 → 0.4.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.
- checksums.yaml +8 -8
- data/lib/rubycom/base_inclusion_runner.rb +3 -3
- data/lib/rubycom/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MDYyODg5YzNmNWY2MDQwMTM4MmQzN2I5OTU2NzA2YTE5ZTllODQwNg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
YTk1MDE4MTIzMGMxYWM4Zjg0ZjEyNDU5NzU0NzBmMDVjNDRmYTg1MA==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZmM4MTEzYjhiN2U1MDczODBjYmFhODRkOWZlNzRiOWUyZmFiZjkzMzZmZmE4
|
|
10
|
+
NmFkNmE1YTI5M2VjOWZmOTZiOGIxOTZiYTRlZjEwNTM4OWQ0NWIwYTQyODZi
|
|
11
|
+
M2Q5ZTY2NDk1MGQwOTkyYWVhYTBhYTNlYzlkZDc1MGUxNDVjNTk=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZmMzNzA1YjNjMDEyN2MyN2I5ZjQxYzExYmFkMjAyNjBiNDdlM2E3YzNkNzY4
|
|
14
|
+
YjQxM2Y5MGVhOGVkZjk4YjQ5ZDk5MjM1MTM1ZjI3MjBiOGY3OTQ3ZjE4ZjIw
|
|
15
|
+
Yjc1NGNjNzBmNWQ4ZTg5YTdlNGQ4NmMyNTlkODk5MzNiMDVjNDY=
|
|
@@ -4,10 +4,10 @@ module Rubycom
|
|
|
4
4
|
# Calls the given run_fn with the given base and args if the base was
|
|
5
5
|
# run from the command line in it's home folder or from an installed gem library
|
|
6
6
|
#
|
|
7
|
-
# @param [Array]
|
|
7
|
+
# @param [Array] callerthe result from Kernel.caller as called from an included module within base
|
|
8
8
|
# if the first caller entry matches $0 then the base module was executed from it's home folder
|
|
9
|
-
# @param [Method|Proc] to be run if run criteria are satisfied
|
|
10
|
-
# @param [Module] the base Module to test against and to send to the run_fn
|
|
9
|
+
# @param [Method|Proc] run_fn to be run if run criteria are satisfied
|
|
10
|
+
# @param [Module] base the base Module to test against and to send to the run_fn
|
|
11
11
|
# @param [Array] args a String Array representing the arguments to be passed to run_fn
|
|
12
12
|
# @return nil
|
|
13
13
|
def self.run(caller, run_fn, base, args)
|
data/lib/rubycom/version.rb
CHANGED