page_object_stubs 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.
- checksums.yaml +4 -4
- data/lib/page_object_stubs/raketask.rb +2 -2
- data/lib/page_object_stubs/version.rb +1 -1
- data/release_notes.md +6 -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: a5539524aebc21c73f8646618784864432644092
|
|
4
|
+
data.tar.gz: f09fbc4ee8ef7bad40407e10908e10409cf2053b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c1a140433db21e3259f1bc2a755f47d2751c6201514576bc6f2b89eb07fcb3c99b333af83e53d069f626f607007a33722577e266346af31bcd996fe83090625
|
|
7
|
+
data.tar.gz: 696669b89acd0fda6a6ddd44b27b5c898d9cad8bf3ea0e70b0eb71e92116cae512a6dbe67626df8eb865c0d5a924020b776d188e349e74b12a4ee4b7b659f267
|
|
@@ -7,7 +7,7 @@ module PageObjectStubs
|
|
|
7
7
|
# @option opts [String] :task_name the name of the stubs task (optional)
|
|
8
8
|
# @option opts [String] :task_desc the description of the stubs task (optional)
|
|
9
9
|
# @option opts [lambda] :targets lambda that will return an array of targets (optional)
|
|
10
|
-
# @option opts [lambda] :
|
|
10
|
+
# @option opts [lambda] :output_folder lambda that will return the output folder (optional)
|
|
11
11
|
# @option opts [Boolean] :angularjs generate angularjs stubs. default true (optional)
|
|
12
12
|
def add_stubs_task opts={}
|
|
13
13
|
task_name = opts.fetch(:task_name, 'stubs')
|
|
@@ -22,7 +22,7 @@ module PageObjectStubs
|
|
|
22
22
|
raise 'output_folder must be a lambda' unless output_folder.lambda?
|
|
23
23
|
|
|
24
24
|
Rake.application.last_description = task_desc
|
|
25
|
-
Rake::Task.define_task task_name do
|
|
25
|
+
Rake::Task.define_task task_name do
|
|
26
26
|
PageObjectStubs.generate targets: targets.call,
|
|
27
27
|
output_folder: output_folder.call,
|
|
28
28
|
angularjs: angularjs
|
data/release_notes.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
#### v0.0.3 2015-05-10
|
|
2
|
+
|
|
3
|
+
- [fb08c84](https://github.com/bootstraponline/page_object_stubs/commit/fb08c84b55849da5fdd8d0e517d02addd9aebd6d) Release 0.0.3
|
|
4
|
+
- [b505c37](https://github.com/bootstraponline/page_object_stubs/commit/b505c3738d9013bee4be6ad5c753358d2e52284f) Update rake task
|
|
5
|
+
|
|
6
|
+
|
|
1
7
|
#### v0.0.2 2015-05-10
|
|
2
8
|
|
|
3
9
|
- [7b9acc7](https://github.com/bootstraponline/page_object_stubs/commit/7b9acc7020c98d1beb6de6f108ac64a765f14428) Release 0.0.2
|