Skip to content

Commit

Permalink
Merge pull request #32 from clearhaus/migrate-to-ruby255
Browse files Browse the repository at this point in the history
Remove dependence on aes256gcm_decrypt, thus now making it compatible with Ruby 2.5.5.
  • Loading branch information
kbadk authored Nov 17, 2020
2 parents a819939 + eadf23b commit 42e2cbc
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 33 deletions.
30 changes: 0 additions & 30 deletions .circleci/config.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Test
on:
- push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2

- name: Install Ruby
uses: actions/setup-ruby@v1
with:
ruby-version: 2.5

- name: Run tests
id: run-tests
run: |
bundle install
bundle exec rake test
2 changes: 1 addition & 1 deletion lib/pedicel/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Pedicel
VERSION = '0.0.6'.freeze
VERSION = '0.1.0'.freeze
end
3 changes: 1 addition & 2 deletions pedicel.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ Gem::Specification.new do |s|

s.add_runtime_dependency 'dry-validation', '~> 0.11.1'

s.required_ruby_version = '~> 2.3'
s.add_runtime_dependency 'aes256gcm_decrypt', '~> 1.0'
s.required_ruby_version = '~> 2.5.5'

s.add_development_dependency 'rake', '~> 12.3'
s.add_development_dependency 'rspec', '~> 3.7'
Expand Down

0 comments on commit 42e2cbc

Please sign in to comment.