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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 492eea0b43d7ad7166ada2f764bd0b3d499c2dac
4
- data.tar.gz: 549e2f9a33cb1e4b45a10109857c530224c26ec8
3
+ metadata.gz: a5539524aebc21c73f8646618784864432644092
4
+ data.tar.gz: f09fbc4ee8ef7bad40407e10908e10409cf2053b
5
5
  SHA512:
6
- metadata.gz: 87f238ea9b222ba49cd73b0b8d036d3bbc42fe6891defbe1e514fa790bbb522e3986ae45532dd151a6b98062c096cee04fe83b554c019a2cb087d317230ab468
7
- data.tar.gz: c9657aadac3e4c309d6440f119d0eb81590536290f4b8cadbb40e77374f2a06933bf61df1d46a016f1fe2b0d57fb671029a0678b26f282d5459b2b319f53fe81
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] :targets lambda that will return the output folder (optional)
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 |task|
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
@@ -1,4 +1,4 @@
1
1
  module PageObjectStubs
2
- VERSION = '0.0.2' unless defined? ::PageObjectStubs::VERSION
2
+ VERSION = '0.0.3' unless defined? ::PageObjectStubs::VERSION
3
3
  DATE = '2015-05-10' unless defined? ::PageObjectStubs::DATE
4
4
  end
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: page_object_stubs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - code@bootstraponline.com