Skip to content

Instantly share code, notes, and snippets.

View AlexTalashkevich's full-sized avatar

Alex Talashkevich AlexTalashkevich

View GitHub Profile
@AlexTalashkevich
AlexTalashkevich / cucumber_steps_crawler.rb
Last active March 29, 2019 13:38
Remove cucumber unused steps
@steps_path = ENV['STEPS_PATH']
@features_path = ENV['FEATURES_PATH']
@steps_array = []
@unused_steps = []
def steps_files(path)
Dir[path + '**/*.rb']
end
def features_files(path)