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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0e5006131e2f4e416d2f08d9829970d74dd8865b
4
- data.tar.gz: c12ee7c1257ce0dad589ab7ce08dcb6763a52f9a
3
+ metadata.gz: 2152748198fab435f7924aff74f028916595ab6c
4
+ data.tar.gz: a2f5e81ff99213a9ee47c4262722f83843d2b326
5
5
  SHA512:
6
- metadata.gz: 0a99673aafe067be313e8b4bc7c816b141d54e9494b224707ccce316ad7f2763340a17c367814e57763e30c9dbf864f8eb7f727fbe1b084416b485c183088eb2
7
- data.tar.gz: 2e77da51249e963e5f0be71d94d6646655d33cde18d470d3a1fe4182ebdf76843c18fce0665f3bca823d0a67cc36a4588c72694c1c8b9c1c6e972773bd1a77d9
6
+ metadata.gz: 5dbf9d69423bc2ab64f4e0d4e51b079bc080d20ebc7caba2c759efc3d6f7662ae605962823e7b6a5d9ef89c5376d89fd722c60657eaa6a55f6eeb2823077a3dc
7
+ data.tar.gz: d4f5139c15942b9fd0403e460e633d2d092d2c56410b9988190760c851dbb76d1e406e871881b2937b0de4cf90a6361b41b746838cc22474a32ca6f12399041c
data/README.md CHANGED
@@ -1,36 +1,32 @@
1
- # Virgil::Crypto
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
- Add this line to your application's Gemfile:
10
-
11
- ```ruby
12
- gem 'virgil-crypto'
13
- ```
14
-
15
- And then execute:
16
-
17
- $ bundle
5
+ ### Installing prerequisites
18
6
 
19
- Or install it yourself as:
7
+ Currently we don't provide binary gems, so you will need to build the
8
+ native extension for gem.
20
9
 
21
- $ gem install virgil-crypto
10
+ Install build dependencies.
22
11
 
23
- ## Usage
12
+ https://github.com/VirgilSecurity/virgil-crypto/#build-prerequisites
24
13
 
25
- TODO: Write usage instructions here
14
+ ### Gem installation
26
15
 
27
- ## Development
16
+ To install latest gem version run:
28
17
 
29
- After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
18
+ ```
19
+ gem install virgil-crypto --pre
20
+ ```
30
21
 
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
22
+ or add the following line to your Gemfile:
32
23
 
33
- ## Contributing
24
+ ```
25
+ gem 'virgil-crypto', '~> 2.0.0b'
26
+ ```
34
27
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/virgil-crypto.
28
+ and then run
36
29
 
30
+ ```
31
+ bundle
32
+ ```
@@ -1,5 +1,5 @@
1
1
  module Virgil
2
2
  module Crypto
3
- VERSION = "2.0.2b1"
3
+ VERSION = "2.0.2b2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: virgil-crypto
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2b1
4
+ version: 2.0.2b2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitriy Dudkin