bcrypt 3.1.12 → 3.1.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Gemfile.lock DELETED
@@ -1,44 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- bcrypt (3.1.12)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- diff-lcs (1.2.5)
10
- json (1.8.6)
11
- json (1.8.6-java)
12
- rake (10.4.2)
13
- rake-compiler (0.9.5)
14
- rake
15
- rdoc (3.12.2)
16
- json (~> 1.4)
17
- rspec (3.3.0)
18
- rspec-core (~> 3.3.0)
19
- rspec-expectations (~> 3.3.0)
20
- rspec-mocks (~> 3.3.0)
21
- rspec-core (3.3.2)
22
- rspec-support (~> 3.3.0)
23
- rspec-expectations (3.3.1)
24
- diff-lcs (>= 1.2.0, < 2.0)
25
- rspec-support (~> 3.3.0)
26
- rspec-mocks (3.3.2)
27
- diff-lcs (>= 1.2.0, < 2.0)
28
- rspec-support (~> 3.3.0)
29
- rspec-support (3.3.0)
30
-
31
- PLATFORMS
32
- java
33
- ruby
34
- x64-mingw32
35
- x86-mingw32
36
-
37
- DEPENDENCIES
38
- bcrypt!
39
- rake-compiler (~> 0.9.2)
40
- rdoc (~> 3.12)
41
- rspec (>= 3)
42
-
43
- BUNDLED WITH
44
- 1.16.1
data/appveyor.yml DELETED
@@ -1,50 +0,0 @@
1
- ###############################################################################
2
- #
3
- # This AppVeyor config is *NOT* for running the tests on Windows.
4
- #
5
- # This is to ensure that the latest version of the bcrypt gem can be installed
6
- # on Windows across all of the currently supported versions of Ruby.
7
- #
8
- ###############################################################################
9
-
10
- version: "{branch}-{build}"
11
- build: off
12
- clone_depth: 1
13
-
14
- init:
15
- # Install Ruby 1.8.7
16
- - if %RUBY_VERSION%==187 (
17
- appveyor DownloadFile https://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.8.7-p374.exe -FileName C:\ruby_187.exe &
18
- C:\ruby_187.exe /verysilent /dir=C:\Ruby%RUBY_VERSION%
19
- )
20
-
21
- environment:
22
- matrix:
23
- - RUBY_VERSION: "187"
24
- - RUBY_VERSION: "193"
25
- - RUBY_VERSION: "200"
26
- - RUBY_VERSION: "200-x64"
27
- - RUBY_VERSION: "21"
28
- - RUBY_VERSION: "21-x64"
29
- - RUBY_VERSION: "22"
30
- - RUBY_VERSION: "22-x64"
31
- - RUBY_VERSION: "23"
32
- - RUBY_VERSION: "23-x64"
33
- - RUBY_VERSION: "24"
34
- - RUBY_VERSION: "24-x64"
35
- - RUBY_VERSION: "25"
36
- - RUBY_VERSION: "25-x64"
37
-
38
- install:
39
- - set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH%
40
- - if %RUBY_VERSION%==187 (
41
- gem update --system 2.0.17
42
- )
43
-
44
- before_test:
45
- - ruby -v
46
- - gem -v
47
-
48
- test_script:
49
- - gem install bcrypt --prerelease --no-ri --no-rdoc
50
- - ruby -e "require 'rubygems'; require 'bcrypt'"