speedflow-plugin-test 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/speedflow/plugin/test/version.rb +1 -1
- data/lib/speedflow/plugin/test.rb +8 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1097eeb30088317b0a9e7252917d902602fb1cc4
|
4
|
+
data.tar.gz: f79e5aff1d5eb827bd91db78730e497084ba4a84
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5469682eb82b1bd6157d9e65d2384d51dd64eb3d7b168d053d6a48e179a70c8d135425e976ca8181de3118699e428c46c8c912daebecdc31fd0a2c96f176a9e7
|
7
|
+
data.tar.gz: faaf910355e96f9abe7bec2560315661fc4e01b7221963c494e09ba65c8e0220a66060bfa7c7455a4afedcf86ba6be4b3506b3b5b7802b6a868d27df113f9079
|
@@ -1,10 +1,18 @@
|
|
1
1
|
require 'speedflow/plugin/test/version'
|
2
2
|
|
3
|
+
# Speedflow GEM, help you to boost your flow and keep your time
|
3
4
|
module Speedflow
|
4
5
|
module Plugin
|
5
6
|
# Speedflow test plugin
|
6
7
|
module Test
|
7
8
|
class << self
|
9
|
+
# Public: Method missign
|
10
|
+
#
|
11
|
+
# Method used to catch others methods to test.
|
12
|
+
#
|
13
|
+
# *args - Some arguments :)
|
14
|
+
#
|
15
|
+
# Returns nothing.
|
8
16
|
def method_missing(*args)
|
9
17
|
action = args.first
|
10
18
|
arguments = args.last
|