Files
atomic-red-team/atomic-red-team.gemspec
T
Brian Beyer 0bcf6746c1 Add microsite (#250)
* first cut of microsite pages

* fix a bunch of stuff to clean up look and feel

* Initial checkin.

* add header

* add philosophy and images

* add favicon
2018-06-13 19:33:59 -06:00

15 lines
696 B
Ruby

# 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']
s.email = ['it@redcanary.com', 'casey.smith@redcanary.com', 'mike.haag@redcanary.com']
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)
s.add_development_dependency 'github-pages'
end