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
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ source 'https://rubygems.org'

gem 'base64'
gem 'bundler'
gem 'ostruct'

gemspec
4 changes: 3 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
pgp-rb (0.2.1)
pgp-rb (0.2.2)

GEM
remote: https://rubygems.org/
Expand All @@ -13,6 +13,7 @@ GEM
json (2.7.1)
language_server-protocol (3.17.0.3)
method_source (1.0.0)
ostruct (0.6.3)
parallel (1.24.0)
parser (3.3.0.5)
ast (~> 2.4.1)
Expand Down Expand Up @@ -69,6 +70,7 @@ PLATFORMS
DEPENDENCIES
base64
bundler
ostruct
pgp-rb!
pry
rake-compiler (~> 1.2)
Expand Down
20 changes: 10 additions & 10 deletions ext/pgp_rb/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions ext/pgp_rb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ edition = "2021"
[dependencies]
pgp = "0.16.0"
rand = "0.8.5"
magnus = "0.7.1"
magnus = "0.8.2"
base64 = "0.22.1"
num-traits = "0.2.19"
chrono = "0.4"
rb-sys = { version = "0.9.117", features = ["ruby-static"] }
rb-sys = { version = "0.9.124", features = ["ruby-static"] }

[lib]
crate-type = ["cdylib"]
Expand Down
2 changes: 1 addition & 1 deletion lib/pgp-rb/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module PGP
VERSION = '0.2.1'
VERSION = '0.2.2'
end
2 changes: 1 addition & 1 deletion pgp-rb.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
spec.version = PGP::VERSION
spec.summary = 'rPGP ruby wrapper'
spec.files = Dir['lib/**/*.rb', 'ext/**/*.{rs,toml,lock,rb}']
spec.extensions = ['ext/pgprb/extconf.rb']
spec.extensions = ['ext/pgp_rb/extconf.rb']
spec.rdoc_options = ['--main', 'README.rdoc', '--charset', 'utf-8', '--exclude', 'ext/']
spec.authors = ['Kirill Zaitsev']
spec.email = ['kirik910@gmail.com']
Expand Down
Loading