Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ jobs:
- truffleruby-head
- mingw
exclude:
- { os: ubuntu, ruby: jruby }
- { os: ubuntu, ruby: jruby-head }
- { os: ubuntu, ruby: mingw }
- { os: macos, ruby: mingw }
- { os: windows, ruby: truffleruby }
Expand All @@ -46,8 +44,12 @@ jobs:
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
env:
JAVA_OPTS: -Djdk.io.File.enableADS=true
- name: Run tests
run: bundle exec rake default
env:
JAVA_OPTS: -Djdk.io.File.enableADS=true

finish:
runs-on: ubuntu-latest
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ An easy way to keep your users' passwords secure.
* https://github.com/bcrypt-ruby/bcrypt-ruby/tree/master

[![Github Actions Build Status](https://github.com/bcrypt-ruby/bcrypt-ruby/actions/workflows/ruby.yml/badge.svg?branch=master)](https://github.com/bcrypt-ruby/bcrypt-ruby/actions/workflows/ruby.yml)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/6fplerx9lnaf0hyo?svg=true)](https://ci.appveyor.com/project/TJSchuck35975/bcrypt-ruby)

## Why you should use `bcrypt()`

Expand Down
50 changes: 0 additions & 50 deletions appveyor.yml

This file was deleted.

2 changes: 1 addition & 1 deletion bcrypt.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |s|
s.files = `git ls-files`.split("\n")
s.require_path = 'lib'

s.add_development_dependency 'rake-compiler', '~> 0.9.2'
s.add_development_dependency 'rake-compiler', '~> 1.2.0'
s.add_development_dependency 'rspec', '>= 3'

s.rdoc_options += ['--title', 'bcrypt-ruby', '--line-numbers', '--inline-source', '--main', 'README.md']
Expand Down
2 changes: 0 additions & 2 deletions ext/mri/bcrypt_ext.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@ static void * bc_crypt_nogvl(void * ptr) {
*/
static VALUE bc_crypt(VALUE self, VALUE key, VALUE setting) {
char * value;
void * data;
int size;
VALUE out;

struct bc_crypt_args args;
Expand Down