Rakefile in libuv-0.10.0 vs Rakefile in libuv-0.10.2

- old
+ new

@@ -1,31 +1,31 @@ -require 'rubygems' -require 'rspec/core/rake_task' # testing framework -require 'yard' # yard documentation -require 'ffi' # loads the extension -require 'rake/clean' # for the :clobber rake task -require 'libuv/ext/tasks' # platform specific rake tasks used by compile - - - -# By default we don't run network tests -task :default => :limited_spec -RSpec::Core::RakeTask.new(:limited_spec) do |t| - # Exclude network tests and tests that won't run on java (real io) - t.rspec_opts = "--tag ~network --tag ~real_io" -end -RSpec::Core::RakeTask.new(:spec) - - -desc "Run all tests" -task :test => [:spec] - - -YARD::Rake::YardocTask.new do |t| - t.files = ['lib/**/*.rb', '-', 'ext/README.md', 'README.md'] -end - - -desc "Compile libuv from submodule" -task :compile => ["ext/libuv.#{FFI::Platform::LIBSUFFIX}"] - -CLOBBER.include("ext/libuv.#{FFI::Platform::LIBSUFFIX}") +require 'rubygems' +require 'rspec/core/rake_task' # testing framework +require 'yard' # yard documentation +require 'ffi' # loads the extension +require 'rake/clean' # for the :clobber rake task +require 'libuv/ext/tasks' # platform specific rake tasks used by compile + + + +# By default we don't run network tests +task :default => :limited_spec +RSpec::Core::RakeTask.new(:limited_spec) do |t| + # Exclude network tests + t.rspec_opts = "--tag ~network" +end +RSpec::Core::RakeTask.new(:spec) + + +desc "Run all tests" +task :test => [:spec] + + +YARD::Rake::YardocTask.new do |t| + t.files = ['lib/**/*.rb', '-', 'ext/README.md', 'README.md'] +end + + +desc "Compile libuv from submodule" +task :compile => ["ext/libuv.#{FFI::Platform::LIBSUFFIX}"] + +CLOBBER.include("ext/libuv.#{FFI::Platform::LIBSUFFIX}")