module Cucumber::CompatibilityKit

def is_gherkin_example?(example_folder)

def is_gherkin_example?(example_folder)
  Dir.entries(example_folder).select { |file| File.extname(file) == '.feature' }.count > 0
end