inline_encryption 1.0.0 → 1.0.2
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/Gemfile.lock +1 -1
- data/bin/inline_encryption +2 -1
- data/lib/inline_encryption/cli.rb +0 -1
- data/lib/inline_encryption/version.rb +2 -2
- data/lib/inline_encryption.rb +1 -1
- data/spec/inline_encryption/cli_spec.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9d6c8a624bb2b01737bf896c5f1747acea17c59d
|
|
4
|
+
data.tar.gz: 542277febbc6f1b7fef35085224a890e2ff37473
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e240386504e1e733847c6f9479229e76df0d854f10f148e8b737efaf50088b33ad876b94d55fe19b3a4dc176ad8cc8e2715d321bdc68a29c6761f927d79a69a
|
|
7
|
+
data.tar.gz: f0cc134b1bb30884bf383e812025feb8a7050118884edcfa378f26b07e18a6ac4db67124f92b055d0567b40f9e95b196009b43c2fc300bf4d0675b0ebacc3dbc
|
data/Gemfile.lock
CHANGED
data/bin/inline_encryption
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
module InlineEncryption
|
|
2
|
-
VERSION = '1.0.
|
|
3
|
-
end
|
|
2
|
+
VERSION = '1.0.2'
|
|
3
|
+
end
|
data/lib/inline_encryption.rb
CHANGED
|
@@ -4,7 +4,6 @@ require 'inline_encryption/version'
|
|
|
4
4
|
require 'inline_encryption/config'
|
|
5
5
|
require 'inline_encryption/base'
|
|
6
6
|
require 'inline_encryption/errors'
|
|
7
|
-
require 'inline_encryption/cli'
|
|
8
7
|
|
|
9
8
|
module InlineEncryption
|
|
10
9
|
extend InlineEncryption::Base
|
|
@@ -12,6 +11,7 @@ module InlineEncryption
|
|
|
12
11
|
unless @_i18n_initialized_for_ie
|
|
13
12
|
locale_file = File.expand_path(File.join(File.dirname(__FILE__), '../config/locales.yml'))
|
|
14
13
|
I18n.load_path << locale_file
|
|
14
|
+
I18n.enforce_available_locales = false
|
|
15
15
|
@_i18n_initialized_for_ie = true
|
|
16
16
|
end
|
|
17
17
|
|
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: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bryan Taylor
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-01-
|
|
11
|
+
date: 2014-01-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: ' A simple encryption tool based on common convention '
|
|
14
14
|
email:
|