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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dbb6f1520424b4127e1dcee202734b0bc0c57c44
4
- data.tar.gz: a7beecc4b93e05de2ab6411314b39e602350cb4e
3
+ metadata.gz: 731fafab7b60f2eef7b040c708963744da834f7a
4
+ data.tar.gz: a2a25391aabb09880e2857b903f564f507426588
5
5
  SHA512:
6
- metadata.gz: 9c09f87b601466c8418be46e9e32feb69c1691f44db983b28ba9f000e78085ac351d5176ed306a788e684145ecad8b8f0935384fabe3f8b213e8c3a1a2c993fc
7
- data.tar.gz: cd04732df08688c39a949f5d494cc3bd2148acde256a425d16162d3b4a4c2802e0fd0922b2f40bcfb119503ca4524d662fb587afc0307cc30ebd59a7b6ba9f32
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: https://github.com/lastpass/lastpass-cli#building
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
 
@@ -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 )
@@ -1,3 +1,3 @@
1
1
  module Lastpass
2
- VERSION = '0.2.1'
2
+ VERSION = '0.2.2'.freeze
3
3
  end
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.1
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-05-02 00:00:00.000000000 Z
11
+ date: 2017-09-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colorize