kryptonita 0.0.2 → 0.0.3

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: dbd98b7d72515a5008909a00087689f01dac72d6
4
- data.tar.gz: 0682a84e224ebe0bce24833d7cc402de1930841e
3
+ metadata.gz: 84c1b53fbd1f95ac91126ac41410b80a9d2f9b59
4
+ data.tar.gz: 189e82657b8f2d6c65356b22aed9977e0887e9b6
5
5
  SHA512:
6
- metadata.gz: c7fb1a3a89f3704ccd54fc19753a2d4de0c2edaab91f752f33a9d62c1bcab0b30bfb6e53fd8c3d45f235b3e11843a0550801dfdad0790ae76864ebd495251c9e
7
- data.tar.gz: cb236a627433f8acf147de38f38357526a2faf40d91eff9116a17e0fbb485f63500f404f44ee4dd69222dde32b0eb68ad79232abdade69ebc3214aaa52f2c92b
6
+ metadata.gz: 4e3ede1950406cdac34a7a0396b93a32ecdce355e87e1b68f8db9425c3852866c72717b6e351b1561251620d3253f55ec30e7017499d3f6bf5c9240712ab8ae0
7
+ data.tar.gz: 9f48fd4b057cd8ed56ccd9cf43c1ccaa8c7301a123acec360c00349d97d95ebdf12dd28c5ef9a00b522f09bf36dfe6a6edd7be48c0a7ab0886b004c188d4282a
data/.gitignore CHANGED
@@ -7,7 +7,7 @@
7
7
  /pkg/
8
8
  /spec/reports/
9
9
  /tmp/
10
- *.bundle
10
+
11
11
  *.so
12
12
  *.o
13
13
  *.a
data/.travis.yml ADDED
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0.0
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Kryptonita
1
+ # Kryptonita [![Gem Version](https://badge.fury.io/rb/kryptonita.svg)](http://badge.fury.io/rb/kryptonita) [![Code Climate](https://codeclimate.com/github/AngoDev/kryptonita/badges/gpa.svg)](https://codeclimate.com/github/AngoDev/kryptonita) [![Build Status](https://travis-ci.org/AngoDev/kryptonita.svg)](https://travis-ci.org/AngoDev/kryptonita)
2
2
 
3
3
  Kryptonita is a Ruby gem that provides a lot of functions for hashing, encrypt and decrypt
4
4
 
@@ -35,7 +35,7 @@ Kryptonita::Hash.whirlpool("ruby")
35
35
  ```ruby
36
36
  Kryptonita::Hash.whirlpool(str)
37
37
  Kryptonita::Hash.sha512(str)
38
- ``
38
+ ```
39
39
 
40
40
  ## Contributing
41
41
 
Binary file
data/kryptonita.gemspec CHANGED
@@ -18,6 +18,8 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
20
20
 
21
+ spec.extensions = %w[ext/whirlpool/extconf.rb]
22
+
21
23
  spec.required_ruby_version = ">= 2.0.0"
22
24
  spec.add_development_dependency "bundler", "~> 1.7"
23
25
  spec.add_development_dependency "rake", "~> 10.0"
@@ -1,3 +1,3 @@
1
1
  module Kryptonita
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kryptonita
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrício dos Santos
@@ -57,13 +57,15 @@ description: Kryptonita is a Ruby gem that provides a lot of functions for hashi
57
57
  email:
58
58
  - ps@patriciodossantos.net
59
59
  executables: []
60
- extensions: []
60
+ extensions:
61
+ - ext/whirlpool/extconf.rb
61
62
  extra_rdoc_files: []
62
63
  files:
63
64
  - .gitignore
64
65
  - .rspec
65
66
  - .ruby-gemset
66
67
  - .ruby-version
68
+ - .travis.yml
67
69
  - Gemfile
68
70
  - LICENSE.txt
69
71
  - README.md
@@ -72,10 +74,11 @@ files:
72
74
  - ext/whirlpool/Whirlpool.c
73
75
  - ext/whirlpool/extconf.rb
74
76
  - ext/whirlpool/nessie.h
77
+ - ext/whirlpool/whirlpool.bundle
75
78
  - kryptonita.gemspec
76
79
  - lib/kryptonita.rb
77
80
  - lib/kryptonita/version.rb
78
- - lib/teste.rb
81
+ - lib/whirlpool/whirlpool.bundle
79
82
  - spec/kryptonita/hash_spec.rb
80
83
  - spec/spec_helper.rb
81
84
  homepage: https://github.com/AngoDev/kryptonita
data/lib/teste.rb DELETED
@@ -1,8 +0,0 @@
1
- require "./whirlpool/whirlpool"
2
-
3
- def print
4
- w = Whirlpool::Class.new
5
- p w.print_string("rubyç")
6
- end
7
-
8
- print