Skip to content

Commit

Permalink
Merge pull request #141 from hahwul/hahwul-dev
Browse files Browse the repository at this point in the history
Hahwul dev
  • Loading branch information
hahwul authored Oct 26, 2023
2 parents 9ae8d72 + 838537d commit 394e1c4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ Usage: noir <flags>
--send-proxy http://proxy.. Send the results to the web request via http proxy
--send-es https://es.. Send the results to elasticsearch
--with-headers X-Header:Value Add Custom Headers to be Used in Deliver
--use-matchers string Delivers URLs that match a specific condition
--use-filters string Excludes URLs that match a specific condition
Technologies:
-t TECHS, --techs rails,php Set technologies to use
Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: noir
version: 0.9.1
version: 0.10.0

authors:
- hahwul <hahwul@gmail.com>
Expand Down
4 changes: 2 additions & 2 deletions src/noir.cr
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require "./options.cr"
require "./techs/techs.cr"

module Noir
VERSION = "0.9.1"
VERSION = "0.10.0"
end

noir_options = default_options()
Expand Down Expand Up @@ -41,7 +41,7 @@ OptionParser.parse do |parser|
parser.on "--use-matchers string", "Delivers URLs that match a specific condition" do |var|
noir_options[:use_matchers] += "#{var}::NOIR::MATCHER::SPLIT::"
end
parser.on "--use-filters string", "Excludes URLs that match a specific condition." do |var|
parser.on "--use-filters string", "Excludes URLs that match a specific condition" do |var|
noir_options[:use_filters] += "#{var}::NOIR::FILTER::SPLIT::"
end

Expand Down

0 comments on commit 394e1c4

Please sign in to comment.