Skip to content

Commit 98fec74

Browse files
committed
Updated readme
1 parent ee2943e commit 98fec74

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
bcrypt_pbkdf (1.0.1.rc1)
4+
bcrypt_pbkdf (1.0.1)
55

66
GEM
77
remote: https://rubygems.org/
@@ -28,4 +28,4 @@ DEPENDENCIES
2828
rdoc (~> 3.12)
2929

3030
BUNDLED WITH
31-
1.17.1
31+
1.17.3

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,11 @@ For windows cross build make sure you checked out the gem source under the home
2121
```sh
2222
gem install rake-compiler-docks
2323
```
24+
25+
```sh
26+
bundle exec rake compile
27+
bundle exec rake test
28+
bundle exec rake clean clobber
29+
bundle exec rake gem:windows
30+
bundle exec rake release
31+
```

Rakefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
require 'rake/testtask'
22
require 'rubygems/package_task'
3+
require 'bundler/gem_tasks'
34
require 'rake/extensiontask'
45
require 'rake/clean'
56
require 'rdoc/task'
@@ -27,7 +28,7 @@ task :default => [:compile, :spec]
2728

2829
desc "Run all tests"
2930
Rake::TestTask.new do |t|
30-
#t.pattern =
31+
#t.pattern =
3132
t.test_files = FileList['test/**/*_test.rb']
3233
t.ruby_opts = ['-w']
3334
t.libs << "test"

bcrypt_pbkdf.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = 'bcrypt_pbkdf'
3-
s.version = '1.0.1.rc1'
3+
s.version = '1.0.1'
44

55
s.summary = "OpenBSD's bcrypt_pdkfd (a variant of PBKDF2 with bcrypt-based PRF)"
66
s.description = <<-EOF

0 commit comments

Comments
 (0)