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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fccdde1cde46737f071121d887829fa13c9c163a
4
- data.tar.gz: da3d167ac867a8880661dd300ce96beaec865323
3
+ metadata.gz: 9d6c8a624bb2b01737bf896c5f1747acea17c59d
4
+ data.tar.gz: 542277febbc6f1b7fef35085224a890e2ff37473
5
5
  SHA512:
6
- metadata.gz: 0e34529782b514f89a9086a6e5849e2d7d439079601b245f1d63d18fe528c41896ac9c0cd7debe6751eb1012aeafcd3f4ba68bfb13113e91a0227c43bf743d5b
7
- data.tar.gz: 604e51533dde74f5774382d390c64a6dd763967ead24a5a2a4faa59620047693579eed6077b51e3b60f6679044c198b9934144dbb5f681c7a5ee4bbd33900d45
6
+ metadata.gz: 6e240386504e1e733847c6f9479229e76df0d854f10f148e8b737efaf50088b33ad876b94d55fe19b3a4dc176ad8cc8e2715d321bdc68a29c6761f927d79a69a
7
+ data.tar.gz: f0cc134b1bb30884bf383e812025feb8a7050118884edcfa378f26b07e18a6ac4db67124f92b055d0567b40f9e95b196009b43c2fc300bf4d0675b0ebacc3dbc
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- inline_encryption (1.0.0)
4
+ inline_encryption (1.0.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -4,5 +4,6 @@ require 'bundler'
4
4
  Bundler.setup
5
5
 
6
6
  require 'inline_encryption'
7
+ require 'inline_encryption/cli'
7
8
 
8
- InlineEncryption::CLI.start(ARGV)
9
+ InlineEncryption::CLI.start(ARGV)
@@ -1,4 +1,3 @@
1
- require 'debugger'
2
1
  require 'thor'
3
2
 
4
3
  module InlineEncryption
@@ -1,3 +1,3 @@
1
1
  module InlineEncryption
2
- VERSION = '1.0.0'
3
- end
2
+ VERSION = '1.0.2'
3
+ end
@@ -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
 
@@ -1,5 +1,6 @@
1
1
  require 'spec_helper'
2
2
  require 'base64'
3
+ require 'inline_encryption/cli'
3
4
 
4
5
  def tmp_filename
5
6
  File.expand_path(File.join(File.dirname(__FILE__), '../../tmp/bar.rb'))
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.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-20 00:00:00.000000000 Z
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: