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 f06bdad commit baf7e01Copy full SHA for baf7e01
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.include?('arm')
+ 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