lastpassify 0.4.2 → 0.4.3

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
  SHA256:
3
- metadata.gz: c8fa2651a40480bf59970d5803e13b9260b3b733c9573bf00a3079a675d4d5bf
4
- data.tar.gz: 7014f3ec1ca55b372e8286a39d73907ecaaac3eb62530f0e7689ea763378bfc2
3
+ metadata.gz: 5ee2f71e1a3ca242eea587032386ae69eb3e134c2596c38c6d44ab21a5a6dea0
4
+ data.tar.gz: 4351cb6d17f23b34fc0c04ac96c2d35f53adba6a7be3c40510c6244913cfa0d9
5
5
  SHA512:
6
- metadata.gz: a9bed41890c2a2a41366a5ea63b34ec59d7c1207c8c1876ff99a213e2e81a7c842f041140062234c574eab99b266ef25072517d18b8ccb48e9c95b86b52c019b
7
- data.tar.gz: eb17d7bb573a52c5decb520e7fd6c3096afca4744c13b4e599942503a85c467b3363c2047de4152449c388fcba23b3dfed21f4707d6089d7d571924972d6e79b
6
+ metadata.gz: b0600d643aac26d68e396ababd5b319791a538fb9d487d16a0baa5365efc3430fcc7da5a3afb892c588a12b2657909193621f59ac4080ef1b97a20961b911c05
7
+ data.tar.gz: 2faea4b24c1cff1cce0eb737854ed1c94d80266033406611a2d52ed6338d186a9b61e29ffd811ca694ef7ae65e9a2d6d25aa62b3deb593bea69180967498691d
@@ -6,11 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.4.3]
10
+
11
+ - Fixed the loading of the LastPassify executable.
12
+
9
13
  ## [0.4.2]
10
14
 
11
15
  - Updates to dependencies
12
16
  - Minimum Ruby version is now 2.3
13
17
  - Hopefully fixing the binstub warning
14
18
 
15
- [Unreleased]: https://github.com/umn-asr/lastpassify/compare/v0.4.2...HEAD
19
+ [Unreleased]: https://github.com/umn-asr/lastpassify/compare/v0.4.3...HEAD
20
+ [0.4.3]: https://github.com/umn-asr/lastpassify/compare/v0.4.2...v0.4.3
16
21
  [0.4.2]: https://github.com/umn-asr/lastpassify/compare/3997abac1101eb75c91543241651976be4d49f73...HEAD
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $LOAD_PATH.unshift("#{__dir__}/../lib")
4
+
5
+ require "lastpassify"
6
+
7
+ LastPassify::Runner.new(ARGV).execute!
@@ -16,7 +16,8 @@ Gem::Specification.new do |spec|
16
16
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
17
17
  f.match(%r{^(test|spec|features)/})
18
18
  end
19
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
19
+ spec.bindir = "exe"
20
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
21
  spec.require_paths = ["lib"]
21
22
 
22
23
  spec.required_ruby_version = ">= 2.3.0"
@@ -0,0 +1,3 @@
1
+ require_relative "./lastpassify/version"
2
+ require_relative "./lastpassify/runner"
3
+ require_relative "./lastpassify/lastpassify"
@@ -1,3 +1,3 @@
1
1
  module LastPassify
2
- VERSION = "0.4.2".freeze
2
+ VERSION = "0.4.3".freeze
3
3
  end
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lastpassify
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Eklund (eeklund), Remy Abdullahi (abdu0299)
8
8
  autorequire:
9
- bindir: bin
9
+ bindir: exe
10
10
  cert_chain: []
11
11
  date: 2021-01-25 00:00:00.000000000 Z
12
12
  dependencies:
@@ -141,7 +141,8 @@ description: This gem populates a given ERB/YAML file with values from LastPass
141
141
  email:
142
142
  - eeklund@umn.edu
143
143
  - abdu0299@umn.edu
144
- executables: []
144
+ executables:
145
+ - lastpassify
145
146
  extensions: []
146
147
  extra_rdoc_files: []
147
148
  files:
@@ -155,7 +156,9 @@ files:
155
156
  - LICENSE
156
157
  - README.md
157
158
  - changelog.md
159
+ - exe/lastpassify
158
160
  - lastpassify.gemspec
161
+ - lib/lastpassify.rb
159
162
  - lib/lastpassify/lastpassify.rb
160
163
  - lib/lastpassify/runner.rb
161
164
  - lib/lastpassify/version.rb