lastpass-api 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.
- checksums.yaml +4 -4
- data/README.md +15 -1
- data/lib/lastpass-api/groups.rb +1 -1
- data/lib/lastpass-api/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 731fafab7b60f2eef7b040c708963744da834f7a
|
4
|
+
data.tar.gz: a2a25391aabb09880e2857b903f564f507426588
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e51ba1f22751d503518536defd37f2536a61bbb84bf6bbd018c5150a03bf0a375dbe4822d9913c6544a4ad5b82f858e27f0954e5d7adfcfa14e064649d886bfd
|
7
|
+
data.tar.gz: 7d734d8276436f50cc00ce71d9552b413b4c38f1f5dfc85aaf5349d073b645cb1bc3a9e4c73743d920a1bbd29af243656c7578d437386efc0f18d1f8000b9b25
|
data/README.md
CHANGED
@@ -47,7 +47,21 @@ sudo make -C /usr/ports/security/lastpass-cli all install clean
|
|
47
47
|
apt-cyg install wget make cmake gcc-core gcc-g++ openssl-devel libcurl-devel libxml2-devel libiconv-devel cygutils-extra
|
48
48
|
```
|
49
49
|
|
50
|
-
Instructions for building manually
|
50
|
+
### Instructions for building manually
|
51
|
+
|
52
|
+
```bash
|
53
|
+
git clone https://github.com/lastpass/lastpass-cli.git
|
54
|
+
cd lastpass-cli
|
55
|
+
git checkout v1.1.2 # Or whatever version you'd like
|
56
|
+
cmake . && make
|
57
|
+
sudo make install
|
58
|
+
# Reload path or login to a new shell terminal
|
59
|
+
lpass --version
|
60
|
+
# or
|
61
|
+
./lpass --version
|
62
|
+
```
|
63
|
+
|
64
|
+
Further instructions can be found here: https://github.com/lastpass/lastpass-cli#building
|
51
65
|
|
52
66
|
## Usage
|
53
67
|
|
data/lib/lastpass-api/groups.rb
CHANGED
@@ -2,7 +2,7 @@ module Lastpass
|
|
2
2
|
class Groups < Collection
|
3
3
|
|
4
4
|
def find( search_text, with_password: false )
|
5
|
-
search_text << '/' unless search_text.end_with? '/'
|
5
|
+
search_text << '/' unless search_text.to_s.end_with? '/'
|
6
6
|
params = super
|
7
7
|
if params.is_a?( Hash ) && params[:name]&.end_with?( '/' )
|
8
8
|
Group.new( params )
|
data/lib/lastpass-api/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lastpass-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eric Terry
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-09-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colorize
|