We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6baaf5 commit 409bc26Copy full SHA for 409bc26
Gemfile
@@ -21,7 +21,10 @@ group :development do
21
# module documentation
22
gem 'octokit', '~> 4.0'
23
# session aggregator, native builds have issues on arm platforms for now
24
- gem 'metasploit-aggregator' if !RUBY_PLATFORM =~ /arm|aarch64/
+ gem 'metasploit-aggregator' if [
25
+ 'x86-mingw32', 'x64-mingw32',
26
+ 'x86_64-linux', 'x86-linux',
27
+ 'darwin'].include?(RUBY_PLATFORM.gsub(/.*darwin.*/, 'darwin'))
28
end
29
30
group :development, :test do
0 commit comments