cucumber_analytics 0.0.8 → 0.0.9

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.
data/History.rdoc CHANGED
@@ -1,3 +1,9 @@
1
+ === Version 0.0.9 / 2013-02-25
2
+
3
+ * Bug fix: Fixed an un-anchored regular expression that was causing
4
+ feature files to be parsed incorrectly.
5
+
6
+
1
7
  === Version 0.0.8 / 2013-02-24
2
8
 
3
9
  * Bug fix: Replaced some destructive method calls with non-destructive
@@ -42,6 +42,7 @@ Feature: Features can be modeled.
42
42
  # Oddly enough, if this comment had come earlier in the description
43
43
  # it would have broken Cucumber. Comments can't be mixed into the
44
44
  # freeform text for some reason.
45
+ #@commented_tag
45
46
 
46
47
 
47
48
  Background:Some general test setup stuff.
@@ -1,3 +1,3 @@
1
1
  module CucumberAnalytics
2
- VERSION = "0.0.8"
2
+ VERSION = "0.0.9"
3
3
  end
@@ -4,7 +4,7 @@ module CucumberAnalytics
4
4
 
5
5
  SANITARY_STRING = '___!!!___'
6
6
  STEP_KEYWORD_PATTERN = '\s*(?:Given|When|Then|And|But|\*)\s*'
7
- TEST_ELEMENT_START_PATTERN = '\s*(?:@|Background:|Scenario:|(?:Scenario Outline:))'
7
+ TEST_ELEMENT_START_PATTERN = '^\s*(?:@|Background:|Scenario:|(?:Scenario Outline:))'
8
8
 
9
9
 
10
10
  # Returns the left delimiter, which is used to mark the beginning of a step
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cucumber_analytics
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-02-24 00:00:00.000000000 Z
12
+ date: 2013-02-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -159,7 +159,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
159
159
  version: '0'
160
160
  requirements: []
161
161
  rubyforge_project:
162
- rubygems_version: 1.8.24
162
+ rubygems_version: 1.8.25
163
163
  signing_key:
164
164
  specification_version: 3
165
165
  summary: This gem provides an API to programmatically break down Cucumber feature
@@ -200,4 +200,3 @@ test_files:
200
200
  - spec/scenario_spec.rb
201
201
  - spec/spec_helper.rb
202
202
  - spec/step_spec.rb
203
- has_rdoc: