forked from TechArchSA/HackersNote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhackernote.gemspec
23 lines (18 loc) · 1.02 KB
/
hackernote.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "hackernote"
Gem::Specification.new do |spec|
spec.name = "hackernote"
spec.version = HackerNote::VERSION
spec.authors = ["KING SABRI"]
spec.email = ["[email protected]"]
spec.summary = %q{Hacker's Note - A command-line tool creates gitbook compatible structure for pentest and read team projects.}
spec.description = %Q{Hacker's Note - A command-line tool creates gitbook compatible structure for pentest and read team projects.\nHelps security professionals to organize their notes in a gitbook structure for PT/RT engagements.}
spec.homepage = "https://github.com/TechArchSA/HackersNote"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject {|f| f.match(%r{^(test|spec|features)/})}
spec.bindir = "bin"
spec.executables = ['hackernote']
spec.require_paths = ["lib"]
spec.post_install_message = HackerNote::Utils.logo
end