2018-05-21 20:40:50 +02:00
|
|
|
# Describe your gem and declare its dependencies:
|
|
|
|
|
Gem::Specification.new do |s|
|
|
|
|
|
s.name = 'atomic-red-team'
|
|
|
|
|
s.version = '1.0'
|
|
|
|
|
s.authors = ['Red Canary', 'Casey Smith', 'Mike Haag']
|
2022-01-12 13:45:52 -08:00
|
|
|
s.email = ['it@redcanary.com', 'opensource@redcanary.com']
|
2018-05-21 20:40:50 +02:00
|
|
|
s.summary = 'Small, highly portable, community developed detection tests mapped to ATT&CK.'
|
|
|
|
|
s.license = "MIT"
|
|
|
|
|
s.homepage = "https://redcanary.com/atomic-red-team"
|
|
|
|
|
s.files = %w(atomic-red-team.gemspec) + Dir['{atomic_red_team}/**/*', '*.md', 'bin/*']
|
|
|
|
|
s.test_files = Dir['spec/**/*']
|
|
|
|
|
s.require_paths = %w(atomic_red_team)
|
2018-06-13 19:33:59 -06:00
|
|
|
|
|
|
|
|
s.add_development_dependency 'github-pages'
|
2022-01-12 13:45:52 -08:00
|
|
|
end
|