pws 0.9.2 → 1.0.0.pre.1
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/README.md +18 -14
- data/features/add.feature +14 -2
- data/features/create.feature +23 -0
- data/features/in-out.feature +54 -0
- data/features/master.feature +1 -0
- data/features/misc.feature +14 -0
- data/features/namespaces.feature +6 -4
- data/features/remove.feature +1 -0
- data/features/resave.feature +37 -0
- data/features/show.feature +36 -3
- data/features/step_definitions/pws_steps.rb +42 -2
- data/features/support/env.rb +3 -2
- data/features/update.feature +60 -0
- data/lib/pws.rb +109 -80
- data/lib/pws/encryptor.rb +28 -24
- data/lib/pws/format.rb +103 -0
- data/lib/pws/format/0.9.rb +44 -0
- data/lib/pws/format/1.0.rb +183 -0
- data/lib/pws/runner.rb +21 -2
- data/lib/pws/version.rb +1 -1
- data/pws.gemspec +13 -7
- metadata +96 -9
- data/features/access.feature +0 -13
data/features/access.feature
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
Feature: Access
|
2
|
-
In order to use the password safe
|
3
|
-
As a user
|
4
|
-
I want to create a new safe
|
5
|
-
|
6
|
-
Scenario: Trying to call a pws task (except help or version), but safe does not exist, yet
|
7
|
-
When I run `pws` interactively
|
8
|
-
And I type "some_new_master_password"
|
9
|
-
Then the output should contain "No password safe detected, creating one at"
|
10
|
-
And the output should contain "Please enter a new master password:"
|
11
|
-
And the output should contain "There aren't any passwords stored"
|
12
|
-
|
13
|
-
|