namespace :gherkin do
  desc "Run gherkin_lint against all feature files"
  task :lint do
    puts "[rake] Running gherkin_lint on all feature files..."
    sh "gherkin_lint"
  end
end
