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,5 +1,5 @@
1
- require "inch/cli/command/options/show"
2
- require "inch/cli/command/output/show"
1
+ require 'inch/cli/command/options/show'
2
+ require 'inch/cli/command/output/show'
3
3
 
4
4
  module Inch
5
5
  module CLI
@@ -8,11 +8,11 @@ module Inch
8
8
  register_command_as :show
9
9
 
10
10
  def description
11
- "Shows an object with its results"
11
+ 'Shows an object with its results'
12
12
  end
13
13
 
14
14
  def usage
15
- "Usage: inch show [paths] OBJECT_NAME [[OBJECT_NAME2] ...] [options]"
15
+ 'Usage: inch show [paths] OBJECT_NAME [[OBJECT_NAME2] ...] [options]'
16
16
  end
17
17
 
18
18
  def run(*args)
@@ -1,5 +1,5 @@
1
- require "inch/cli/command/options/stats"
2
- require "inch/cli/command/output/stats"
1
+ require 'inch/cli/command/options/stats'
2
+ require 'inch/cli/command/output/stats'
3
3
 
4
4
  module Inch
5
5
  module CLI
@@ -8,11 +8,11 @@ module Inch
8
8
  register_command_as :stats
9
9
 
10
10
  def description
11
- "Show statistics"
11
+ 'Show statistics'
12
12
  end
13
13
 
14
14
  def usage
15
- "Usage: inch stats [paths] [options]"
15
+ 'Usage: inch stats [paths] [options]'
16
16
  end
17
17
 
18
18
  def run(*args)
@@ -1,5 +1,5 @@
1
- require "inch/cli/command/options/suggest"
2
- require "inch/cli/command/output/suggest"
1
+ require 'inch/cli/command/options/suggest'
2
+ require 'inch/cli/command/output/suggest'
3
3
 
4
4
  module Inch
5
5
  module CLI
@@ -8,11 +8,11 @@ module Inch
8
8
  register_command_as :suggest, true
9
9
 
10
10
  def description
11
- "Suggests some objects to be documented (better)"
11
+ 'Suggests some objects to be documented (better)'
12
12
  end
13
13
 
14
14
  def usage
15
- "Usage: inch suggest [paths] [options]"
15
+ 'Usage: inch suggest [paths] [options]'
16
16
  end
17
17
 
18
18
  # Runs the commandline utility, parsing arguments and displaying a
@@ -56,7 +56,7 @@ module Inch
56
56
  # argument.
57
57
  # @return [Command::Base]
58
58
  def run(*args)
59
- if ["--help", "-h"].include?(args.join)
59
+ if ['--help', '-h'].include?(args.join)
60
60
  list_commands
61
61
  else
62
62
  run_command(*args)
@@ -70,12 +70,12 @@ module Inch
70
70
  end
71
71
 
72
72
  def list_commands
73
- ui.trace "Usage: inch <command> [options]"
73
+ ui.trace 'Usage: inch <command> [options]'
74
74
  ui.trace
75
- ui.trace "Commands:"
75
+ ui.trace 'Commands:'
76
76
  commands.keys.sort_by { |k| k.to_s }.each do |command_name|
77
77
  command = commands[command_name].new
78
- ui.trace format(" %-8s %s", command_name, command.description)
78
+ ui.trace format(' %-8s %s', command_name, command.description)
79
79
  end
80
80
  end
81
81
 
@@ -23,7 +23,7 @@ module Inch
23
23
  sparkline = Sparkr::Sparkline.new(list)
24
24
  sparkline.format do |tick, _count, index|
25
25
  t = tick.color(grade_lists[index].color)
26
- index == 0 ? t + " " : t
26
+ index == 0 ? t + ' ' : t
27
27
  end
28
28
  end
29
29
  end
@@ -1,4 +1,4 @@
1
- require "inch/utils/ui"
1
+ require 'inch/utils/ui'
2
2
 
3
3
  module Inch
4
4
  module CLI
@@ -21,7 +21,7 @@ module Inch
21
21
  wrapper = YardoptsWrapper.new
22
22
 
23
23
  dupped_args = args.dup
24
- dupped_args.delete("--help")
24
+ dupped_args.delete('--help')
25
25
  dupped_args.delete_if do |arg|
26
26
  arg =~ /^\-/ && !VALID_YARD_SWITCHES.include?(arg)
27
27
  end
@@ -3,6 +3,6 @@ module Inch
3
3
  end
4
4
  end
5
5
 
6
- require "inch/code_object/converter"
7
- require "inch/code_object/provider"
8
- require "inch/code_object/proxy"
6
+ require 'inch/code_object/converter'
7
+ require 'inch/code_object/provider'
8
+ require 'inch/code_object/proxy'
@@ -12,11 +12,11 @@ module Inch
12
12
  # converted into CodeObject::Proxy objects that form the codebase:
13
13
  #
14
14
  # ::YARD::CodeObject
15
- #
15
+ # |
16
16
  # ::Inch::CodeObject::Provider::YARD::Object::Base
17
- #
17
+ # |
18
18
  # (Hash)
19
- #
19
+ # |
20
20
  # ::Inch::CodeObject::Proxy
21
21
  #
22
22
  #
@@ -37,7 +37,7 @@ module Inch
37
37
 
38
38
  # @return [Symbol] the programming language of the code object
39
39
  def language
40
- raise NotImplementedError
40
+ fail NotImplementedError
41
41
  end
42
42
 
43
43
  # Used to persist the code object
@@ -54,17 +54,16 @@ module Inch
54
54
  "#<#{self.class}: #{fullname}>"
55
55
  end
56
56
 
57
- private
58
-
59
57
  # Returns a Proxy class for the given +code_object+
60
58
  #
61
59
  # @param language [String,Symbol]
62
60
  # @param code_object [YARD::CodeObject]
63
61
  # @return [Class]
64
62
  def self.class_for(language, code_object)
65
- class_name = code_object.class.to_s.split("::").last
63
+ class_name = code_object.class.to_s.split('::').last
66
64
  Config.namespace(language, :CodeObject).const_get(class_name)
67
65
  end
66
+ private_class_method :class_for
68
67
  end
69
68
  end
70
69
  end
@@ -14,8 +14,8 @@ module Inch
14
14
  end
15
15
  end
16
16
 
17
- require "inch/codebase/proxy"
18
- require "inch/codebase/object"
19
- require "inch/codebase/objects"
20
- require "inch/codebase/objects_filter"
21
- require "inch/codebase/serializer"
17
+ require 'inch/codebase/proxy'
18
+ require 'inch/codebase/object'
19
+ require 'inch/codebase/objects'
20
+ require 'inch/codebase/objects_filter'
21
+ require 'inch/codebase/serializer'
@@ -29,7 +29,8 @@ module Inch
29
29
  # @param object_lookup [Codebase::Objects]
30
30
  def initialize(language, code_object, object_lookup)
31
31
  @language = language
32
- @code_object = CodeObject::Proxy.for(language, code_object, object_lookup)
32
+ @code_object = CodeObject::Proxy.for(language, code_object,
33
+ object_lookup)
33
34
  end
34
35
 
35
36
  def evaluation
@@ -1,7 +1,7 @@
1
1
  module Inch
2
2
  module Codebase
3
3
  class Serializer
4
- INCH_DB_DIR = File.join(".inch", "db")
4
+ INCH_DB_DIR = File.join('.inch', 'db')
5
5
 
6
6
  def self.filename(revision)
7
7
  File.join(INCH_DB_DIR, revision)
@@ -10,7 +10,7 @@ module Inch
10
10
  def self.save(codebase, filename)
11
11
  content = Marshal.dump(codebase)
12
12
  FileUtils.mkdir_p(File.dirname(filename))
13
- File.open(filename, "wb") { |file| file.write(content) }
13
+ File.open(filename, 'wb') { |file| file.write(content) }
14
14
  end
15
15
 
16
16
  def self.load(filename)
@@ -5,12 +5,12 @@ module Inch
5
5
  class Config
6
6
  class << self
7
7
  def instance(language = :ruby)
8
- if block = @blocks[language.to_s]
8
+ if (block = @blocks[language.to_s])
9
9
  config = Config::Base.new(language)
10
10
  config = config.update(&block)
11
11
  config
12
12
  else
13
- raise "Language not registered: #{language}"
13
+ fail "Language not registered: #{language}"
14
14
  end
15
15
  end
16
16
 
@@ -41,7 +41,7 @@ module Inch
41
41
  end
42
42
 
43
43
  def namespace(language, submodule = nil)
44
- name = language.to_s.split('_').collect { |w| w.capitalize }.join
44
+ name = language.to_s.split('_').map { |w| w.capitalize }.join
45
45
  const = ::Inch::Language.const_get(name)
46
46
  const = const.const_get(submodule) unless submodule.nil?
47
47
  const
@@ -50,6 +50,6 @@ module Inch
50
50
  end
51
51
  end
52
52
 
53
- require "inch/config/base"
54
- require "inch/config/evaluation"
55
- require "inch/config/codebase"
53
+ require 'inch/config/base'
54
+ require 'inch/config/evaluation'
55
+ require 'inch/config/codebase'
@@ -7,7 +7,7 @@ module Inch
7
7
  attr_accessor :excluded_files
8
8
  attr_accessor :read_dump_file
9
9
 
10
- YAML_FILE = ".inch.yml"
10
+ YAML_FILE = '.inch.yml'
11
11
 
12
12
  def initialize(language = :ruby, included = nil, excluded = nil)
13
13
  @language = language
@@ -39,8 +39,8 @@ module Inch
39
39
  def update_via_yaml(dir)
40
40
  if (yaml = self.class.yaml(dir))
41
41
  Dir.chdir(dir) do
42
- update_language yaml["language"]
43
- update_files yaml["files"]
42
+ update_language yaml['language']
43
+ update_files yaml['files']
44
44
  end
45
45
  end
46
46
  end
@@ -77,8 +77,8 @@ module Inch
77
77
 
78
78
  def update_files(files)
79
79
  return if files.nil?
80
- @included_files = expand_files(files["included"]) if files["included"]
81
- @excluded_files = expand_files(files["excluded"]) if files["excluded"]
80
+ @included_files = expand_files(files['included']) if files['included']
81
+ @excluded_files = expand_files(files['excluded']) if files['excluded']
82
82
  end
83
83
 
84
84
  def update_language(language)
@@ -1 +1 @@
1
- require "inch/core_ext/string"
1
+ require 'inch/core_ext/string'
@@ -1,3 +1,3 @@
1
- require "term/ansicolor"
1
+ require 'term/ansicolor'
2
2
 
3
3
  String.send(:include, Term::ANSIColor)
@@ -9,19 +9,19 @@ module Inch
9
9
  private
10
10
 
11
11
  def self.class_for(language, code_object)
12
- class_name = code_object.class.to_s.split("::").last
12
+ class_name = code_object.class.to_s.split('::').last
13
13
  language_namespace = Evaluation::Ruby
14
14
  language_namespace.const_get(class_name)
15
15
  end
16
16
  end
17
17
  end
18
18
 
19
- require "inch/utils/read_write_methods"
19
+ require 'inch/utils/read_write_methods'
20
20
 
21
- require "inch/evaluation/file"
22
- require "inch/evaluation/grade"
23
- require "inch/evaluation/grade_list"
24
- require "inch/evaluation/priority_range"
21
+ require 'inch/evaluation/file'
22
+ require 'inch/evaluation/grade'
23
+ require 'inch/evaluation/grade_list'
24
+ require 'inch/evaluation/priority_range'
25
25
 
26
- require "inch/evaluation/proxy"
27
- require "inch/evaluation/role"
26
+ require 'inch/evaluation/proxy'
27
+ require 'inch/evaluation/role'
@@ -140,12 +140,11 @@ module Inch
140
140
  @roles.reduce(0) { |sum, r| sum + r.priority.to_i }
141
141
  end
142
142
 
143
- private
144
-
145
143
  def self.class_for(language, code_object)
146
- class_name = code_object.class.to_s.split("::").last
144
+ class_name = code_object.class.to_s.split('::').last
147
145
  Config.namespace(language, :Evaluation).const_get(class_name)
148
146
  end
147
+ private_class_method :class_for
149
148
  end
150
149
  end
151
150
  end
@@ -92,7 +92,7 @@ module Inch
92
92
  #
93
93
  # @return [String]
94
94
  def object_type
95
- raise NotImplementedError
95
+ fail NotImplementedError
96
96
  end
97
97
  end
98
98
  end
@@ -1,4 +1,4 @@
1
- require "forwardable"
1
+ require 'forwardable'
2
2
 
3
3
  module Inch
4
4
  module Language
@@ -14,7 +14,8 @@ module Inch
14
14
  :elixir
15
15
  end
16
16
 
17
- # @return [Boolean] if the current object is an alias for something else
17
+ # @return [Boolean] if the current object is an alias for something
18
+ # else
18
19
  def alias?
19
20
  !aliased_object.nil?
20
21
  end
@@ -133,7 +134,8 @@ module Inch
133
134
  self[:original_docstring]
134
135
  end
135
136
 
136
- # @return [Boolean] +true+ if the object was tagged not to be documented
137
+ # @return [Boolean] +true+ if the object was tagged not to be
138
+ # documented
137
139
  def nodoc?
138
140
  self[:nodoc?]
139
141
  end
@@ -174,7 +176,7 @@ module Inch
174
176
  end
175
177
 
176
178
  def type
177
- self.class.to_s.gsub(/Object$/, "")
179
+ self.class.to_s.gsub(/Object$/, '')
178
180
  end
179
181
 
180
182
  # @return [Boolean] +true+ if the object has no documentation at all
@@ -18,7 +18,8 @@ module Inch
18
18
  Role::Object::WithCodeExample => score_for(:code_example_single),
19
19
  Role::Object::WithMultipleCodeExamples =>
20
20
  score_for(:code_example_multi),
21
- Role::Object::WithoutCodeExample => score_for(:code_example_single)
21
+ Role::Object::WithoutCodeExample =>
22
+ score_for(:code_example_single)
22
23
  }
23
24
  end
24
25
  end
@@ -21,7 +21,7 @@ module Inch
21
21
  nil
22
22
  end,
23
23
  Role::Function::WithBangName => nil,
24
- Role::Function::WithQuestioningName => nil,
24
+ Role::Function::WithQuestioningName => nil
25
25
  }
26
26
  end
27
27
  end
@@ -5,20 +5,20 @@ module Inch
5
5
  end
6
6
  end
7
7
 
8
- require "inch/language/elixir/provider/reader"
8
+ require 'inch/language/elixir/provider/reader'
9
9
 
10
- require "inch/language/elixir/code_object/base"
11
- require "inch/language/elixir/code_object/module_object"
12
- require "inch/language/elixir/code_object/function_object"
13
- require "inch/language/elixir/code_object/type_object"
10
+ require 'inch/language/elixir/code_object/base'
11
+ require 'inch/language/elixir/code_object/module_object'
12
+ require 'inch/language/elixir/code_object/function_object'
13
+ require 'inch/language/elixir/code_object/type_object'
14
14
 
15
- require "inch/language/elixir/evaluation/base"
16
- require "inch/language/elixir/evaluation/module_object"
17
- require "inch/language/elixir/evaluation/function_object"
18
- require "inch/language/elixir/evaluation/type_object"
15
+ require 'inch/language/elixir/evaluation/base'
16
+ require 'inch/language/elixir/evaluation/module_object'
17
+ require 'inch/language/elixir/evaluation/function_object'
18
+ require 'inch/language/elixir/evaluation/type_object'
19
19
 
20
- require "inch/language/elixir/roles/base"
21
- require "inch/language/elixir/roles/object"
22
- require "inch/language/elixir/roles/module"
23
- require "inch/language/elixir/roles/function"
24
- require "inch/language/elixir/roles/type"
20
+ require 'inch/language/elixir/roles/base'
21
+ require 'inch/language/elixir/roles/object'
22
+ require 'inch/language/elixir/roles/module'
23
+ require 'inch/language/elixir/roles/function'
24
+ require 'inch/language/elixir/roles/type'
@@ -16,4 +16,4 @@ module Inch
16
16
  end
17
17
  end
18
18
 
19
- require "inch/language/elixir/provider/reader/parser"
19
+ require 'inch/language/elixir/provider/reader/parser'
@@ -0,0 +1,13 @@
1
+
2
+ module Inch
3
+ module Language
4
+ module Elixir
5
+ module Provider
6
+ module Reader
7
+ class Docstring < Ruby::Provider::YARD::Docstring
8
+ end
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end