c7decrypt 0.2.1 → 0.2.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.
- data/{examples/cdecrypt.rb → bin/c7decrypt.rb} +0 -0
- data/c7decrypt.gemspec +2 -1
- data/lib/c7decrypt/version.rb +1 -1
- metadata +6 -5
|
File without changes
|
data/c7decrypt.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
|
|
|
10
10
|
s.platform = Gem::Platform::RUBY
|
|
11
11
|
s.files = Dir.glob("lib/**/*") +
|
|
12
12
|
Dir.glob("spec/**/*") +
|
|
13
|
-
Dir.glob("
|
|
13
|
+
Dir.glob("bin/**/*") +
|
|
14
14
|
[".gitignore",
|
|
15
15
|
".rspec",
|
|
16
16
|
".travis.yml",
|
|
@@ -21,6 +21,7 @@ Gem::Specification.new do |s|
|
|
|
21
21
|
"Rakefile",
|
|
22
22
|
"c7decrypt.gemspec"]
|
|
23
23
|
s.require_paths = ["lib"]
|
|
24
|
+
s.executables = s.files.grep(%r{^bin/[^\/]+$}) { |f| File.basename(f) }
|
|
24
25
|
s.summary = 'Ruby based Cisco Type 7 Password Decryptor'
|
|
25
26
|
s.description = 'A library for decoding Cisco Type 7 passwords'
|
|
26
27
|
s.homepage = 'http://rubygems.org/gems/c7decrypt'
|
data/lib/c7decrypt/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: c7decrypt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,11 +9,12 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-12-26 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: A library for decoding Cisco Type 7 passwords
|
|
15
15
|
email: claudijd@yahoo.com
|
|
16
|
-
executables:
|
|
16
|
+
executables:
|
|
17
|
+
- c7decrypt.rb
|
|
17
18
|
extensions: []
|
|
18
19
|
extra_rdoc_files: []
|
|
19
20
|
files:
|
|
@@ -25,7 +26,7 @@ files:
|
|
|
25
26
|
- spec/example_configs/empty_example.txt
|
|
26
27
|
- spec/example_configs/simple_canned_example.txt
|
|
27
28
|
- spec/spec_helper.rb
|
|
28
|
-
-
|
|
29
|
+
- bin/c7decrypt.rb
|
|
29
30
|
- .gitignore
|
|
30
31
|
- .rspec
|
|
31
32
|
- .travis.yml
|
|
@@ -55,7 +56,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
55
56
|
version: '0'
|
|
56
57
|
requirements: []
|
|
57
58
|
rubyforge_project:
|
|
58
|
-
rubygems_version: 1.8.
|
|
59
|
+
rubygems_version: 1.8.28
|
|
59
60
|
signing_key:
|
|
60
61
|
specification_version: 3
|
|
61
62
|
summary: Ruby based Cisco Type 7 Password Decryptor
|