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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9fa44349b8afbb67725ba42f2ac165ebb59cbfa6
4
- data.tar.gz: 1cfca6d68fca5bd9fb651bda3baa74ede0db5689
3
+ metadata.gz: 16d2dbac242627fd934085109d15186d5ce6467c
4
+ data.tar.gz: ebb1094e6923741890f66e725f5dab491e4c9cda
5
5
  SHA512:
6
- metadata.gz: fc26913e1f8fbd7a49d866c9441658d665a5e4b3f77d1e2ccdbf5b083fcfeb5f69ffff537d56d65fc4d63c6e2716519ce3c1a108f702a7a21d21343e0f88a3f0
7
- data.tar.gz: fafafd58e6d94081390689e11aca11257950b2758b44305fa2f3eb78125bf64e870de85ae1b3f3e55f881b958e7f82871168c646a7f48dcd97461cefb0adf0d9
6
+ metadata.gz: a1534f625ef45b19cc5b188169c9fd76ba74005fef25ca9ef97f26a37e9156e7711a185aa66eb08c5fb50f380acbd78accc43ef178d904030be058665a45db76
7
+ data.tar.gz: bc230d72d58413c72c528c6ce5245181dc60a088c0cb4386dd522162cb9ca1f07523e26623de9bd8176ce34c60fd55654ec57c4921006cda85ab41412283432f
@@ -1,7 +1,8 @@
1
1
  language: ruby
2
2
  rvm:
3
- - '2.1.7'
4
- - '2.2.5'
5
- - '2.3.1'
3
+ - '2.2.10'
4
+ - '2.3.8'
5
+ - '2.4.4'
6
+ - '2.5.3'
6
7
  script: bundle exec rspec spec
7
8
  bundler_args: --without development debugger
@@ -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"
@@ -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'
@@ -1,3 +1,3 @@
1
1
  module InlineEncryption
2
- VERSION = '2.0.0'
2
+ VERSION = '2.0.1'
3
3
  end
@@ -1,6 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem 'rails', '4.0.2'
3
+ gem 'rails', '~> 4'
4
4
  gem 'sqlite3'
5
5
 
6
6
  gem 'inline_encryption', path: '..'
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.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: 2016-06-16 00:00:00.000000000 Z
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.4.5.1
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