Rakefile in faster_path-0.1.11 vs Rakefile in faster_path-0.1.12
- old
+ new
@@ -1,9 +1,31 @@
require "bundler/gem_tasks"
require "rake/testtask"
require 'fileutils'
+desc 'System Details'
+task :sysinfo do
+ puts "faster_path #{FasterPath::VERSION}"
+ puts
+ puts `rustc -Vv`
+ puts `cargo -Vv`
+ IO.read('Cargo.toml').split('[dependencies]').last.split("\n").
+ select {|line| line =~ /=/ }.
+ each {|line| puts "%s\t%s" % line.match(/(\S+)[ ="']{1,4}([\d.]+)["']?/).captures }
+ puts
+ puts RUBY_DESCRIPTION
+ puts "bundler\t#{Bundler::VERSION}"
+ puts "rake\t#{Rake::VERSION}"
+ require 'ffi/version';
+ puts "ffi\t#{FFI::VERSION}"
+ begin
+ puts "%s\t%s" % IO.read('Gemfile.lock').match(/(mspec) \(([\d\.]+)\)/).captures
+ rescue Errno::ENOENT => _
+ puts "\nNo Gemfile.lock"
+ end
+end
+
desc "Build Rust extension"
task :build_src do
puts "Building extension..."
sh "cargo build --release"
end
@@ -43,16 +65,26 @@
task test: [:minitest, :lint] do |_t|
exec 'mspec --format spec core/file/basename core/file/extname core/file/dirname library/pathname'
end
+desc "Full mspec results w/o encoding"
+task :mspec_full do
+ exec %(bash -c "TEST_MONKEYPATCHES=true WITH_REGRESSION=true mspec --format spec core/file/basename core/file/extname core/file/dirname library/pathname")
+end
+
+desc "Full mspec results w/ encoding"
+task :mspec_encoding_full do
+ exec %(bash -c "ENCODING=1 TEST_MONKEYPATCHES=true WITH_REGRESSION=true mspec --format spec core/file/basename core/file/extname core/file/dirname library/pathname")
+end
+
Rake::TestTask.new(bench: :build_lib) do |t|
- t.libs = %w(lib test)
+ t.libs = %w[lib test]
t.pattern = 'test/**/*_benchmark.rb'
end
Rake::TestTask.new(pbench: :build_lib) do |t|
- t.libs = %w(lib test test/pbench)
+ t.libs = %w[lib test test/pbench]
t.pattern = 'test/pbench/pbench_suite.rb'
end
task default: :test