add an initial Gemspec, Gemfile, and lockfile

This commit is contained in:
Brian Beyer
2018-05-21 20:40:50 +02:00
parent df6743871e
commit 4c32f9d7c8
3 changed files with 31 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
#source "https://rubygems.org"
gemspec
+16
View File
@@ -0,0 +1,16 @@
PATH
remote: .
specs:
atomic-red-team (1.0)
GEM
specs:
PLATFORMS
ruby
DEPENDENCIES
atomic-red-team!
BUNDLED WITH
1.13.7
+13
View File
@@ -0,0 +1,13 @@
# 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)
end