virgil-crypto 2.0.2b1 → 2.0.2b2
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.
- checksums.yaml +4 -4
- data/README.md +19 -23
- data/lib/virgil/crypto/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2152748198fab435f7924aff74f028916595ab6c
|
|
4
|
+
data.tar.gz: a2f5e81ff99213a9ee47c4262722f83843d2b326
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5dbf9d69423bc2ab64f4e0d4e51b079bc080d20ebc7caba2c759efc3d6f7662ae605962823e7b6a5d9ef89c5376d89fd722c60657eaa6a55f6eeb2823077a3dc
|
|
7
|
+
data.tar.gz: d4f5139c15942b9fd0403e460e633d2d092d2c56410b9988190760c851dbb76d1e406e871881b2937b0de4cf90a6361b41b746838cc22474a32ca6f12399041c
|
data/README.md
CHANGED
|
@@ -1,36 +1,32 @@
|
|
|
1
|
-
# Virgil
|
|
2
|
-
|
|
3
|
-
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/virgil/crypto`. To experiment with that code, run `bin/console` for an interactive prompt.
|
|
4
|
-
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
1
|
+
# Virgil Crypto Library wrapper
|
|
6
2
|
|
|
7
3
|
## Installation
|
|
8
4
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
```ruby
|
|
12
|
-
gem 'virgil-crypto'
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
And then execute:
|
|
16
|
-
|
|
17
|
-
$ bundle
|
|
5
|
+
### Installing prerequisites
|
|
18
6
|
|
|
19
|
-
|
|
7
|
+
Currently we don't provide binary gems, so you will need to build the
|
|
8
|
+
native extension for gem.
|
|
20
9
|
|
|
21
|
-
|
|
10
|
+
Install build dependencies.
|
|
22
11
|
|
|
23
|
-
|
|
12
|
+
https://github.com/VirgilSecurity/virgil-crypto/#build-prerequisites
|
|
24
13
|
|
|
25
|
-
|
|
14
|
+
### Gem installation
|
|
26
15
|
|
|
27
|
-
|
|
16
|
+
To install latest gem version run:
|
|
28
17
|
|
|
29
|
-
|
|
18
|
+
```
|
|
19
|
+
gem install virgil-crypto --pre
|
|
20
|
+
```
|
|
30
21
|
|
|
31
|
-
|
|
22
|
+
or add the following line to your Gemfile:
|
|
32
23
|
|
|
33
|
-
|
|
24
|
+
```
|
|
25
|
+
gem 'virgil-crypto', '~> 2.0.0b'
|
|
26
|
+
```
|
|
34
27
|
|
|
35
|
-
|
|
28
|
+
and then run
|
|
36
29
|
|
|
30
|
+
```
|
|
31
|
+
bundle
|
|
32
|
+
```
|