macros4cuke 0.3.03 → 0.3.06

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/.travis.yml ADDED
@@ -0,0 +1,13 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0.0
4
+ - 1.9.3
5
+ - 1.9.2
6
+
7
+ gemfile:
8
+ - Gemfile
9
+
10
+ # whitelist
11
+ branches:
12
+ only:
13
+ - master
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
+ ## 0.3.06 / 2013-05-12
2
+ * [FIX] File `README.md`: Fixed formatting issue of Travis CI status button
3
+
4
+ ## 0.3.05 / 2013-05-12 Unreleased
5
+ * [CHANGE] File `README.md`: Added Travis CI status button
6
+
7
+ ## 0.3.04 / 2013-05-12 Unreleased
8
+ * [NEW] File `.travis.yml`: Added for integration with Travis CI
9
+ * [NEW] File `Gemfile`: Added for integration with Bundler
10
+ * [NEW] File `Rakefile`: Added with test tasks
11
+ * [CHANGE] File `macros4cuke.gemspec`: added development dependency on rake.
12
+
1
13
  ## 0.3.03 / 2013-05-11
2
- [CHANGE] File `README.md`: added section on conditional section.
14
+ * [CHANGE] File `README.md`: added section on conditional section.
3
15
 
4
16
  ## 0.3.02 / 2013-05-11
5
17
  * [FIX] File `macro_steps.rb`: Recovered. Was missing in the 0.3.01 gem!
data/Gemfile ADDED
@@ -0,0 +1,10 @@
1
+ source 'https://rubygems.org'
2
+ # Prevent Bundler to load the dependencies from our .gemspec file
3
+
4
+ gem "cucumber", [">= 0"]
5
+
6
+ group :development do
7
+ gem "rake", ">= 0.9.2"
8
+ gem "rspec", ">= 2.00"
9
+ gem "simplecov", ">= 0.5.0"
10
+ end
data/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  Macros4Cuke
2
2
  ===========
3
+ [![Build Status](https://travis-ci.org/famished-tiger/Macros4Cuke.png?branch=master)](https://travis-ci.org/famished-tiger/Macros4Cuke)
3
4
 
4
5
  _Add macros to your Cucumber scenarios._
5
6
  [Homepage](https://github.com/famished-tiger/Macros4Cuke)
@@ -7,7 +8,7 @@ _Add macros to your Cucumber scenarios._
7
8
  __Macros4Cuke__ is a lightweight library that adds a macro facility your Cucumber scenarios.
8
9
  With it, you can create any new step that replaces a sequence of lower-level steps.
9
10
  All this can be done directly in your feature files without programming step definitions.
10
-
11
+
11
12
  ### Highlights ###
12
13
  * Works with out-of-the-box Cucumber
13
14
  * Simple installation and setup (no programming required),
data/Rakefile ADDED
@@ -0,0 +1,18 @@
1
+ # encoding: utf-8
2
+ require 'rubygems'
3
+
4
+
5
+ require 'cucumber/rake/task' #
6
+ Cucumber::Rake::Task.new do |t|
7
+ end
8
+
9
+ require 'rspec/core/rake_task'
10
+ desc "Run RSpec"
11
+ RSpec::Core::RakeTask.new do |spec|
12
+ spec.pattern = 'spec/**/*_spec.rb'
13
+ end
14
+
15
+ desc "Run tests, with RSpec and Cucumber"
16
+ task :test => [:spec, :cucumber]
17
+
18
+ task :default => :test
@@ -3,7 +3,7 @@
3
3
 
4
4
  module Macros4Cuke # Module used as a namespace
5
5
  # The version number of the gem.
6
- Version = '0.3.03'
6
+ Version = '0.3.06'
7
7
 
8
8
  # Brief description of the gem.
9
9
  Description = "Macros for Cucumber"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: macros4cuke
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.03
4
+ version: 0.3.06
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-05-11 00:00:00.000000000 Z
12
+ date: 2013-05-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: cucumber
@@ -27,6 +27,22 @@ dependencies:
27
27
  - - ! '>='
28
28
  - !ruby/object:Gem::Version
29
29
  version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: rake
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: 0.9.2
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: 0.9.2
30
46
  - !ruby/object:Gem::Dependency
31
47
  name: rspec
32
48
  requirement: !ruby/object:Gem::Requirement
@@ -66,8 +82,11 @@ extensions: []
66
82
  extra_rdoc_files: []
67
83
  files:
68
84
  - .simplecov
85
+ - .travis.yml
69
86
  - .yardopts
70
87
  - cucumber.yml
88
+ - Gemfile
89
+ - Rakefile
71
90
  - CHANGELOG.md
72
91
  - LICENSE.txt
73
92
  - README.md
@@ -81,12 +100,12 @@ files:
81
100
  - lib/macros4cuke/templating/engine.rb
82
101
  - examples/demo/cucumber.yml
83
102
  - examples/demo/features/basic.feature
84
- - examples/demo/features/table.feature
85
- - examples/i18n/fr/cucumber.yml
86
103
  - examples/demo/features/step_definitions/step_defs.rb
87
104
  - examples/demo/features/step_definitions/use_macro_steps.rb
88
105
  - examples/demo/features/support/env.rb
89
106
  - examples/demo/features/support/macro_support.rb
107
+ - examples/demo/features/table.feature
108
+ - examples/i18n/fr/cucumber.yml
90
109
  - examples/i18n/fr/features/demo01-fr.feature
91
110
  - examples/i18n/fr/features/step_definitions/demo_steps.rb
92
111
  - examples/i18n/fr/features/step_definitions/use_macro_steps.rb
@@ -101,13 +120,13 @@ files:
101
120
  - features/step_definitions/use_macro_steps.rb
102
121
  - features/support/env.rb
103
122
  - features/support/macro_support.rb
104
- - spec/spec_helper.rb
105
123
  - spec/macros4cuke/macro-collection_spec.rb
106
124
  - spec/macros4cuke/macro-step-support_spec.rb
107
125
  - spec/macros4cuke/macro-step_spec.rb
108
126
  - spec/macros4cuke/templating/engine_spec.rb
109
127
  - spec/macros4cuke/templating/placeholder_spec.rb
110
128
  - spec/macros4cuke/templating/section_spec.rb
129
+ - spec/spec_helper.rb
111
130
  homepage: https://github.com/famished-tiger/Macros4Cuke
112
131
  licenses:
113
132
  - MIT