Skip to content

Commit aadbef4

Browse files
committed
Rename gem from bcrypt-ruby to bcrypt
1 parent 3411ff4 commit aadbef4

4 files changed

Lines changed: 19 additions & 19 deletions

File tree

Gemfile.lock

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
PATH
22
remote: .
33
specs:
4-
bcrypt-ruby (3.1.2)
4+
bcrypt (3.1.2)
55

66
GEM
77
remote: https://rubygems.org/
88
specs:
9-
diff-lcs (1.2.4)
10-
json (1.7.3)
11-
json (1.7.3-java)
9+
diff-lcs (1.2.5)
10+
json (1.8.1)
11+
json (1.8.1-java)
1212
rake (10.1.0)
13-
rake-compiler (0.9.1)
13+
rake-compiler (0.9.2)
1414
rake
15-
rdoc (3.12)
15+
rdoc (4.0.1)
1616
json (~> 1.4)
17-
rspec (2.13.0)
18-
rspec-core (~> 2.13.0)
19-
rspec-expectations (~> 2.13.0)
20-
rspec-mocks (~> 2.13.0)
21-
rspec-core (2.13.1)
22-
rspec-expectations (2.13.0)
17+
rspec (2.14.1)
18+
rspec-core (~> 2.14.0)
19+
rspec-expectations (~> 2.14.0)
20+
rspec-mocks (~> 2.14.0)
21+
rspec-core (2.14.7)
22+
rspec-expectations (2.14.4)
2323
diff-lcs (>= 1.1.3, < 2.0)
24-
rspec-mocks (2.13.1)
24+
rspec-mocks (2.14.4)
2525

2626
PLATFORMS
2727
java
2828
ruby
2929

3030
DEPENDENCIES
31-
bcrypt-ruby!
31+
bcrypt!
3232
rake-compiler (~> 0.9.0)
3333
rdoc
3434
rspec

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ security experts is not a professional response to risk.
1717

1818
`bcrypt()` allows you to easily harden your application against these kinds of attacks.
1919

20-
*Note*: JRuby versions of bcrypt-ruby `<= 2.1.3` had a [security
20+
*Note*: JRuby versions of bcrypt `<= 2.1.3` had a [security
2121
vulnerability](http://www.mindrot.org/files/jBCrypt/internat.adv) that
2222
was fixed in `>= 2.1.4`. If you used a vulnerable version to hash
2323
passwords with international characters in them, you will need to
2424
re-hash those passwords. This vulnerability only affected the JRuby gem.
2525

2626
## How to install bcrypt
2727

28-
gem install bcrypt-ruby
28+
gem install bcrypt
2929

30-
The bcrypt-ruby gem is available on the following ruby platforms:
30+
The bcrypt gem is available on the following ruby platforms:
3131

3232
* JRuby
3333
* RubyInstaller 1.8, 1.9, and 2.0 builds on win32

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ CLOBBER.include(
1717
"doc/coverage",
1818
"pkg"
1919
)
20-
GEMSPEC = eval(File.read(File.expand_path("../bcrypt-ruby.gemspec", __FILE__)))
20+
GEMSPEC = eval(File.read(File.expand_path("../bcrypt.gemspec", __FILE__)))
2121

2222
task :default => [:compile, :spec]
2323

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Gem::Specification.new do |s|
2-
s.name = 'bcrypt-ruby'
2+
s.name = 'bcrypt'
33
s.version = '3.1.2'
44

55
s.summary = "OpenBSD's bcrypt() password hashing algorithm."

0 commit comments

Comments
 (0)