inch 0.5.0.rc5 → 0.5.0.rc6

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.
Files changed (166) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +0 -6
  3. data/.rubocop_todo.yml +40 -34
  4. data/Gemfile +3 -3
  5. data/Rakefile +10 -6
  6. data/bin/inch +5 -5
  7. data/config/base.rb +4 -4
  8. data/config/nodejs.rb +44 -1
  9. data/config/ruby.rb +1 -1
  10. data/inch.gemspec +17 -17
  11. data/lib/inch.rb +13 -13
  12. data/lib/inch/api.rb +10 -10
  13. data/lib/inch/api/compare.rb +2 -2
  14. data/lib/inch/api/compare/code_objects.rb +1 -1
  15. data/lib/inch/api/diff.rb +1 -1
  16. data/lib/inch/api/options/suggest.rb +1 -1
  17. data/lib/inch/api/suggest.rb +1 -1
  18. data/lib/inch/cli.rb +6 -6
  19. data/lib/inch/cli/command.rb +15 -15
  20. data/lib/inch/cli/command/base.rb +5 -3
  21. data/lib/inch/cli/command/base_list.rb +0 -1
  22. data/lib/inch/cli/command/console.rb +5 -5
  23. data/lib/inch/cli/command/diff.rb +6 -6
  24. data/lib/inch/cli/command/inspect.rb +5 -5
  25. data/lib/inch/cli/command/list.rb +4 -4
  26. data/lib/inch/cli/command/options/base.rb +17 -15
  27. data/lib/inch/cli/command/options/base_list.rb +17 -17
  28. data/lib/inch/cli/command/options/base_object.rb +1 -1
  29. data/lib/inch/cli/command/options/console.rb +13 -13
  30. data/lib/inch/cli/command/options/diff.rb +19 -19
  31. data/lib/inch/cli/command/options/inspect.rb +5 -5
  32. data/lib/inch/cli/command/options/list.rb +7 -7
  33. data/lib/inch/cli/command/options/show.rb +5 -5
  34. data/lib/inch/cli/command/options/stats.rb +2 -2
  35. data/lib/inch/cli/command/options/suggest.rb +12 -12
  36. data/lib/inch/cli/command/output/base.rb +1 -1
  37. data/lib/inch/cli/command/output/diff.rb +9 -9
  38. data/lib/inch/cli/command/output/inspect.rb +13 -13
  39. data/lib/inch/cli/command/output/list.rb +1 -1
  40. data/lib/inch/cli/command/output/show.rb +4 -4
  41. data/lib/inch/cli/command/output/stats.rb +14 -14
  42. data/lib/inch/cli/command/output/suggest.rb +14 -14
  43. data/lib/inch/cli/command/show.rb +4 -4
  44. data/lib/inch/cli/command/stats.rb +4 -4
  45. data/lib/inch/cli/command/suggest.rb +4 -4
  46. data/lib/inch/cli/command_parser.rb +4 -4
  47. data/lib/inch/cli/sparkline_helper.rb +1 -1
  48. data/lib/inch/cli/trace_helper.rb +1 -1
  49. data/lib/inch/cli/yardopts_helper.rb +1 -1
  50. data/lib/inch/code_object.rb +3 -3
  51. data/lib/inch/code_object/provider.rb +3 -3
  52. data/lib/inch/code_object/proxy.rb +3 -4
  53. data/lib/inch/codebase.rb +5 -5
  54. data/lib/inch/codebase/object.rb +2 -1
  55. data/lib/inch/codebase/serializer.rb +2 -2
  56. data/lib/inch/config.rb +6 -6
  57. data/lib/inch/config/codebase.rb +5 -5
  58. data/lib/inch/core_ext.rb +1 -1
  59. data/lib/inch/core_ext/string.rb +1 -1
  60. data/lib/inch/evaluation.rb +8 -8
  61. data/lib/inch/evaluation/proxy.rb +2 -3
  62. data/lib/inch/evaluation/role.rb +1 -1
  63. data/lib/inch/language/elixir/code_object/base.rb +6 -4
  64. data/lib/inch/language/elixir/evaluation/base.rb +2 -1
  65. data/lib/inch/language/elixir/evaluation/function_object.rb +1 -1
  66. data/lib/inch/language/elixir/import.rb +14 -14
  67. data/lib/inch/language/elixir/provider/reader.rb +1 -1
  68. data/lib/inch/language/elixir/provider/reader/docstring.rb +13 -0
  69. data/lib/inch/language/elixir/provider/reader/object.rb +5 -5
  70. data/lib/inch/language/elixir/provider/reader/object/base.rb +13 -5
  71. data/lib/inch/language/elixir/provider/reader/object/function_object.rb +1 -1
  72. data/lib/inch/language/elixir/provider/reader/parser.rb +21 -7
  73. data/lib/inch/language/elixir/roles/base.rb +3 -3
  74. data/lib/inch/language/elixir/roles/function.rb +2 -1
  75. data/lib/inch/language/elixir/roles/object.rb +1 -1
  76. data/lib/inch/language/nodejs/code_object/base.rb +199 -0
  77. data/lib/inch/language/nodejs/code_object/function_object.rb +74 -0
  78. data/lib/inch/language/nodejs/code_object/member_object.rb +11 -0
  79. data/lib/inch/language/nodejs/code_object/module_object.rb +23 -0
  80. data/lib/inch/language/nodejs/evaluation/base.rb +29 -0
  81. data/lib/inch/language/nodejs/evaluation/function_object.rb +31 -0
  82. data/lib/inch/language/nodejs/evaluation/member_object.rb +11 -0
  83. data/lib/inch/language/nodejs/evaluation/module_object.rb +27 -0
  84. data/lib/inch/language/nodejs/import.rb +17 -1
  85. data/lib/inch/language/nodejs/provider/jsdoc.rb +1 -1
  86. data/lib/inch/language/nodejs/provider/jsdoc/docstring.rb +13 -0
  87. data/lib/inch/language/nodejs/provider/jsdoc/object.rb +16 -8
  88. data/lib/inch/language/nodejs/provider/jsdoc/object/base.rb +82 -45
  89. data/lib/inch/language/nodejs/provider/jsdoc/object/function_object.rb +18 -0
  90. data/lib/inch/language/nodejs/provider/jsdoc/object/member_object.rb +15 -0
  91. data/lib/inch/language/nodejs/provider/jsdoc/object/module_object.rb +22 -0
  92. data/lib/inch/language/nodejs/provider/jsdoc/parser.rb +9 -10
  93. data/lib/inch/language/nodejs/roles/base.rb +32 -0
  94. data/lib/inch/language/nodejs/roles/function.rb +113 -0
  95. data/lib/inch/language/nodejs/roles/member.rb +13 -0
  96. data/lib/inch/language/nodejs/roles/module.rb +64 -0
  97. data/lib/inch/language/nodejs/roles/object.rb +76 -0
  98. data/lib/inch/language/ruby/code_object/base.rb +6 -4
  99. data/lib/inch/language/ruby/evaluation/base.rb +2 -1
  100. data/lib/inch/language/ruby/evaluation/method_object.rb +2 -1
  101. data/lib/inch/language/ruby/import.rb +24 -24
  102. data/lib/inch/language/ruby/provider/yard.rb +10 -10
  103. data/lib/inch/language/ruby/provider/yard/nodoc_helper.rb +2 -2
  104. data/lib/inch/language/ruby/provider/yard/object.rb +9 -9
  105. data/lib/inch/language/ruby/provider/yard/object/base.rb +25 -28
  106. data/lib/inch/language/ruby/provider/yard/object/method_object.rb +4 -3
  107. data/lib/inch/language/ruby/provider/yard/object/method_parameter_object.rb +4 -3
  108. data/lib/inch/language/ruby/provider/yard/object/method_signature.rb +2 -2
  109. data/lib/inch/language/ruby/provider/yard/object/namespace_object.rb +2 -1
  110. data/lib/inch/language/ruby/provider/yard/parser.rb +2 -2
  111. data/lib/inch/language/ruby/roles/base.rb +1 -1
  112. data/lib/inch/language/ruby/roles/method.rb +2 -1
  113. data/lib/inch/language/ruby/roles/method_parameter.rb +1 -1
  114. data/lib/inch/language/ruby/roles/missing.rb +2 -2
  115. data/lib/inch/language/ruby/roles/object.rb +6 -6
  116. data/lib/inch/rake.rb +2 -2
  117. data/lib/inch/rake/suggest.rb +5 -5
  118. data/lib/inch/utils/code_location.rb +12 -0
  119. data/lib/inch/utils/read_write_methods.rb +2 -2
  120. data/lib/inch/utils/ui.rb +8 -8
  121. data/lib/inch/version.rb +1 -1
  122. data/test/fixtures/elixir/simple/all.json +321 -0
  123. data/test/integration/api/compare/codebases.rb +6 -6
  124. data/test/integration/cli/command/console_test.rb +13 -13
  125. data/test/integration/cli/command/diff_test.rb +12 -14
  126. data/test/integration/cli/command/inspect_test.rb +30 -30
  127. data/test/integration/cli/command/list_test.rb +34 -34
  128. data/test/integration/cli/command/show_test.rb +26 -26
  129. data/test/integration/cli/command/stats_test.rb +23 -23
  130. data/test/integration/cli/command/suggest_test.rb +58 -49
  131. data/test/integration/stats_options_test.rb +9 -9
  132. data/test/integration/visibility_options_test.rb +49 -45
  133. data/test/shared/base_list.rb +41 -41
  134. data/test/test_helper.rb +18 -10
  135. data/test/unit/api/filter_test.rb +9 -9
  136. data/test/unit/api/get_test.rb +6 -6
  137. data/test/unit/api/list_test.rb +3 -3
  138. data/test/unit/api/options/base_test.rb +6 -6
  139. data/test/unit/api/stats_test.rb +3 -3
  140. data/test/unit/api/suggest_test.rb +4 -4
  141. data/test/unit/cli/arguments_test.rb +25 -25
  142. data/test/unit/cli/command/base_test.rb +3 -3
  143. data/test/unit/cli/command/options/base_list_test.rb +14 -14
  144. data/test/unit/cli/command/options/base_object_test.rb +6 -6
  145. data/test/unit/cli/command/options/base_test.rb +3 -3
  146. data/test/unit/cli/command_parser_test.rb +29 -29
  147. data/test/unit/cli/trace_helper_test.rb +2 -2
  148. data/test/unit/cli/yardopts_helper_test.rb +35 -35
  149. data/test/unit/code_object/converter_test.rb +3 -3
  150. data/test/unit/code_object/provider_test.rb +2 -2
  151. data/test/unit/code_object/proxy_test.rb +11 -11
  152. data/test/unit/codebase/objects_test.rb +8 -8
  153. data/test/unit/codebase/proxy_test.rb +5 -5
  154. data/test/unit/config/codebase_test.rb +3 -3
  155. data/test/unit/config_test.rb +4 -4
  156. data/test/unit/evaluation/role_test.rb +8 -8
  157. data/test/unit/language/elixir/code_object/function_object_test.rb +35 -0
  158. data/test/unit/language/ruby/code_object/method_object_test.rb +128 -126
  159. data/test/unit/language/ruby/provider/yard/docstring_test.rb +27 -23
  160. data/test/unit/language/ruby/provider/yard/nodoc_helper_test.rb +21 -20
  161. data/test/unit/language/ruby/provider/yard/object/method_object_test.rb +20 -17
  162. data/test/unit/language/ruby/provider/yard_test.rb +4 -4
  163. data/test/unit/utils/buffered_ui_test.rb +20 -20
  164. data/test/unit/utils/ui_test.rb +20 -20
  165. data/test/unit/utils/weighted_list_test.rb +7 -7
  166. metadata +25 -2
@@ -1,2 +1,2 @@
1
- require "inch"
2
- require "inch/rake/suggest"
1
+ require 'inch'
2
+ require 'inch/rake/suggest'
@@ -1,8 +1,8 @@
1
1
  # encoding: utf-8
2
2
 
3
- require "rake"
4
- require "rake/tasklib"
5
- require "inch/cli"
3
+ require 'rake'
4
+ require 'rake/tasklib'
5
+ require 'inch/cli'
6
6
 
7
7
  module Inch
8
8
  # Holds all Rake tasks
@@ -17,12 +17,12 @@ module Inch
17
17
  # @param name [String] name of the Rake task
18
18
  # @param *args [Array] arguments to be passed to Suggest.run
19
19
  # @param &block [Proc] optional, evaluated inside the task definition
20
- def initialize(name = "inch", *args, &block)
20
+ def initialize(name = 'inch', *args, &block)
21
21
  @name = name
22
22
  @args = args
23
23
  block.call(self) if block
24
24
 
25
- desc "Suggest objects to add documention to"
25
+ desc 'Suggest objects to add documention to'
26
26
  task(@name) { suggest }
27
27
  end
28
28
 
@@ -0,0 +1,12 @@
1
+ module Inch
2
+ module Utils
3
+ # CodeLocation is a utility class to find declarations of objects
4
+ # in files
5
+ class CodeLocation < Struct.new(:base_dir, :relative_path,
6
+ :line_no)
7
+ def filename
8
+ File.join(base_dir, relative_path)
9
+ end
10
+ end
11
+ end
12
+ end
@@ -21,7 +21,7 @@ module Inch
21
21
  #
22
22
  # @return [void]
23
23
  def rw_method(name)
24
- class_eval """
24
+ class_eval ''"
25
25
  def #{name}(value = nil)
26
26
  if value.nil?
27
27
  @#{name}
@@ -29,7 +29,7 @@ module Inch
29
29
  @#{name} = value
30
30
  end
31
31
  end
32
- """
32
+ "''
33
33
  end
34
34
 
35
35
  # Implements multiple read(write) methods with the given +names+
@@ -10,18 +10,18 @@ module Inch
10
10
  end
11
11
 
12
12
  def debug(msg)
13
- return unless ENV["DEBUG"]
13
+ return unless ENV['DEBUG']
14
14
  msg.to_s.lines.each do |line|
15
- trace edged :dark, line.gsub(/\n$/, "").dark
15
+ trace edged :dark, line.gsub(/\n$/, '').dark
16
16
  end
17
17
  end
18
18
 
19
- def sub(msg = "")
19
+ def sub(msg = '')
20
20
  color = @current_header_color || :white
21
21
  trace __edged(color, msg)
22
22
  end
23
23
 
24
- def edged(color, msg, edge = "")
24
+ def edged(color, msg, edge = '')
25
25
  trace __edged(color, msg, edge)
26
26
  end
27
27
 
@@ -29,7 +29,7 @@ module Inch
29
29
  #
30
30
  # @param text [String]
31
31
  # @return [void]
32
- def trace(text = "")
32
+ def trace(text = '')
33
33
  @current_header_color = nil if text.to_s.empty?
34
34
  out.puts text
35
35
  end
@@ -38,7 +38,7 @@ module Inch
38
38
  #
39
39
  # @param text [String]
40
40
  # @return [void]
41
- def warn(text = "")
41
+ def warn(text = '')
42
42
  err.puts text
43
43
  end
44
44
 
@@ -55,7 +55,7 @@ module Inch
55
55
 
56
56
  private
57
57
 
58
- def __edged(color, msg, edge = "")
58
+ def __edged(color, msg, edge = '')
59
59
  edge.color(color) + msg
60
60
  end
61
61
 
@@ -63,7 +63,7 @@ module Inch
63
63
  bg_color ||= "intense_#{color}"
64
64
  bar = " #{text}".ljust(CLI::COLUMNS - 1)
65
65
  .on_color(bg_color).color(:color16)
66
- "#".color(color).on_color(color) + bar
66
+ '#'.color(color).on_color(color) + bar
67
67
  end
68
68
  end
69
69
  end
@@ -1,3 +1,3 @@
1
1
  module Inch
2
- VERSION = "0.5.0.rc5"
2
+ VERSION = '0.5.0.rc6'
3
3
  end
@@ -0,0 +1,321 @@
1
+ {
2
+ "objects": [
3
+ {
4
+ "id": "InchEx",
5
+ "module": "Elixir.InchEx",
6
+ "moduledoc": null,
7
+ "object_type": "ModuleObject",
8
+ "source": null,
9
+ "type": null,
10
+ "typespecs": []
11
+ },
12
+ {
13
+ "id": "InchEx.Config",
14
+ "module": "Elixir.InchEx.Config",
15
+ "moduledoc": null,
16
+ "object_type": "ModuleObject",
17
+ "source": null,
18
+ "type": null,
19
+ "typespecs": []
20
+ },
21
+ {
22
+ "id": "InchEx.Docs.Formatter",
23
+ "module": "Elixir.InchEx.Docs.Formatter",
24
+ "moduledoc": "Provide JSON-formatted documentation\n",
25
+ "object_type": "ModuleObject",
26
+ "source": null,
27
+ "type": null,
28
+ "typespecs": []
29
+ },
30
+ {
31
+ "id": "InchEx.Docs.Retriever",
32
+ "module": "Elixir.InchEx.Docs.Retriever",
33
+ "moduledoc": "Functions to extract documentation information from modules.\n",
34
+ "object_type": "ModuleObject",
35
+ "source": null,
36
+ "type": null,
37
+ "typespecs": []
38
+ },
39
+ {
40
+ "id": "InchEx.Docs.Retriever.Error",
41
+ "module": "Elixir.InchEx.Docs.Retriever.Error",
42
+ "moduledoc": null,
43
+ "object_type": "ModuleObject",
44
+ "source": null,
45
+ "type": "exception",
46
+ "typespecs": []
47
+ },
48
+ {
49
+ "id": "InchEx.FunctionObject",
50
+ "module": "Elixir.InchEx.FunctionObject",
51
+ "moduledoc": null,
52
+ "object_type": "ModuleObject",
53
+ "source": null,
54
+ "type": null,
55
+ "typespecs": []
56
+ },
57
+ {
58
+ "id": "InchEx.ModuleObject",
59
+ "module": "Elixir.InchEx.ModuleObject",
60
+ "moduledoc": null,
61
+ "object_type": "ModuleObject",
62
+ "source": null,
63
+ "type": null,
64
+ "typespecs": []
65
+ },
66
+ {
67
+ "id": "InchEx.Reporter.Local",
68
+ "module": "Elixir.InchEx.Reporter.Local",
69
+ "moduledoc": null,
70
+ "object_type": "ModuleObject",
71
+ "source": null,
72
+ "type": null,
73
+ "typespecs": []
74
+ },
75
+ {
76
+ "id": "InchEx.Reporter.Remote",
77
+ "module": "Elixir.InchEx.Reporter.Remote",
78
+ "moduledoc": null,
79
+ "object_type": "ModuleObject",
80
+ "source": null,
81
+ "type": null,
82
+ "typespecs": []
83
+ },
84
+ {
85
+ "id": "InchEx.TypeObject",
86
+ "module": "Elixir.InchEx.TypeObject",
87
+ "moduledoc": null,
88
+ "object_type": "ModuleObject",
89
+ "source": null,
90
+ "type": null,
91
+ "typespecs": []
92
+ },
93
+ {
94
+ "id": "Mix.Tasks.Inch",
95
+ "module": "Elixir.Mix.Tasks.Inch",
96
+ "moduledoc": null,
97
+ "object_type": "ModuleObject",
98
+ "source": null,
99
+ "type": null,
100
+ "typespecs": []
101
+ },
102
+ {
103
+ "arity": 3,
104
+ "doc": false,
105
+ "id": "generate_docs/3",
106
+ "module_id": "InchEx",
107
+ "name": "generate_docs",
108
+ "object_type": "FunctionObject",
109
+ "signature": "generate_docs(project, version, options)",
110
+ "source": null,
111
+ "specs": [],
112
+ "type": "def"
113
+ },
114
+ {
115
+ "arity": 2,
116
+ "doc": "Generate JSON documentation for the given modules\n",
117
+ "id": "run/2",
118
+ "module_id": "InchEx.Docs.Formatter",
119
+ "name": "run",
120
+ "object_type": "FunctionObject",
121
+ "signature": "run(modules, config)",
122
+ "source": null,
123
+ "specs": [],
124
+ "type": "def"
125
+ },
126
+ {
127
+ "arity": 2,
128
+ "doc": "Extract documentation from all modules in the specified directory\n",
129
+ "id": "docs_from_dir/2",
130
+ "module_id": "InchEx.Docs.Retriever",
131
+ "name": "docs_from_dir",
132
+ "object_type": "FunctionObject",
133
+ "signature": "docs_from_dir(dir, config)",
134
+ "source": null,
135
+ "specs": [],
136
+ "type": "def"
137
+ },
138
+ {
139
+ "arity": 2,
140
+ "doc": "Extract documentation from all modules in the specified list of files\n",
141
+ "id": "docs_from_files/2",
142
+ "module_id": "InchEx.Docs.Retriever",
143
+ "name": "docs_from_files",
144
+ "object_type": "FunctionObject",
145
+ "signature": "docs_from_files(files, config)",
146
+ "source": null,
147
+ "specs": [],
148
+ "type": "def"
149
+ },
150
+ {
151
+ "arity": 2,
152
+ "doc": "Extract documentation from all modules in the list `modules`\n",
153
+ "id": "docs_from_modules/2",
154
+ "module_id": "InchEx.Docs.Retriever",
155
+ "name": "docs_from_modules",
156
+ "object_type": "FunctionObject",
157
+ "signature": "docs_from_modules(modules, config)",
158
+ "source": null,
159
+ "specs": [],
160
+ "type": "def"
161
+ },
162
+ {
163
+ "arity": 1,
164
+ "doc": "Callback implementation of `Exception.exception/1`.",
165
+ "id": "exception/1",
166
+ "module_id": "InchEx.Docs.Retriever.Error",
167
+ "name": "exception",
168
+ "object_type": "FunctionObject",
169
+ "signature": "exception(args)",
170
+ "source": null,
171
+ "specs": [
172
+ [
173
+ "::",
174
+ {
175
+ "line": 19
176
+ },
177
+ [
178
+ [
179
+ "exception",
180
+ {
181
+ "line": 19
182
+ },
183
+ [
184
+ [
185
+ [
186
+ ".",
187
+ {
188
+ "line": 19
189
+ },
190
+ [
191
+ "Elixir.Keyword",
192
+ "t"
193
+ ]
194
+ ],
195
+ {
196
+ "line": 19
197
+ },
198
+ []
199
+ ]
200
+ ]
201
+ ],
202
+ [
203
+ [
204
+ ".",
205
+ {
206
+ "line": 19
207
+ },
208
+ [
209
+ "Elixir.Exception",
210
+ "t"
211
+ ]
212
+ ],
213
+ {
214
+ "line": 19
215
+ },
216
+ []
217
+ ]
218
+ ]
219
+ ]
220
+ ],
221
+ "type": "def"
222
+ },
223
+ {
224
+ "arity": 1,
225
+ "doc": "Callback implementation of `Exception.message/1`.",
226
+ "id": "message/1",
227
+ "module_id": "InchEx.Docs.Retriever.Error",
228
+ "name": "message",
229
+ "object_type": "FunctionObject",
230
+ "signature": "message(exception)",
231
+ "source": null,
232
+ "specs": [
233
+ [
234
+ "::",
235
+ {
236
+ "line": 19
237
+ },
238
+ [
239
+ [
240
+ "message",
241
+ {
242
+ "line": 19
243
+ },
244
+ [
245
+ [
246
+ [
247
+ ".",
248
+ {
249
+ "line": 19
250
+ },
251
+ [
252
+ "Elixir.Exception",
253
+ "t"
254
+ ]
255
+ ],
256
+ {
257
+ "line": 19
258
+ },
259
+ []
260
+ ]
261
+ ]
262
+ ],
263
+ [
264
+ [
265
+ ".",
266
+ {
267
+ "line": 19
268
+ },
269
+ [
270
+ "Elixir.String",
271
+ "t"
272
+ ]
273
+ ],
274
+ {
275
+ "line": 19
276
+ },
277
+ []
278
+ ]
279
+ ]
280
+ ]
281
+ ],
282
+ "type": "def"
283
+ },
284
+ {
285
+ "arity": 1,
286
+ "doc": " Runs inch locally, if installed. If you want to force usage of a particular\n inch installation, set INCH_PATH environment variable to it.\n\n export INCH_PATH=/home/rrrene/projects/inch\n",
287
+ "id": "run/1",
288
+ "module_id": "InchEx.Reporter.Local",
289
+ "name": "run",
290
+ "object_type": "FunctionObject",
291
+ "signature": "run(filename)",
292
+ "source": null,
293
+ "specs": [],
294
+ "type": "def"
295
+ },
296
+ {
297
+ "arity": 2,
298
+ "doc": " Runs inch remotely, if already invented.\n",
299
+ "id": "run/2",
300
+ "module_id": "InchEx.Reporter.Remote",
301
+ "name": "run",
302
+ "object_type": "FunctionObject",
303
+ "signature": "run(filename, config \\\\ Mix.Project.config())",
304
+ "source": null,
305
+ "specs": [],
306
+ "type": "def"
307
+ },
308
+ {
309
+ "arity": 4,
310
+ "doc": false,
311
+ "id": "run/4",
312
+ "module_id": "Mix.Tasks.Inch",
313
+ "name": "run",
314
+ "object_type": "FunctionObject",
315
+ "signature": "run(args, config \\\\ Mix.Project.config(), generator \\\\ :erlang.make_fun(InchEx, :generate_docs, 3), reporter \\\\ InchEx.Reporter.Local)",
316
+ "source": null,
317
+ "specs": [],
318
+ "type": "def"
319
+ }
320
+ ]
321
+ }
@@ -1,9 +1,9 @@
1
- require File.expand_path(File.dirname(__FILE__) + "/../../../test_helper")
1
+ require File.expand_path(File.dirname(__FILE__) + '/../../../test_helper')
2
2
 
3
3
  describe ::Inch::API::Compare::Codebases do
4
4
  let(:described_class) { ::Inch::API::Compare::Codebases }
5
5
 
6
- it "should run" do
6
+ it 'should run' do
7
7
  codebase1 = Inch::Codebase.parse fixture_path(:ruby, :diff1)
8
8
  codebase2 = Inch::Codebase.parse fixture_path(:ruby, :diff2)
9
9
 
@@ -11,23 +11,23 @@ describe ::Inch::API::Compare::Codebases do
11
11
  refute compare.comparisons.empty?
12
12
 
13
13
  # Foo#a is added in diff2
14
- comparison = compare.find("Foo#a")
14
+ comparison = compare.find('Foo#a')
15
15
  assert comparison.added?
16
16
 
17
17
  # Foo#b is improved in diff2
18
- comparison = compare.find("Foo#b")
18
+ comparison = compare.find('Foo#b')
19
19
  assert comparison.present?
20
20
  assert comparison.changed?
21
21
  assert comparison.improved?
22
22
 
23
23
  # Foo#c stayed the same
24
- comparison = compare.find("Foo#c")
24
+ comparison = compare.find('Foo#c')
25
25
  assert comparison.present?
26
26
  assert comparison.unchanged?
27
27
  refute comparison.changed?
28
28
 
29
29
  # Foo#d is removed in diff2
30
- comparison = compare.find("Foo#d")
30
+ comparison = compare.find('Foo#d')
31
31
  refute comparison.present?
32
32
  assert comparison.removed?
33
33
  end