lastpass 1.7.0 → 1.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +21 -1
- data/CHANGELOG.md +5 -0
- data/lastpass.gemspec +1 -1
- data/lib/lastpass/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a879a9c57dbd674ba44e9c441bcffa2f704c1583d80b3aa75eaa66576ea2b5fc
|
4
|
+
data.tar.gz: 9dd6b4926036b65cb34f0713b3f64a036272b9abd5e206a17dbfab3574a037e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d0b045497235c5b7625c871d127a931af796cb5077ee8b715d16b3a4714e421be70c3d813c29ef19191e2019c828199681eba75be66034244068c798e03990f
|
7
|
+
data.tar.gz: cefd6ec631d4155b4da7d943c1be8ef6cea7b652ee5234a9f0129ecef3727d460f3fd8abc0b4b53391660ff1d949cdf06c122714b43deea8fc9aa6723ec5e6bc
|
data/.github/workflows/ruby.yml
CHANGED
@@ -3,6 +3,7 @@ name: Ruby
|
|
3
3
|
on:
|
4
4
|
push:
|
5
5
|
branches: [ master ]
|
6
|
+
tags: 'v*'
|
6
7
|
pull_request:
|
7
8
|
branches: [ master ]
|
8
9
|
|
@@ -14,10 +15,29 @@ jobs:
|
|
14
15
|
matrix:
|
15
16
|
ruby: [2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7]
|
16
17
|
steps:
|
17
|
-
- uses: actions/checkout@
|
18
|
+
- uses: actions/checkout@v3
|
18
19
|
- uses: ruby/setup-ruby@v1
|
19
20
|
with:
|
20
21
|
ruby-version: ${{ matrix.ruby }}
|
21
22
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
22
23
|
- run: bundle install
|
23
24
|
- run: bundle exec rake
|
25
|
+
|
26
|
+
build:
|
27
|
+
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/v')
|
28
|
+
needs: test
|
29
|
+
runs-on: ubuntu-latest
|
30
|
+
steps:
|
31
|
+
- uses: actions/checkout@v3
|
32
|
+
- uses: ruby/setup-ruby@v1
|
33
|
+
with:
|
34
|
+
ruby-version: 2.7
|
35
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
36
|
+
- name: Install dependencies
|
37
|
+
run: bundle install
|
38
|
+
- name: Build the gem
|
39
|
+
run: bundle exec gem build lastpass.gemspec
|
40
|
+
- name: Push the gem to rubygems.org
|
41
|
+
run: bundle exec gem push *.gem
|
42
|
+
env:
|
43
|
+
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
|
data/CHANGELOG.md
CHANGED
data/lastpass.gemspec
CHANGED
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
|
|
16
16
|
|
17
17
|
s.required_ruby_version = ">= 2.0.0"
|
18
18
|
|
19
|
-
s.add_dependency "httparty", "~> 0.14
|
19
|
+
s.add_dependency "httparty", "~> 0.14"
|
20
20
|
|
21
21
|
s.add_development_dependency "rake", "~> 12.0"
|
22
22
|
s.add_development_dependency "rspec", "~> 3.5"
|
data/lib/lastpass/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lastpass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.7.
|
4
|
+
version: 1.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dmitry Yakimenko
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-02-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.14
|
19
|
+
version: '0.14'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.14
|
26
|
+
version: '0.14'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -125,7 +125,7 @@ homepage: https://github.com/detunized/lastpass-ruby
|
|
125
125
|
licenses:
|
126
126
|
- MIT
|
127
127
|
metadata: {}
|
128
|
-
post_install_message:
|
128
|
+
post_install_message:
|
129
129
|
rdoc_options: []
|
130
130
|
require_paths:
|
131
131
|
- lib
|
@@ -140,8 +140,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
140
140
|
- !ruby/object:Gem::Version
|
141
141
|
version: '0'
|
142
142
|
requirements: []
|
143
|
-
rubygems_version: 3.1.
|
144
|
-
signing_key:
|
143
|
+
rubygems_version: 3.1.6
|
144
|
+
signing_key:
|
145
145
|
specification_version: 4
|
146
146
|
summary: Unofficial LastPass API
|
147
147
|
test_files:
|