capistrano-sanitizer 0.1.0
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.
- data/capistrano-sanitizer.gemspec +23 -0
- data/lib/capistrano/ext/sanitizer.rb +8 -0
- data/lib/capistrano-sanitizer.rb +1 -0
- metadata +63 -0
@@ -0,0 +1,23 @@
|
|
1
|
+
# Generated by tgdice
|
2
|
+
# -*- encoding: utf-8 -*-
|
3
|
+
|
4
|
+
Gem::Specification.new do |s|
|
5
|
+
s.name = %q{capistrano-sanitizer}
|
6
|
+
s.version = "0.1.0"
|
7
|
+
s.summary = %q{Filter out svn passwords from the logs for extra security.}
|
8
|
+
s.description = %q{This gem modifies capistrano logger to filter out svn passwords.}
|
9
|
+
s.homepage = %q{http://github.com/tgdice/capistrano-sanitizer}
|
10
|
+
s.email = %q{jaduarte@tgdice.com}
|
11
|
+
s.authors = ["Jose Duarte"]
|
12
|
+
|
13
|
+
s.require_paths = ["lib"]
|
14
|
+
|
15
|
+
s.files = [
|
16
|
+
"capistrano-sanitizer.gemspec",
|
17
|
+
"lib/capistrano-sanitizer.rb",
|
18
|
+
"lib/capistrano/ext/sanitizer.rb"
|
19
|
+
]
|
20
|
+
|
21
|
+
s.add_runtime_dependency(%q<capistrano>, [">= 0"])
|
22
|
+
|
23
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
gem 'capistrano'
|
metadata
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: capistrano-sanitizer
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Jose Duarte
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-03-13 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: capistrano
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
description: This gem modifies capistrano logger to filter out svn passwords.
|
31
|
+
email: jaduarte@tgdice.com
|
32
|
+
executables: []
|
33
|
+
extensions: []
|
34
|
+
extra_rdoc_files: []
|
35
|
+
files:
|
36
|
+
- capistrano-sanitizer.gemspec
|
37
|
+
- lib/capistrano-sanitizer.rb
|
38
|
+
- lib/capistrano/ext/sanitizer.rb
|
39
|
+
homepage: http://github.com/tgdice/capistrano-sanitizer
|
40
|
+
licenses: []
|
41
|
+
post_install_message:
|
42
|
+
rdoc_options: []
|
43
|
+
require_paths:
|
44
|
+
- lib
|
45
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
46
|
+
none: false
|
47
|
+
requirements:
|
48
|
+
- - ! '>='
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: '0'
|
51
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
52
|
+
none: false
|
53
|
+
requirements:
|
54
|
+
- - ! '>='
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0'
|
57
|
+
requirements: []
|
58
|
+
rubyforge_project:
|
59
|
+
rubygems_version: 1.8.18
|
60
|
+
signing_key:
|
61
|
+
specification_version: 3
|
62
|
+
summary: Filter out svn passwords from the logs for extra security.
|
63
|
+
test_files: []
|