forked from abscondment/statistics2
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Rakefile
73 lines (60 loc) · 1.74 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
require 'rubygems'
require 'bundler'
require 'semver'
def s_version
SemVer.find.format "%M.%m.%p%s"
end
begin
Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
$stderr.puts e.message
$stderr.puts "Run `bundle install` to install missing gems"
exit e.status_code
end
require 'rake'
require 'juwelier'
desc 'build the C extension'
task :extension do
Dir.chdir File.expand_path('../ext', __FILE__) do
system "ruby extconf.rb"
system "make"
end
end
Juwelier::Tasks.new do |gem|
# gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
gem.name = "statistics3"
gem.homepage = "http://github.com/flajann2/statistics3"
gem.license = "MIT"
gem.version = s_version
gem.summary = %Q{Statistics3 library}
gem.description = %Q{
Statistics3 is a module that provides normal,
Chi-square, t- and F- probability distributions
for Ruby. It is a fork/continuation of Shin-ichiro Hara's original code.
It provides a native, compiled extension and a pure Ruby implementation.
}
gem.email = "[email protected]"
gem.authors = ["Fred Mitchell"]
gem.required_ruby_version = '>= 2.2.2'
# dependencies defined in Gemfile
end
Juwelier::RubygemsDotOrgTasks.new
require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.pattern = FileList['spec/**/*_spec.rb']
end
desc "Code coverage detail"
task :simplecov do
ENV['COVERAGE'] = "true"
Rake::Task['spec'].execute
end
desc 'run basic tests'
task :test => :extension do
Dir.chdir File.expand_path('..', __FILE__) do
system "ruby -w -I lib -I ext -r test/unit -e 'Test::Unit::AutoRunner.run' test"
end
end
task :default => :test
require 'yard'
YARD::Rake::YardocTask.new