js_dependency 0.3.12 → 0.3.13

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: 8a4e8c31528eb944e9acf98aaf37710cffb27728f6e5c9b7337f85dcf5a3ca13
4
- data.tar.gz: fb428fe8a8eca603ebef72f19771d8b8d94235d782ccb301e2de7bb11da0a004
3
+ metadata.gz: a9b9f351689b4d75a421eda510b534970d54309e031496ed3b1e01e25b0ff0a2
4
+ data.tar.gz: bc0d1e40069754c33aa375b14dbc4d7e29a4d3ae09125dc330a03d4daf0dc4ab
5
5
  SHA512:
6
- metadata.gz: 7531ac4e27d5ec92a7efeea5e13051baed6471d7b059c622bd2aa21885a9d09bfcf9767c99bc59812adf1de6b333e60374518a888a7f3ef704d64a0d827ac812
7
- data.tar.gz: 818a5e4210088a3f3d240a18d437909842c46619636e0c38cac1ffd3444659812e2b3a13dfe10b98f39bc4561fb8f52594696374159215f8d4bd29214f436cd1
6
+ metadata.gz: 43af3b1752058c11f4d549275a2cb0bc969fc00cf57c00c72ad5af857fc4af321e918e7858fc79677c8822a5a73c9c3d43995239574be5975603fa03f60a9da8
7
+ data.tar.gz: 931e374285441b95d3a00de41318532e62ce40933969e30a937c8cc175bd1615eb29f5f2e2464db24966bd59ff3ee86f13e103e8f8b61ffe45ee5f0ad8f40938
data/.rubocop_todo.yml CHANGED
@@ -1,16 +1,11 @@
1
1
  # This configuration was generated by
2
- # `rubocop --auto-gen-config`
3
- # on 2022-08-13 15:05:03 UTC using RuboCop version 1.35.0.
2
+ # `rubocop --auto-gen-config --exclude-limit 1`
3
+ # on 2022-08-14 11:04:22 UTC using RuboCop version 1.35.0.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
7
7
  # versions of RuboCop, may require this file to be generated again.
8
8
 
9
- # Offense count: 2
10
- Lint/UselessAssignment:
11
- Exclude:
12
- - 'spec/js_dependency_spec.rb'
13
-
14
9
  # Offense count: 2
15
10
  # Configuration parameters: AllowedMethods, AllowedPatterns, IgnoredMethods, CountRepeatedAttributes.
16
11
  Metrics/AbcSize:
@@ -36,9 +31,9 @@ Metrics/ParameterLists:
36
31
  Metrics/PerceivedComplexity:
37
32
  Max: 15
38
33
 
39
- # Offense count: 18
34
+ # Offense count: 1
40
35
  # This cop supports safe autocorrection (--autocorrect).
41
36
  # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns, IgnoredPatterns.
42
37
  # URISchemes: http, https
43
38
  Layout/LineLength:
44
- Max: 187
39
+ Max: 183
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.3.13] - 2022-08-14
4
+
5
+ - Add rspec test.
6
+
3
7
  ## [0.3.12] - 2022-08-14
4
8
 
5
9
  - Add rspec test.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- js_dependency (0.3.12)
4
+ js_dependency (0.3.13)
5
5
  pathname
6
6
  thor
7
7
  yaml
@@ -14,9 +14,9 @@ GEM
14
14
  codecov (0.6.0)
15
15
  simplecov (>= 0.15, < 0.22)
16
16
  coderay (1.1.3)
17
- debug (1.5.0)
17
+ debug (1.6.2)
18
18
  irb (>= 1.3.6)
19
- reline (>= 0.2.7)
19
+ reline (>= 0.3.1)
20
20
  diff-lcs (1.5.0)
21
21
  docile (1.4.0)
22
22
  io-console (0.5.11)
@@ -58,14 +58,14 @@ GEM
58
58
  rspec (>= 2.13, < 4)
59
59
  unparser
60
60
  rspec-support (3.11.0)
61
- rubocop (1.34.1)
61
+ rubocop (1.35.0)
62
62
  json (~> 2.3)
63
63
  parallel (~> 1.10)
64
64
  parser (>= 3.1.2.1)
65
65
  rainbow (>= 2.2.2, < 4.0)
66
66
  regexp_parser (>= 1.8, < 3.0)
67
67
  rexml (>= 3.2.5, < 4.0)
68
- rubocop-ast (>= 1.20.0, < 2.0)
68
+ rubocop-ast (>= 1.20.1, < 2.0)
69
69
  ruby-progressbar (~> 1.7)
70
70
  unicode-display_width (>= 1.4.0, < 3.0)
71
71
  rubocop-ast (1.21.0)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JsDependency
4
- VERSION = "0.3.12"
4
+ VERSION = "0.3.13"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: js_dependency
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.12
4
+ version: 0.3.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - junara
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-08-13 00:00:00.000000000 Z
11
+ date: 2022-08-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pathname