testgen 0.2 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/ChangeLog CHANGED
@@ -1,3 +1,6 @@
1
+ === Version 0.2.1 / 2011-09-29
2
+ * Fixed error in generated Rakefile
3
+
1
4
  === Version 0.2 / 2011-09-29
2
5
  * Added ability to generate artifacts necessary to use page-object
3
6
 
data/Readme.md CHANGED
@@ -7,4 +7,8 @@ Currently it only generates a cucumber project. You can do this by executing:
7
7
  testgen project <project_name>
8
8
 
9
9
  This command will create a project in the <em>project_name</em> directory with the files needed to begin
10
- developing cucumber features.
10
+ developing cucumber features. If you are using the PageObject gem you can also provide an option to setup your project accordingly.
11
+
12
+ testgen project <project_name> --pageobject-driver=watir
13
+
14
+ Valid options for the <em>--pageobject-driver</em> option are 'watir' or 'selenium'
@@ -25,7 +25,7 @@ Feature: Generating a project with TestGen
25
25
  require 'cucumber/rake/task'
26
26
 
27
27
  Cucumber::Rake::Task.new(:features) do |t|
28
- t.profile 'default'
28
+ t.profile = 'default'
29
29
  end
30
30
 
31
31
  task :default => :features
@@ -3,7 +3,7 @@ require 'cucumber'
3
3
  require 'cucumber/rake/task'
4
4
 
5
5
  Cucumber::Rake::Task.new(:features) do |t|
6
- t.profile 'default'
6
+ t.profile = 'default'
7
7
  end
8
8
 
9
9
  task :default => :features
@@ -1,3 +1,3 @@
1
1
  module TestGen
2
- VERSION = "0.2"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: testgen
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: "0.2"
5
+ version: 0.2.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - Jeffrey S. Morgan
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-09-29 00:00:00 Z
13
+ date: 2011-09-30 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: thor