Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Commit

Permalink
Put Empty scan.features.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
Lakr233 committed Dec 6, 2024
1 parent a427111 commit ab54764
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions src/scan.features.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#!/usr/bin/env ruby
# encoding: utf-8

require 'json'
require 'optparse'

#
# this file was removed due to DMCA report
# following action was taken
# https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository
#

OptionParser.new do |opts|
opts.banner = "Usage: scan.features.rb [options]"

opts.on("-s", "--src-dir PATH", "") do |v|
# empty block
end

opts.on("-f", "--features-file PATH", "") do |v|
# empty block
end

opts.on("-o", "--output PATH", "Output to json file (required)") do |v|
EXPORT_JSON_FILE = File.expand_path(v)
end

opts.on("-h", "--help", "Prints this help") do
puts opts
exit
end
end
.parse!

File.open(EXPORT_JSON_FILE, 'w') { |file| file.write("{}") }

0 comments on commit ab54764

Please sign in to comment.