forked from voxpupuli/hiera-eyaml
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add first gem, make encrypt_value a binary, and make a keys dir
- Loading branch information
Geoff Meakin
committed
Jul 12, 2013
1 parent
d9264cf
commit 5ec0890
Showing
6 changed files
with
34 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
.idea | ||
*.iml | ||
*.gradle | ||
keys/*.pem | ||
pkg/*/lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
require 'rubygems' | ||
require 'rake/gempackagetask' | ||
|
||
spec = Gem::Specification.new do |gem| | ||
gem.name = "hiera-eyaml" | ||
gem.version = "1.0.0" | ||
gem.summary = "OpenSSL Encryption backend for Hiera" | ||
gem.email = "[email protected]" | ||
gem.author = "Tom Paulton" | ||
gem.homepage = "http://github.com/TomPaulton/hiera-eyaml" | ||
gem.description = "Hiera backend for decrypting encrypted yaml properties" | ||
gem.require_path = "lib" | ||
gem.files = FileList["lib/**/*"].to_a | ||
gem.add_dependency('hiera', '>=0.2.0') | ||
end | ||
|
||
Rake::GemPackageTask.new(spec) do |pkg| | ||
pkg.need_tar = true | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Binary file not shown.