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:
Matt Robinson
2014-11-05 17:20:42 +00:00
parent 81f4abdbcd
commit 90bdcaddb7

View File

@@ -63,4 +63,6 @@ Gem::Specification.new do |s|
s.add_development_dependency('jekyll_test_plugin')
s.add_development_dependency('jekyll_test_plugin_malicious')
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