opensecret 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d8c7565fa1ae84582a92d7ecd437008570baaec0
4
- data.tar.gz: fc2f65062e9fc99b57cd7aa773e5969a015c2ea2
3
+ metadata.gz: e67c23773cbe174123307c2867d43bb87eadeb52
4
+ data.tar.gz: a609ac281671d31a31347f3b4b495624a0943627
5
5
  SHA512:
6
- metadata.gz: 9d92678d4e10eeffd23e8fcb576e3ec7d0dbc79b5266f33a1cf83a2a5791e20485a905320f58dcc1a77f4d98206719664def1699d2cc78e7b80eab6a8088242d
7
- data.tar.gz: a6c663d79a1435bec2896f383b8a7cc71a10557d1a80117bb4d01bba33fd7c411786ddbe3e15e6cfc9d8d8d28c62cfacd38dc4b3107fa41cf2b59fc5fa9c8d23
6
+ metadata.gz: 5a4ad46b55c31d1ee53b712d16614a1bc037e5530ade7a3cee1d1f36ac7a810ab24acfd477a80f1ae8f61a0b304fcf6fb6a00a93138b9c92eee7ec1feec8a56a
7
+ data.tar.gz: d234147703779a54e450edd86dacb66dc47f2fa651d8ff310d4baf32813a3a7e3dd632d1da2abe917b090d552fafe0f9196edfb56c94188687dda0d29c633c8a
data/README.md CHANGED
@@ -29,13 +29,13 @@ opensecret never accesses the cloud for anything - it is designed to operate on
29
29
 
30
30
  You are done setting up opensecret with just 5 commands. *Simple* means less mistakes, less confusion and therefore more secure. Let's recap on the 5 configurations
31
31
 
32
- - <tt>keydir</tt> &raquo; best practise is a +usb key drive+ with your **actual keys**
33
- - <tt>name</tt> &raquo; single word lowercase and short - how your peers call you
34
- - <tt>email</tt> &raquo; email address (validation scheduled for end of March 2018)
35
- - <tt>domain</tt> &raquo; +joe@home+ if single or a team like +it-dept@ibm.com+
36
- - <tt>store</tt> &raquo; a Git project URL to hold your encrypted secret material
32
+ - <tt>**keydir**</tt> &raquo; best practise is a usb key drive with your **actual keys**
33
+ - <tt>**name**</tt> &raquo; single word lowercase and short - how your peers call you
34
+ - <tt>**email**</tt> &raquo; email address (validation scheduled for end of March 2018)
35
+ - <tt>**domain**</tt> &raquo; **joe@home** if single or a team like it-dept@ibm.com
36
+ - <tt>**store**</tt> &raquo; a Git project URL to hold your encrypted secret material
37
37
 
38
- The +opensecret init+ command
38
+ The opensecret init command
39
39
 
40
40
  - creates a 8192 bit uncrackable private key
41
41
  - collects a human password and creates a machine password
@@ -119,7 +119,7 @@ Any hijacker will need access to a great many things and be very precise with th
119
119
 
120
120
  You can use opensecret alone or you can use it to share secrets with colleagues, friends and family, even machines.
121
121
 
122
- Every domain is tied to backend storage which is accessible by you and others in your domain. You can use Git, S3, a networked filesystem or shared drive, a SSH accessible filesystem and soon, free storage from +opensecret.io+
122
+ Every domain is tied to backend storage which is accessible by you and others in your domain. You can use Git, S3, a networked filesystem or shared drive, a SSH accessible filesystem and soon, free storage from <tt>opensecret.io</tt>
123
123
 
124
124
 
125
125
 
data/Rakefile CHANGED
@@ -1,6 +1,5 @@
1
1
  require "bundler/gem_tasks"
2
2
  require "rake/testtask"
3
- require 'yard'
4
3
 
5
4
  # -
6
5
  # - This configuration allows us to run "rake test"
@@ -19,7 +18,8 @@ task :default => :test
19
18
  # - This configuration allows us to run "rake yard"
20
19
  # - to build documentation.
21
20
  # -
22
- YARD::Rake::YardocTask.new do |t|
23
- t.files = ['lib/**/*.rb']
24
- t.stats_options = ['--list-undoc']
25
- end
21
+ # ---> require 'yard'
22
+ # ---> YARD::Rake::YardocTask.new do |t|
23
+ # ---> t.files = ['lib/**/*.rb']
24
+ # ---> t.stats_options = ['--list-undoc']
25
+ # ---> end
@@ -1,3 +1,3 @@
1
1
  module OpenSecret
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opensecret
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Apollo Akora
@@ -159,7 +159,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
159
159
  version: '0'
160
160
  requirements: []
161
161
  rubyforge_project:
162
- rubygems_version: 2.5.1
162
+ rubygems_version: 2.5.2.1
163
163
  signing_key:
164
164
  specification_version: 4
165
165
  summary: opensecret locks and unlocks secrets in a simple, secure and intuitive way.