spandx 0.1.2 → 0.1.3

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
  SHA256:
3
- metadata.gz: a8c7d63af4cdd331e0f9ab51eb895797567278365cc1029dbbe07744158cb5f4
4
- data.tar.gz: d8cb97dfc05729a577a95c358d2a8397b43bd4628925bf3bcb55b282d6042ee8
3
+ metadata.gz: 68bd7e9482a8b509227140a30cbe6de687251055de0e5a044dac742facc416f8
4
+ data.tar.gz: aeaf6153a9e3032a2d8040a9c6f3f06031c55ab5c9d1931b55cf297eab1f8292
5
5
  SHA512:
6
- metadata.gz: 252c70cd5862c795eede663242f22b4be188c35a950fa55f41f1b324f9e6ee73b8a1a4bebf3d875fbd68b640359db6e20d5c0bbdd42e90dc640470a5fa91d7ad
7
- data.tar.gz: 14a5bc5fe4ad89de5288df9ea6425d234d25daced1c6429e17563809ec666109c9b8ba668881cf32b5528c480b44a0fa32b3f57c33bb2608f123c2fd3c62d498
6
+ metadata.gz: 52fc3d7dd8a2c8fb1a24b189d5bdd736f997dbf062d82e96cf4df10b6a125effb9dd6084264fff4f7d037bd33c63d4f876ba907c440377fceee4d2de56455a4e
7
+ data.tar.gz: 7815f0b62b4e2ada1b4b6798754af29f1313a96755642c9405de5feeb8aae7677a63d55ff555c67db415105d96332aacfc1abd9cdfdd2fc556b70f75abca98b8
data/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
- Version 0.1.2
1
+ Version 0.1.3
2
2
 
3
3
  # Changelog
4
4
  All notable changes to this project will be documented in this file.
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
  ## [Unreleased]
10
10
  - nil
11
11
 
12
+ ## [0.1.3] - 2020-01-16
13
+ ### Added
14
+ - Require `pathname`
15
+
12
16
  ## [0.1.2] - 2020-01-16
13
17
  ### Added
14
18
  - Add CLI for `spandx scan <LOCKER>`
@@ -20,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
20
24
  ### Added
21
25
  - Provide ruby API to the latest SPDX catalogue.
22
26
 
23
- [Unreleased]: https://github.com/mokhan/spandx/compare/v0.1.2...HEAD
27
+ [Unreleased]: https://github.com/mokhan/spandx/compare/v0.1.3...HEAD
28
+ [0.1.3]: https://github.com/mokhan/spandx/compare/v0.1.2...v0.1.3
24
29
  [0.1.2]: https://github.com/mokhan/spandx/compare/v0.1.1...v0.1.2
25
30
  [0.1.1]: https://github.com/mokhan/spandx/compare/v0.1.0...v0.1.1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- spandx (0.1.2)
4
+ spandx (0.1.3)
5
5
  net-hippie (~> 0.3)
6
6
  thor (~> 0.1)
7
7
 
@@ -6,7 +6,7 @@ module Spandx
6
6
  attr_reader :lockfile
7
7
 
8
8
  def initialize(lockfile, options)
9
- @lockfile = lockfile ? Pathname.new(File.expand_path(lockfile)) : nil
9
+ @lockfile = lockfile ? ::Pathname.new(File.expand_path(lockfile)) : nil
10
10
  @options = options
11
11
  end
12
12
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Spandx
4
- VERSION = '0.1.2'
4
+ VERSION = '0.1.3'
5
5
  end
data/lib/spandx.rb CHANGED
@@ -3,6 +3,7 @@
3
3
  require 'forwardable'
4
4
  require 'json'
5
5
  require 'net/hippie'
6
+ require 'pathname'
6
7
 
7
8
  require 'spandx/catalogue'
8
9
  require 'spandx/gateways/http'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spandx
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - mo khan