inline_encryption 2.0.0 → 2.0.1
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/.travis.yml +4 -3
- data/CHANGELOG.md +5 -0
- data/inline_encryption.gemspec +1 -1
- data/lib/inline_encryption/version.rb +1 -1
- data/test_app/Gemfile +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 16d2dbac242627fd934085109d15186d5ce6467c
|
|
4
|
+
data.tar.gz: ebb1094e6923741890f66e725f5dab491e4c9cda
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a1534f625ef45b19cc5b188169c9fd76ba74005fef25ca9ef97f26a37e9156e7711a185aa66eb08c5fb50f380acbd78accc43ef178d904030be058665a45db76
|
|
7
|
+
data.tar.gz: bc230d72d58413c72c528c6ce5245181dc60a088c0cb4386dd522162cb9ca1f07523e26623de9bd8176ce34c60fd55654ec57c4921006cda85ab41412283432f
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
# 2.0.1
|
|
2
|
+
- update test app to latest Rails 4 to satisfy automated security scan; future versions
|
|
3
|
+
will probably drop the included test app
|
|
4
|
+
- updated travis to drop ruby 2.1, update 2.2 and 2.3 to latest; add ruby 2.4 and 2.5
|
|
5
|
+
|
|
1
6
|
# 2.0.0
|
|
2
7
|
- Major backwards compatible change. A common if perhaps upspoken thought
|
|
3
8
|
of many good developers I have known is "I hate what I wrote yesterday"
|
data/inline_encryption.gemspec
CHANGED
|
@@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
|
|
|
7
7
|
spec.name = 'inline_encryption'
|
|
8
8
|
spec.version = InlineEncryption::VERSION
|
|
9
9
|
spec.authors = ['rubyisbeautiful']
|
|
10
|
-
spec.email = 'bcptaylor@gmail.com'
|
|
10
|
+
spec.email = 'bcptaylor+github@gmail.com'
|
|
11
11
|
spec.description = %q{ A simple encryption tool based on common convention }
|
|
12
12
|
spec.summary = %q{ A simple encryption tool based on common convention and designed as a drop in for Stringish things }
|
|
13
13
|
spec.homepage = 'http://github.com/rubyisbeautiful/inline_encryption'
|
data/test_app/Gemfile
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: inline_encryption
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- rubyisbeautiful
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-12-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: hashie
|
|
@@ -53,7 +53,7 @@ dependencies:
|
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '0'
|
|
55
55
|
description: " A simple encryption tool based on common convention "
|
|
56
|
-
email: bcptaylor@gmail.com
|
|
56
|
+
email: bcptaylor+github@gmail.com
|
|
57
57
|
executables:
|
|
58
58
|
- inline_encryption
|
|
59
59
|
extensions: []
|
|
@@ -151,7 +151,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
151
151
|
version: '0'
|
|
152
152
|
requirements: []
|
|
153
153
|
rubyforge_project:
|
|
154
|
-
rubygems_version: 2.
|
|
154
|
+
rubygems_version: 2.5.2.3
|
|
155
155
|
signing_key:
|
|
156
156
|
specification_version: 4
|
|
157
157
|
summary: A simple encryption tool based on common convention and designed as a drop
|