cucumber-blendle-steps 0.3.1 → 0.3.2

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: 0be27a2993064f1cf9e8e38c15565a7e133f7582
4
- data.tar.gz: 1448623821ea97fe10e5af636ba4cc0180f35780
3
+ metadata.gz: 7c409b31ccbcf91050864f00ea6e100d1f3e59a1
4
+ data.tar.gz: 03550d41613abbbf9715bbeda2d2b6eaac102b1a
5
5
  SHA512:
6
- metadata.gz: 581b547e5072a223724382378f1522e27033203cb11d6651c2bbde4b09c4213b9525f4d7eb4d04a29c6cf5842223aaaf1993f7f0c1d662e7d02cd2ce6724655c
7
- data.tar.gz: c9b38af4d4ad9ab240929419582e8e11a52d7e0872052ccd71fc92d531a071c6fc728a42f3498d3a3c641ea5a17a25c0db7c7ae44f26b71bc55c6914e74d9703
6
+ metadata.gz: f964fafa9b6362d9f36b9c4867f31ddd152715f13275b0a1968a2e1d86be2fd7b9d291dc0c389395d063e39eef71e1521acb2bc724c4648b52c516010bd0db75
7
+ data.tar.gz: c244dbf3983fa87640b0c112eac80ee64730ecc79e019dbeac9c21bed81d9eb619a70c6ea2efc37141267b79727494de9cf1b9a3383c602d4112b1c24ad178a6
data/CHANGELOG.md CHANGED
@@ -1,15 +1,23 @@
1
- **v0.3.1** – 2015-12-12
1
+ # CHANGELOG
2
2
 
3
- * add new model steps [5275fcf]
4
- * show last_response.body if status code assertion fails [d0a6d0f]
5
- * show error message if Halidator JSON parsing fails [9e2e6ab]
6
- * don't create mkmf.log when copying output to clipboard [59c63f4]
7
- * add descriptions to all steps [37d5bd4]
3
+ ## [v0.3.1](https://github.com/blendle/cucumber-blendle-steps/tree/v0.3.1) (2015-12-12)
4
+ [Full Changelog](https://github.com/blendle/cucumber-blendle-steps/compare/v0.3.0...v0.3.1)
8
5
 
9
- **v0.3.0** 2015-12-4
6
+ ## [v0.3.0](https://github.com/blendle/cucumber-blendle-steps/tree/v0.3.0) (2015-12-04)
7
+ [Full Changelog](https://github.com/blendle/cucumber-blendle-steps/compare/v0.2.0...v0.3.0)
10
8
 
11
- * add support for [type-casting model values](https://github.com/blendle/cucumber-blendle-steps/pull/2)
9
+ **Merged pull requests:**
12
10
 
13
- **v0.2.0** – 2015-11-30
11
+ - allow value casting before saving to database [\#2](https://github.com/blendle/cucumber-blendle-steps/pull/2) ([JeanMertz](https://github.com/JeanMertz))
14
12
 
15
- * initial release
13
+ ## [v0.2.0](https://github.com/blendle/cucumber-blendle-steps/tree/v0.2.0) (2015-11-30)
14
+ [Full Changelog](https://github.com/blendle/cucumber-blendle-steps/compare/v0.1.0...v0.2.0)
15
+
16
+ ## [v0.1.0](https://github.com/blendle/cucumber-blendle-steps/tree/v0.1.0) (2015-11-30)
17
+ **Merged pull requests:**
18
+
19
+ - initial cucumber-blendle-steps implementation [\#1](https://github.com/blendle/cucumber-blendle-steps/pull/1) ([JeanMertz](https://github.com/JeanMertz))
20
+
21
+
22
+
23
+ \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
data/Rakefile CHANGED
@@ -5,6 +5,20 @@ require 'cucumber/rake/task'
5
5
  require 'rubocop/rake_task'
6
6
  require 'rake/testtask'
7
7
 
8
+ task 'changelog' do
9
+ args = %w(
10
+ --user=blendle
11
+ --project=cucumber-blendle-steps
12
+ --header-label="# CHANGELOG"
13
+ --bug-labels=type/bug,bug
14
+ --enhancement-labels=type/enhancement,enhancement
15
+ --future-release=unreleased
16
+ --no-verbose
17
+ )
18
+
19
+ sh %(github_changelog_generator #{args.join(' ')})
20
+ end
21
+
8
22
  RuboCop::RakeTask.new
9
23
 
10
24
  Cucumber::Rake::Task.new(:features) do |t|
@@ -3,7 +3,7 @@
3
3
  # * When the client does a GET request to the "items" resource
4
4
  #
5
5
  When(/^the client does a (GET|POST|DELETE) request to the "([^"]*)" resource$/) do |method, resource|
6
- step %(the client does a #{method} request to the "#{resource}" resource with these parameters:), table([[]])
6
+ step %(the client does a #{method} request to the "#{resource}" resource with these template variables:), table([[]])
7
7
  end
8
8
 
9
9
  # * When the client does a GET request to the "item" resource with the template variable "item_uid" set to "hello"
@@ -11,7 +11,7 @@ end
11
11
  When(/^the client does a (GET|POST|DELETE) request to the "([^"]*)" resource with the template variable "([^"]*)" set to "([^"]*)"$/) do |method, resource, key, value|
12
12
  tables = [%w(key value), [key, value]]
13
13
 
14
- step %(the client does a #{method} request to the "#{resource}" resource with these parameters:), table(tables)
14
+ step %(the client does a #{method} request to the "#{resource}" resource with these template variables:), table(tables)
15
15
  end
16
16
 
17
17
  # * When the client does a GET request to the "item" resource with these template variables:
@@ -4,6 +4,6 @@ module Cucumber
4
4
  # This module defines default steps used by all of Blendle Ruby projects.
5
5
  #
6
6
  module BlendleSteps
7
- VERSION = '0.3.1'
7
+ VERSION = '0.3.2'
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cucumber-blendle-steps
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jean Mertz