forked from pbhogan/scrypt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
62 lines (46 loc) · 1.44 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
require 'bundler/setup'
require 'bundler/gem_tasks'
require 'rake'
require 'rake/clean'
require 'rspec/core/rake_task'
require 'ffi'
require 'ffi-compiler/compile_task'
require 'rubygems'
require 'rubygems/package_task'
require 'rdoc/task'
task :default => [:clean, :compile_ffi, :spec]
desc "clean, make and run specs"
task :spec do
RSpec::Core::RakeTask.new
end
desc "FFI compiler"
namespace "ffi-compiler" do
FFI::Compiler::CompileTask.new('ext/scrypt/scrypt_ext') do |t|
t.cflags << "-Wall -rec"
t.cflags << "-D_GNU_SOURCE=1" if RbConfig::CONFIG["host_os"].downcase =~ /mingw/
t.cflags << "-arch x86_64 -arch i386" if t.platform.mac?
t.ldflags << "-arch x86_64 -arch i386" if t.platform.mac?
end
end
task :compile_ffi => ["ffi-compiler:default"]
CLEAN.include('ext/scrypt/*{.o,.log,.so,.bundle}')
CLEAN.include('lib/**/*{.o,.log,.so,.bundle}')
desc 'Generate RDoc'
rd = Rake::RDocTask.new do |rdoc|
rdoc.rdoc_dir = 'doc/rdoc'
rdoc.options << '--title' << 'scrypt-ruby' << '--line-numbers' << '--inline-source' << '--main' << 'README'
rdoc.template = ENV['TEMPLATE'] if ENV['TEMPLATE']
rdoc.rdoc_files.include('COPYING', 'lib/**/*.rb')
end
desc "Run all specs"
RSpec::Core::RakeTask.new do |t|
rspec_opts = ['--colour','--backtrace']
end
def gem_spec
@gem_spec ||= Gem::Specification.load('scrypt.gemspec')
end
Gem::PackageTask.new(gem_spec) do |pkg|
pkg.need_zip = true
pkg.need_tar = true
pkg.package_dir = 'pkg'
end