Skip to content

Commit

Permalink
v0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rajatthareja committed Nov 8, 2017
1 parent 7956117 commit 0ba6424
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
[![Windows Build status](https://ci.appveyor.com/api/projects/status/agvyur7bg5ul1444/branch/master?svg=true)](https://ci.appveyor.com/project/rajatthareja/flavoredgherkin)


Ruby gem to convert gherkin feature files into html, pdf flavour.
Ruby gem to convert gherkin feature files into html and pdf flavour.

**[Html Flavour Sample](http://flavoredgherkin.rajatthareja.com/sample/Flavored_Gherkin_Sample.html)**

**[Pdf Flavour Sample](http://flavoredgherkin.rajatthareja.com/sample/Flavored_Gherkin_Sample.pdf)**

**More flavours coming soon!**
Expand Down
2 changes: 1 addition & 1 deletion bin/flavored_gherkin
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ opt_parser = OptionParser.new do |opts|
opts.separator 'Flavored Gherkin options:'

opts.on('-F', '--flavour FLAVOUR', String, 'Flavored Gherkin Flavour') do |flavour|
options[:flavour] = flavour
options[:flavour] = flavour.capitalize
end

opts.on('-f', '--features FEATURE_PATH', String, 'Feature Files Path') do |feature_path|
Expand Down
4 changes: 2 additions & 2 deletions flavored_gherkin.gemspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Gem::Specification.new do |s|
s.name = 'flavored_gherkin'
s.version = '0.1'
s.version = '0.2'
s.bindir = 'bin'
s.summary = 'FlavoredGherkin'
s.description = 'Ruby gem to convert gherkin feature files into html, pdf flavour.'
s.description = 'Ruby gem to convert gherkin feature files into html and pdf flavour.'
s.post_install_message = 'More flavours coming soon!'
s.authors = ['Rajat Thareja']
s.email = '[email protected]'
Expand Down
2 changes: 1 addition & 1 deletion lib/flavored_gherkin/pdf_flavour.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module FlavoredGherkin
#
class PdfFlavour < Flavour
##
# Build Html Flavored Gherkin
# Build PDF Flavored Gherkin
#
def build(title, feature_files, output_path)
info = {
Expand Down

0 comments on commit 0ba6424

Please sign in to comment.