encryption 1.1.7 → 1.1.8

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,15 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: ec7f6d82b38dea97e1c781d22e3eb17d8bcc499e
4
- data.tar.gz: 07a59b8bde4e6fb4faa9901a5ac8841586d6bd03
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ N2QxN2EwYTQxMTA2MWViYWZjYzhhZjdhNGFkNTFhZThhMTg4YTUzNA==
5
+ data.tar.gz: !binary |-
6
+ ZWQ3ODAzYjMwMTc3MTBjOWRhYzVhMmIyNDliZThiZWUwYzFiNDBhOA==
5
7
  SHA512:
6
- metadata.gz: ebe6a67a272d5ec0e006ed3f98e0bdf34bd9efa1ac16fe9d40c96803b2b3422dd83d5b8c6263ac503dbacc1068b3fe193f42b250c27fb6e36f37cf89a2d3d71c
7
- data.tar.gz: d3f6d06281fa944e27f31f679986dc2cf4dd1ae3a89c6db23461751d8f255123441a9129416f0531d0612738f8407901e011b7b1b90bae52872087937a034585
8
+ metadata.gz: !binary |-
9
+ OGVjZDk0OTRiNWU1NTc4MWU4YzllNGQxNmEyZDM0MWQxZmFlYjgzOTZmODdk
10
+ OTc0NDk4MWJlZDAxMjhmMjUzOThjN2Y1ODc2MmMzYjUwZDA5ZTA2ZmEwY2Vi
11
+ NjVlNzQ0NGU3MWZlNmEzMmY2MzhmZTU5NDhkMmRhMDI0ZGVlN2U=
12
+ data.tar.gz: !binary |-
13
+ MzU4ZTE0M2NjNDJiYTRhMWM1MzgxMDY5MjE4NmMwMDg2ODQ0NjgzYjE5OTM2
14
+ NmYwMjk5MTA0ZGJiN2I5NmRjOGE0NmRhNDBhZmY2M2U1MGM1YjM5MTlhZjBh
15
+ YWNmMWVkMzgzNDczZDk2MzdiMzg4NmZkYmNiNmJmOTBhYzA0NWM=
@@ -0,0 +1,2 @@
1
+ # Delete Gemfile lock files
2
+ *.lock
@@ -1,5 +1,8 @@
1
1
  language: ruby
2
2
  rvm:
3
+ - 2.3.1
4
+ - 2.2.0
5
+ - 2.1.0
3
6
  - 2.0.0
4
7
  - 1.9.3
5
- - 1.9.2
8
+ - 1.9.2
data/Gemfile CHANGED
@@ -2,6 +2,10 @@ source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
4
 
5
- gem 'rake'
5
+ if RUBY_VERSION >= '2.1'
6
+ gem 'rake'
7
+ else
8
+ gem 'rake', '10.5.0'
9
+ end
6
10
 
7
- gem 'rspec'
11
+ gem 'rspec'
data/README.md CHANGED
@@ -136,5 +136,4 @@ This gem is distributed under The MIT License.
136
136
 
137
137
  Author
138
138
  ------
139
- Itay Grudev
140
-   ![Itay Grudev](http://safemail.justlikeed.net/e/a5307c0c2dd405f756cab9f4c76cd63a.png)
139
+ Itay Grudev <itay()grudev...com>
@@ -2,7 +2,7 @@ require 'date'
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'encryption'
5
- s.version = '1.1.7'
5
+ s.version = '1.1.8'
6
6
  s.date = Date.today.to_s
7
7
  s.summary = 'A simple wrapper for the OpenSSL Cipher library'
8
8
  s.description = 'Encryption provides a simple interface for symmetric / asymmetric encryption with the OpenSSL Cipher library'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: encryption
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.7
4
+ version: 1.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Itay Grudev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-08 00:00:00.000000000 Z
11
+ date: 2016-09-19 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Encryption provides a simple interface for symmetric / asymmetric encryption
14
14
  with the OpenSSL Cipher library
@@ -18,10 +18,10 @@ executables: []
18
18
  extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
21
+ - .gitignore
21
22
  - .rspec
22
23
  - .travis.yml
23
24
  - Gemfile
24
- - Gemfile.lock
25
25
  - MIT-LICENSE
26
26
  - README.md
27
27
  - Rakefile
@@ -60,17 +60,17 @@ require_paths:
60
60
  - lib
61
61
  required_ruby_version: !ruby/object:Gem::Requirement
62
62
  requirements:
63
- - - '>='
63
+ - - ! '>='
64
64
  - !ruby/object:Gem::Version
65
65
  version: '0'
66
66
  required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  requirements:
68
- - - '>='
68
+ - - ! '>='
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
72
  rubyforge_project:
73
- rubygems_version: 2.2.1
73
+ rubygems_version: 2.4.8
74
74
  signing_key:
75
75
  specification_version: 4
76
76
  summary: A simple wrapper for the OpenSSL Cipher library
@@ -1,26 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- encryption (1.1.6)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- diff-lcs (1.2.2)
10
- rake (10.0.4)
11
- rspec (2.13.0)
12
- rspec-core (~> 2.13.0)
13
- rspec-expectations (~> 2.13.0)
14
- rspec-mocks (~> 2.13.0)
15
- rspec-core (2.13.1)
16
- rspec-expectations (2.13.0)
17
- diff-lcs (>= 1.1.3, < 2.0)
18
- rspec-mocks (2.13.1)
19
-
20
- PLATFORMS
21
- ruby
22
-
23
- DEPENDENCIES
24
- encryption!
25
- rake
26
- rspec