Add development dependencies for Cygwin
In the Cygwin environment, minitest and test-unit aren't bundled with Ruby. Add these as explicit development dependencies when running under Cygwin.
This commit is contained in:
parent
81f4abdbcd
commit
90bdcaddb7
|
@ -63,4 +63,6 @@ Gem::Specification.new do |s|
|
||||||
s.add_development_dependency('jekyll_test_plugin')
|
s.add_development_dependency('jekyll_test_plugin')
|
||||||
s.add_development_dependency('jekyll_test_plugin_malicious')
|
s.add_development_dependency('jekyll_test_plugin_malicious')
|
||||||
s.add_development_dependency('rouge', '~> 1.7')
|
s.add_development_dependency('rouge', '~> 1.7')
|
||||||
|
s.add_development_dependency('minitest') if RUBY_PLATFORM =~ /cygwin/
|
||||||
|
s.add_development_dependency('test-unit') if RUBY_PLATFORM =~ /cygwin/
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue