git ssb

0+

dangerousbeans / %aPBe2k3ugtjBr4rrsU1…



Tree: 703d4f06feb9f60ff0ca99dfe5d9bf983de517ad

Files: 703d4f06feb9f60ff0ca99dfe5d9bf983de517ad / Rakefile

2568 bytesRaw
1gem "rspec"
2require "spec/rake/spectask"
3require 'rake/gempackagetask'
4require 'rake/contrib/rubyforgepublisher'
5require 'rake/clean'
6require 'rake/rdoctask'
7require "benchmark"
8
9PKG_NAME = "bcrypt-ruby"
10PKG_VERSION = "2.0.0"
11PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
12PKG_FILES = FileList[
13 '[A-Z]*',
14 'lib/**/*.rb',
15 'spec/**/*.rb',
16 'ext/*.c',
17 'ext/*.h',
18 'ext/*.rb'
19]
20CLEAN.include(
21 "ext/*.o",
22 "ext/*.bundle",
23 "ext/*.so"
24)
25CLOBBER.include(
26 "doc/coverage"
27)
28
29task :default => [:spec]
30
31desc "Run all specs"
32Spec::Rake::SpecTask.new do |t|
33 t.spec_files = FileList['spec/**/*_spec.rb']
34 t.spec_opts = ['--color','--backtrace','--diff']
35 t.rcov = true
36 t.rcov_dir = 'doc/coverage'
37 t.rcov_opts = ['--exclude', 'spec\/spec,spec\/.*_spec.rb']
38end
39
40namespace :spec do
41 desc "Run all specs and store html output in doc/specs.html"
42 Spec::Rake::SpecTask.new('html') do |t|
43 t.spec_files = FileList['spec/**/*_spec.rb']
44 t.spec_opts = ['--diff','--format html','--backtrace','--out doc/specs.html']
45 end
46end
47
48desc 'Generate RDoc'
49rd = Rake::RDocTask.new do |rdoc|
50 rdoc.rdoc_dir = 'doc/rdoc'
51 rdoc.options << '--title' << 'bcrypt-ruby' << '--line-numbers' << '--inline-source' << '--main' << 'README'
52 rdoc.template = ENV['TEMPLATE'] if ENV['TEMPLATE']
53 rdoc.rdoc_files.include('README', 'COPYING', 'CHANGELOG', 'lib/**/*.rb')
54end
55
56spec = Gem::Specification.new do |s|
57 s.name = PKG_NAME
58 s.version = PKG_VERSION
59 s.summary = "OpenBSD's bcrypt() password hashing algorithm."
60 s.description = <<-EOF
61 bcrypt() is a sophisticated and secure hash algorithm designed by The OpenBSD project
62 for hashing passwords. bcrypt-ruby provides a simple, humane wrapper for safely handling
63 passwords.
64 EOF
65
66 s.files = PKG_FILES.to_a
67 s.require_path = 'lib'
68
69 s.has_rdoc = true
70 s.rdoc_options = rd.options
71 s.extra_rdoc_files = rd.rdoc_files.to_a
72
73 s.extensions = FileList["ext/extconf.rb"].to_a
74
75 s.autorequire = 'bcrypt'
76 s.author = ["Coda Hale"]
77 s.email = "coda.hale@gmail.com"
78 s.homepage = "http://bcrypt-ruby.rubyforge.org"
79 s.rubyforge_project = "bcrypt-ruby"
80end
81
82Rake::GemPackageTask.new(spec) do |pkg|
83 pkg.need_zip = true
84 pkg.need_tar = true
85end
86
87task :compile => [:clean] do
88 Dir.chdir('./ext')
89 system "ruby extconf.rb"
90 system "make"
91end
92
93task :benchmark do
94 TESTS = 100
95 TEST_PWD = "this is a test"
96 require "lib/bcrypt"
97 Benchmark.bmbm do |results|
98 4.upto(10) do |n|
99 results.report("cost #{n}:") { TESTS.times { BCrypt::Password.create(TEST_PWD, :cost => n) } }
100 end
101 end
102end
103

Built with git-ssb-web