hiera-eyaml-plaintext 0.5 → 0.6

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.
@@ -1,7 +1,7 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'hiera/backend/eyaml/encryptors/plaintext/version'
4
+ require 'hiera/backend/eyaml/encryptors/plaintext'
5
5
 
6
6
  Gem::Specification.new do |gem|
7
7
  gem.name = "hiera-eyaml-plaintext"
@@ -11,6 +11,8 @@ class Hiera
11
11
 
12
12
  class Plaintext < Encryptor
13
13
 
14
+ VERSION = "0.6"
15
+
14
16
  self.tag = "PLAINTEXT"
15
17
 
16
18
  self.options = {
data/tools/regem.sh CHANGED
@@ -3,4 +3,3 @@
3
3
  gem uninstall hiera-eyaml-plaintext
4
4
  rake build
5
5
  gem install pkg/hiera-eyaml-plaintext
6
- eyaml -v
metadata CHANGED
@@ -4,8 +4,8 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 0
7
- - 5
8
- version: "0.5"
7
+ - 6
8
+ version: "0.6"
9
9
  platform: ruby
10
10
  authors:
11
11
  - Geoff Meakin
@@ -13,7 +13,7 @@ autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
15
 
16
- date: 2013-11-19 00:00:00 +00:00
16
+ date: 2013-11-28 00:00:00 +00:00
17
17
  default_executable:
18
18
  dependencies: []
19
19
 
@@ -35,7 +35,6 @@ files:
35
35
  - hiera-eyaml-plaintext.gemspec
36
36
  - lib/hiera/backend/eyaml/encryptors/plaintext.rb
37
37
  - lib/hiera/backend/eyaml/encryptors/plaintext/eyaml_init.rb
38
- - lib/hiera/backend/eyaml/encryptors/plaintext/version.rb
39
38
  - tools/regem.sh
40
39
  has_rdoc: true
41
40
  homepage: http://github.com/gtmtechltd/hiera-eyaml-plaintext
@@ -1,12 +0,0 @@
1
- class Hiera
2
- module Backend
3
- module Eyaml
4
- module Encryptors
5
- module Plaintext
6
- VERSION = "0.5"
7
- end
8
- end
9
- end
10
- end
11
- end
12
-