js_dependency 0.3.11 → 0.3.12

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: a61cec11e64fc475a0fb7838b11abf8ab6a1a0d8cfab0929e475eff2fcbef6c0
4
- data.tar.gz: 461e0b8503aec5ab25f7b3508ae420af41f72022e39a4e1388a8ae8217858ac1
3
+ metadata.gz: 8a4e8c31528eb944e9acf98aaf37710cffb27728f6e5c9b7337f85dcf5a3ca13
4
+ data.tar.gz: fb428fe8a8eca603ebef72f19771d8b8d94235d782ccb301e2de7bb11da0a004
5
5
  SHA512:
6
- metadata.gz: c2e5483e130e608b4a21741ffccf44db1f812a6096b9f4c5df419cb97029f340c9c8ba770542133d528a213720f924282e9cd72bfd6cc135606904a594c20ed1
7
- data.tar.gz: ae67a36c93fdb56ddc5a59c6244d78b7c58f08399d72a725a6d655e945f518c2a14f517c6253dde5cf26516c1cf30a5834ac77cc752e0a67a51301c13d2576e2
6
+ metadata.gz: 7531ac4e27d5ec92a7efeea5e13051baed6471d7b059c622bd2aa21885a9d09bfcf9767c99bc59812adf1de6b333e60374518a888a7f3ef704d64a0d827ac812
7
+ data.tar.gz: 818a5e4210088a3f3d240a18d437909842c46619636e0c38cac1ffd3444659812e2b3a13dfe10b98f39bc4561fb8f52594696374159215f8d4bd29214f436cd1
data/.rubocop_todo.yml CHANGED
@@ -1,22 +1,27 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2022-08-13 05:13:43 UTC using RuboCop version 1.34.1.
3
+ # on 2022-08-13 15:05:03 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: 3
9
+ # Offense count: 2
10
+ Lint/UselessAssignment:
11
+ Exclude:
12
+ - 'spec/js_dependency_spec.rb'
13
+
14
+ # Offense count: 2
10
15
  # Configuration parameters: AllowedMethods, AllowedPatterns, IgnoredMethods, CountRepeatedAttributes.
11
16
  Metrics/AbcSize:
12
17
  Max: 29
13
18
 
14
- # Offense count: 3
19
+ # Offense count: 2
15
20
  # Configuration parameters: AllowedMethods, AllowedPatterns, IgnoredMethods.
16
21
  Metrics/CyclomaticComplexity:
17
22
  Max: 15
18
23
 
19
- # Offense count: 8
24
+ # Offense count: 7
20
25
  # Configuration parameters: CountComments, CountAsOne, ExcludedMethods, AllowedMethods, AllowedPatterns, IgnoredMethods.
21
26
  Metrics/MethodLength:
22
27
  Max: 19
@@ -26,19 +31,14 @@ Metrics/MethodLength:
26
31
  Metrics/ParameterLists:
27
32
  Max: 9
28
33
 
29
- # Offense count: 3
34
+ # Offense count: 2
30
35
  # Configuration parameters: AllowedMethods, AllowedPatterns, IgnoredMethods.
31
36
  Metrics/PerceivedComplexity:
32
37
  Max: 15
33
38
 
34
- # Offense count: 1
35
- Style/MultilineBlockChain:
36
- Exclude:
37
- - 'lib/js_dependency/mermaid/root.rb'
38
-
39
- # Offense count: 8
39
+ # Offense count: 18
40
40
  # This cop supports safe autocorrection (--autocorrect).
41
41
  # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns, IgnoredPatterns.
42
42
  # URISchemes: http, https
43
43
  Layout/LineLength:
44
- Max: 183
44
+ Max: 187
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.3.12] - 2022-08-14
4
+
5
+ - Add rspec test.
6
+ - Fix script tag contents extraction if script tag has `src` like `<script src="">` .
7
+
3
8
  ## [0.3.11] - 2022-08-13
4
9
 
5
10
  - Add target_paths options in configuration file to use array.
data/Gemfile CHANGED
@@ -10,6 +10,7 @@ gem "rake", "~> 13.0"
10
10
  gem "rspec", "~> 3.0"
11
11
 
12
12
  gem "codecov", require: false, group: "test"
13
+ gem "debug", ">= 1.0.0"
13
14
  gem "rubocop", "~> 1.21"
14
15
  gem "simplecov", require: false, group: :test
15
16
  gem "yarn"
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- js_dependency (0.3.11)
4
+ js_dependency (0.3.12)
5
5
  pathname
6
6
  thor
7
7
  yaml
@@ -14,8 +14,14 @@ 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)
18
+ irb (>= 1.3.6)
19
+ reline (>= 0.2.7)
17
20
  diff-lcs (1.5.0)
18
21
  docile (1.4.0)
22
+ io-console (0.5.11)
23
+ irb (1.4.1)
24
+ reline (>= 0.3.0)
19
25
  json (2.6.2)
20
26
  parallel (1.22.1)
21
27
  parser (3.1.2.1)
@@ -30,6 +36,8 @@ GEM
30
36
  rainbow (3.1.1)
31
37
  rake (13.0.6)
32
38
  regexp_parser (2.5.0)
39
+ reline (0.3.1)
40
+ io-console (~> 0.5)
33
41
  rexml (3.2.5)
34
42
  rspec (3.11.0)
35
43
  rspec-core (~> 3.11.0)
@@ -94,6 +102,7 @@ PLATFORMS
94
102
 
95
103
  DEPENDENCIES
96
104
  codecov
105
+ debug (>= 1.0.0)
97
106
  js_dependency!
98
107
  rake (~> 13.0)
99
108
  rspec (~> 3.0)
@@ -15,6 +15,10 @@ module JsDependency
15
15
  list << Regexp.last_match(1)
16
16
  end
17
17
 
18
+ scripts += str.gsub(%r{<script.+src=".+">(.+)</script>}m).with_object([]) do |_, list|
19
+ list << Regexp.last_match(1)
20
+ end
21
+
18
22
  scripts.uniq.sort.join("\n")
19
23
  end
20
24
 
@@ -26,10 +26,32 @@ module JsDependency
26
26
  mermaid_str(@child, level)
27
27
  end
28
28
 
29
+ # @param [String] src_path
30
+ # @return [JsDependency::Mermaid::NodesLink]
31
+ def relative_path_from(src_path)
32
+ NodesLink.new(
33
+ relative_parent_path(src_path),
34
+ relative_child_path(src_path)
35
+ )
36
+ end
37
+
29
38
  private
30
39
 
40
+ # @param [String] src_path
41
+ # @return [String]
42
+ def relative_parent_path(src_path)
43
+ parent.exist? ? parent.realpath.relative_path_from(Pathname.new(src_path).realpath.to_s).to_s : parent.to_s
44
+ end
45
+
46
+ # @param [String] src_path
47
+ # @return [String]
48
+ def relative_child_path(src_path)
49
+ child.exist? ? child.realpath.relative_path_from(Pathname.new(src_path).realpath.to_s).to_s : child.to_s
50
+ end
51
+
31
52
  # @param [Pathname] pathname
32
53
  # @param [Integer] level
54
+ # @return [String]
33
55
  def mermaid_str(pathname, level = 0)
34
56
  "#{parse(pathname).join("_")}[\"#{parse(pathname, level).join("/")}\"]"
35
57
  end
@@ -5,6 +5,7 @@ module JsDependency
5
5
  module Mermaid
6
6
  class Root
7
7
  attr_accessor :orientation
8
+ attr_reader :list
8
9
 
9
10
  # @param [String] orientation
10
11
  def initialize(orientation = "LR")
@@ -35,18 +36,14 @@ module JsDependency
35
36
  # @return [Array<String>]
36
37
  def export_nodes(name_level: 1, src_path: nil)
37
38
  nodes_links = if src_path
38
- src_pathname = Pathname.new(src_path).realpath
39
- @list.map do |nodes_link|
40
- NodesLink.new(nodes_link.parent.exist? ? nodes_link.parent.relative_path_from(src_pathname.to_s) : nodes_link.parent.to_s,
41
- nodes_link.child.exist? ? nodes_link.child.relative_path_from(src_pathname.to_s) : nodes_link.child.to_s)
42
- end
39
+ @list.map { |nodes_link| nodes_link.relative_path_from(src_path) }
43
40
  else
44
41
  @list
45
42
  end
46
- nodes_links.uniq do |link|
47
- "#{link.parent}__#{link.child}"
48
- end.sort_by { |link| "#{link.parent}__#{link.child}" }.map do |link|
49
- "#{link.parent_module_name(name_level)} --> #{link.child_module_name(name_level)}"
43
+ nodes_links = nodes_links.uniq { |nodes_link| "#{nodes_link.parent}__#{nodes_link.child}" }
44
+ nodes_links = nodes_links.sort_by { |nodes_link| "#{nodes_link.parent}__#{nodes_link.child}" }
45
+ nodes_links.map do |nodes_link|
46
+ "#{nodes_link.parent_module_name(name_level)} --> #{nodes_link.child_module_name(name_level)}"
50
47
  end
51
48
  end
52
49
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JsDependency
4
- VERSION = "0.3.11"
4
+ VERSION = "0.3.12"
5
5
  end
data/lib/js_dependency.rb CHANGED
@@ -71,7 +71,7 @@ module JsDependency
71
71
  nodes += mermaid_root.export_nodes(name_level: name_level, src_path: src_path)
72
72
  end
73
73
 
74
- output = (["flowchart LR"] + nodes.uniq + styles.uniq).join("\n")
74
+ output = "#{(["flowchart LR"] + nodes.uniq + styles.uniq).join("\n")}\n"
75
75
  output_pathname&.write(output)
76
76
  output
77
77
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: js_dependency
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.11
4
+ version: 0.3.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - junara