inch 0.5.0.rc3 → 0.5.0.rc4
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 +4 -4
- data/.rubocop.yml +15 -0
- data/.rubocop_todo.yml +94 -0
- data/CHANGELOG.md +26 -2
- data/Gemfile +5 -2
- data/README.md +3 -3
- data/Rakefile +6 -2
- data/bin/inch +3 -3
- data/config/{example.yml → .inch.yml.sample} +1 -0
- data/config/base.rb +53 -0
- data/config/elixir.rb +43 -0
- data/config/nodejs.rb +10 -0
- data/config/{defaults.rb → ruby.rb} +5 -54
- data/inch.gemspec +7 -7
- data/lib/inch.rb +14 -9
- data/lib/inch/api.rb +10 -10
- data/lib/inch/api/compare.rb +2 -2
- data/lib/inch/api/compare/code_objects.rb +2 -3
- data/lib/inch/api/compare/codebases.rb +1 -1
- data/lib/inch/api/diff.rb +13 -16
- data/lib/inch/api/filter.rb +1 -1
- data/lib/inch/api/get.rb +2 -2
- data/lib/inch/api/options/base.rb +4 -4
- data/lib/inch/api/options/filter.rb +0 -4
- data/lib/inch/api/options/suggest.rb +2 -6
- data/lib/inch/api/stats.rb +0 -1
- data/lib/inch/api/suggest.rb +9 -10
- data/lib/inch/cli.rb +6 -6
- data/lib/inch/cli/arguments.rb +2 -2
- data/lib/inch/cli/command.rb +15 -15
- data/lib/inch/cli/command/base.rb +30 -9
- data/lib/inch/cli/command/base_list.rb +2 -2
- data/lib/inch/cli/command/console.rb +5 -5
- data/lib/inch/cli/command/diff.rb +9 -9
- data/lib/inch/cli/command/inspect.rb +5 -4
- data/lib/inch/cli/command/list.rb +4 -4
- data/lib/inch/cli/command/options/base.rb +17 -16
- data/lib/inch/cli/command/options/base_list.rb +9 -5
- data/lib/inch/cli/command/options/console.rb +4 -3
- data/lib/inch/cli/command/options/diff.rb +8 -6
- data/lib/inch/cli/command/options/inspect.rb +2 -2
- data/lib/inch/cli/command/options/list.rb +3 -2
- data/lib/inch/cli/command/options/show.rb +2 -2
- data/lib/inch/cli/command/options/stats.rb +2 -1
- data/lib/inch/cli/command/options/suggest.rb +6 -3
- data/lib/inch/cli/command/output/base.rb +4 -6
- data/lib/inch/cli/command/output/console.rb +6 -7
- data/lib/inch/cli/command/output/diff.rb +6 -6
- data/lib/inch/cli/command/output/inspect.rb +6 -8
- data/lib/inch/cli/command/output/list.rb +0 -1
- data/lib/inch/cli/command/output/show.rb +4 -5
- data/lib/inch/cli/command/output/stats.rb +21 -21
- data/lib/inch/cli/command/output/suggest.rb +31 -28
- data/lib/inch/cli/command/show.rb +4 -4
- data/lib/inch/cli/command/stats.rb +4 -4
- data/lib/inch/cli/command/suggest.rb +6 -6
- data/lib/inch/cli/command_parser.rb +6 -5
- data/lib/inch/cli/sparkline_helper.rb +6 -6
- data/lib/inch/cli/trace_helper.rb +1 -1
- data/lib/inch/cli/yardopts_helper.rb +4 -3
- data/lib/inch/code_object.rb +3 -3
- data/lib/inch/code_object/converter.rb +6 -8
- data/lib/inch/code_object/provider.rb +11 -11
- data/lib/inch/code_object/proxy.rb +61 -30
- data/lib/inch/codebase.rb +7 -8
- data/lib/inch/codebase/object.rb +60 -0
- data/lib/inch/codebase/objects.rb +8 -10
- data/lib/inch/codebase/objects_filter.rb +7 -5
- data/lib/inch/codebase/proxy.rb +4 -4
- data/lib/inch/codebase/serializer.rb +3 -3
- data/lib/inch/config.rb +42 -11
- data/lib/inch/config/base.rb +8 -29
- data/lib/inch/config/codebase.rb +32 -7
- data/lib/inch/config/evaluation.rb +61 -0
- data/lib/inch/core_ext.rb +1 -1
- data/lib/inch/core_ext/string.rb +1 -1
- data/lib/inch/evaluation.rb +13 -21
- data/lib/inch/evaluation/file.rb +4 -2
- data/lib/inch/evaluation/grade_list.rb +4 -4
- data/lib/inch/evaluation/priority_range.rb +3 -0
- data/lib/inch/evaluation/proxy.rb +139 -14
- data/lib/inch/evaluation/role.rb +99 -0
- data/lib/inch/language.rb +3 -0
- data/lib/inch/language/elixir/code_object/base.rb +197 -0
- data/lib/inch/language/elixir/code_object/function_object.rb +74 -0
- data/lib/inch/language/elixir/code_object/module_object.rb +23 -0
- data/lib/inch/language/elixir/code_object/type_object.rb +11 -0
- data/lib/inch/language/elixir/evaluation/base.rb +28 -0
- data/lib/inch/language/elixir/evaluation/function_object.rb +31 -0
- data/lib/inch/language/elixir/evaluation/module_object.rb +27 -0
- data/lib/inch/language/elixir/evaluation/type_object.rb +11 -0
- data/lib/inch/language/elixir/import.rb +24 -0
- data/lib/inch/language/elixir/provider/reader.rb +19 -0
- data/lib/inch/language/elixir/provider/reader/object.rb +63 -0
- data/lib/inch/language/elixir/provider/reader/object/base.rb +191 -0
- data/lib/inch/language/elixir/provider/reader/object/function_object.rb +26 -0
- data/lib/inch/language/elixir/provider/reader/object/module_object.rb +22 -0
- data/lib/inch/language/elixir/provider/reader/object/type_object.rb +15 -0
- data/lib/inch/language/elixir/provider/reader/parser.rb +55 -0
- data/lib/inch/language/elixir/roles/base.rb +32 -0
- data/lib/inch/language/elixir/roles/function.rb +112 -0
- data/lib/inch/language/elixir/roles/module.rb +64 -0
- data/lib/inch/language/elixir/roles/object.rb +76 -0
- data/lib/inch/language/elixir/roles/type.rb +13 -0
- data/lib/inch/language/nodejs/import.rb +8 -0
- data/lib/inch/language/nodejs/provider/jsdoc.rb +19 -0
- data/lib/inch/language/nodejs/provider/jsdoc/object.rb +55 -0
- data/lib/inch/language/nodejs/provider/jsdoc/object/base.rb +191 -0
- data/lib/inch/language/nodejs/provider/jsdoc/parser.rb +59 -0
- data/lib/inch/language/ruby/code_object/base.rb +197 -0
- data/lib/inch/language/ruby/code_object/class_object.rb +10 -0
- data/lib/inch/language/ruby/code_object/class_variable_object.rb +10 -0
- data/lib/inch/language/ruby/code_object/constant_object.rb +10 -0
- data/lib/inch/language/ruby/code_object/method_object.rb +85 -0
- data/lib/inch/language/ruby/code_object/method_parameter_object.rb +64 -0
- data/lib/inch/language/ruby/code_object/module_object.rb +10 -0
- data/lib/inch/language/ruby/code_object/namespace_object.rb +35 -0
- data/lib/inch/language/ruby/evaluation/base.rb +45 -0
- data/lib/inch/language/ruby/evaluation/class_object.rb +10 -0
- data/lib/inch/language/ruby/evaluation/class_variable_object.rb +21 -0
- data/lib/inch/language/ruby/evaluation/constant_object.rb +21 -0
- data/lib/inch/language/ruby/evaluation/method_object.rb +74 -0
- data/lib/inch/language/ruby/evaluation/module_object.rb +10 -0
- data/lib/inch/language/ruby/evaluation/namespace_object.rb +30 -0
- data/lib/inch/language/ruby/import.rb +34 -0
- data/lib/inch/language/ruby/provider/yard.rb +58 -0
- data/lib/inch/language/ruby/provider/yard/docstring.rb +162 -0
- data/lib/inch/language/ruby/provider/yard/nodoc_helper.rb +97 -0
- data/lib/inch/language/ruby/provider/yard/object.rb +63 -0
- data/lib/inch/language/ruby/provider/yard/object/base.rb +325 -0
- data/lib/inch/language/ruby/provider/yard/object/class_object.rb +14 -0
- data/lib/inch/language/ruby/provider/yard/object/class_variable_object.rb +14 -0
- data/lib/inch/language/ruby/provider/yard/object/constant_object.rb +14 -0
- data/lib/inch/language/ruby/provider/yard/object/method_object.rb +170 -0
- data/lib/inch/language/ruby/provider/yard/object/method_parameter_object.rb +94 -0
- data/lib/inch/language/ruby/provider/yard/object/method_signature.rb +120 -0
- data/lib/inch/language/ruby/provider/yard/object/module_object.rb +14 -0
- data/lib/inch/language/ruby/provider/yard/object/namespace_object.rb +46 -0
- data/lib/inch/language/ruby/provider/yard/object/root_object.rb +14 -0
- data/lib/inch/language/ruby/provider/yard/parser.rb +71 -0
- data/lib/inch/language/ruby/roles/base.rb +17 -0
- data/lib/inch/language/ruby/roles/class_variable.rb +53 -0
- data/lib/inch/language/ruby/roles/constant.rb +53 -0
- data/lib/inch/language/ruby/roles/method.rb +112 -0
- data/lib/inch/language/ruby/roles/method_parameter.rb +84 -0
- data/lib/inch/language/ruby/roles/missing.rb +24 -0
- data/lib/inch/language/ruby/roles/namespace.rb +89 -0
- data/lib/inch/language/ruby/roles/object.rb +120 -0
- data/lib/inch/rake.rb +2 -2
- data/lib/inch/rake/suggest.rb +7 -2
- data/lib/inch/utils/buffered_ui.rb +16 -0
- data/lib/inch/utils/shell_helper.rb +1 -1
- data/lib/inch/utils/ui.rb +5 -5
- data/lib/inch/utils/weighted_list.rb +2 -3
- data/lib/inch/version.rb +1 -1
- data/test/fixtures/{code_examples → ruby/code_examples}/lib/foo.rb +0 -0
- data/test/fixtures/{diff1 → ruby/diff1}/lib/diff1.rb +0 -0
- data/test/fixtures/{diff2 → ruby/diff2}/lib/diff2.rb +0 -0
- data/test/fixtures/{inch-yml → ruby/inch-yml}/.inch.yml +0 -0
- data/test/fixtures/{inch-yml → ruby/inch-yml}/foo/bar.rb +0 -0
- data/test/fixtures/{inch-yml → ruby/inch-yml}/foo/vendor/base.rb +0 -0
- data/test/fixtures/{parameters → ruby/parameters}/lib/foo.rb +0 -0
- data/test/fixtures/{readme → ruby/readme}/lib/foo.rb +0 -0
- data/test/fixtures/{really_good → ruby/really_good}/lib/foo.rb +0 -0
- data/test/fixtures/{really_good_pedantic → ruby/really_good_pedantic}/lib/foo.rb +0 -0
- data/test/fixtures/{simple → ruby/simple}/README +0 -0
- data/test/fixtures/{simple → ruby/simple}/lib/broken.rb +11 -19
- data/test/fixtures/ruby/simple/lib/broken_ruby_2_0_features.rb +7 -0
- data/test/fixtures/ruby/simple/lib/directives.rb +8 -0
- data/test/fixtures/{simple → ruby/simple}/lib/foo.rb +22 -1
- data/test/fixtures/{simple → ruby/simple}/lib/nodoc.rb +0 -0
- data/test/fixtures/{simple → ruby/simple}/lib/role_methods.rb +0 -0
- data/test/fixtures/{simple → ruby/simple}/lib/role_namespaces.rb +0 -0
- data/test/fixtures/{visibility → ruby/visibility}/lib/foo.rb +0 -0
- data/test/fixtures/{yardopts → ruby/yardopts}/.yardopts +0 -0
- data/test/fixtures/{yardopts → ruby/yardopts}/foo/bar.rb +0 -0
- data/test/integration/api/compare/codebases.rb +3 -3
- data/test/integration/cli/command/console_test.rb +6 -6
- data/test/integration/cli/command/diff_test.rb +62 -0
- data/test/integration/cli/command/inspect_test.rb +5 -6
- data/test/integration/cli/command/list_test.rb +4 -5
- data/test/integration/cli/command/show_test.rb +5 -5
- data/test/integration/cli/command/stats_test.rb +3 -3
- data/test/integration/cli/command/suggest_test.rb +13 -13
- data/test/integration/stats_options_test.rb +4 -4
- data/test/integration/visibility_options_test.rb +14 -14
- data/test/shared/base_list.rb +4 -3
- data/test/test_helper.rb +13 -13
- data/test/unit/api/filter_test.rb +7 -7
- data/test/unit/api/get_test.rb +1 -1
- data/test/unit/api/list_test.rb +1 -1
- data/test/unit/api/options/base_test.rb +3 -3
- data/test/unit/api/stats_test.rb +1 -1
- data/test/unit/api/suggest_test.rb +3 -3
- data/test/unit/cli/arguments_test.rb +2 -2
- data/test/unit/cli/command/base_test.rb +1 -1
- data/test/unit/cli/command/options/base_list_test.rb +2 -2
- data/test/unit/cli/command/options/base_object_test.rb +1 -1
- data/test/unit/cli/command/options/base_test.rb +1 -1
- data/test/unit/cli/command_parser_test.rb +3 -3
- data/test/unit/cli/trace_helper_test.rb +1 -1
- data/test/unit/cli/yardopts_helper_test.rb +6 -5
- data/test/unit/code_object/converter_test.rb +1 -1
- data/test/unit/code_object/provider_test.rb +2 -2
- data/test/unit/code_object/proxy_test.rb +2 -2
- data/test/unit/codebase/objects_test.rb +2 -2
- data/test/unit/codebase/proxy_test.rb +7 -5
- data/test/unit/config/codebase_test.rb +4 -4
- data/test/unit/config_test.rb +28 -0
- data/test/unit/evaluation/{role/base_test.rb → role_test.rb} +7 -7
- data/test/unit/{code_object/proxy → language/ruby/code_object}/method_object_test.rb +66 -21
- data/test/unit/{code_object → language/ruby}/provider/yard/docstring_test.rb +74 -38
- data/test/unit/{code_object → language/ruby}/provider/yard/nodoc_helper_test.rb +9 -7
- data/test/unit/{code_object → language/ruby}/provider/yard/object/method_object_test.rb +21 -11
- data/test/unit/language/ruby/provider/yard_test.rb +25 -0
- data/test/unit/utils/buffered_ui_test.rb +48 -0
- data/test/unit/utils/ui_test.rb +7 -7
- data/test/unit/utils/weighted_list_test.rb +7 -4
- metadata +139 -93
- data/lib/inch/code_object/provider/yard.rb +0 -57
- data/lib/inch/code_object/provider/yard/docstring.rb +0 -133
- data/lib/inch/code_object/provider/yard/nodoc_helper.rb +0 -93
- data/lib/inch/code_object/provider/yard/object.rb +0 -60
- data/lib/inch/code_object/provider/yard/object/base.rb +0 -302
- data/lib/inch/code_object/provider/yard/object/class_object.rb +0 -12
- data/lib/inch/code_object/provider/yard/object/class_variable_object.rb +0 -12
- data/lib/inch/code_object/provider/yard/object/constant_object.rb +0 -12
- data/lib/inch/code_object/provider/yard/object/method_object.rb +0 -153
- data/lib/inch/code_object/provider/yard/object/method_parameter_object.rb +0 -88
- data/lib/inch/code_object/provider/yard/object/method_signature.rb +0 -114
- data/lib/inch/code_object/provider/yard/object/module_object.rb +0 -12
- data/lib/inch/code_object/provider/yard/object/namespace_object.rb +0 -47
- data/lib/inch/code_object/provider/yard/object/root_object.rb +0 -12
- data/lib/inch/code_object/provider/yard/parser.rb +0 -62
- data/lib/inch/code_object/proxy/base.rb +0 -241
- data/lib/inch/code_object/proxy/class_object.rb +0 -8
- data/lib/inch/code_object/proxy/class_variable_object.rb +0 -8
- data/lib/inch/code_object/proxy/constant_object.rb +0 -8
- data/lib/inch/code_object/proxy/method_object.rb +0 -82
- data/lib/inch/code_object/proxy/method_parameter_object.rb +0 -60
- data/lib/inch/code_object/proxy/module_object.rb +0 -8
- data/lib/inch/code_object/proxy/namespace_object.rb +0 -33
- data/lib/inch/evaluation/object_schema.rb +0 -30
- data/lib/inch/evaluation/proxy/base.rb +0 -164
- data/lib/inch/evaluation/proxy/class_object.rb +0 -8
- data/lib/inch/evaluation/proxy/class_variable_object.rb +0 -19
- data/lib/inch/evaluation/proxy/constant_object.rb +0 -19
- data/lib/inch/evaluation/proxy/method_object.rb +0 -65
- data/lib/inch/evaluation/proxy/module_object.rb +0 -8
- data/lib/inch/evaluation/proxy/namespace_object.rb +0 -27
- data/lib/inch/evaluation/role/base.rb +0 -92
- data/lib/inch/evaluation/role/class_variable.rb +0 -55
- data/lib/inch/evaluation/role/constant.rb +0 -55
- data/lib/inch/evaluation/role/method.rb +0 -126
- data/lib/inch/evaluation/role/method_parameter.rb +0 -91
- data/lib/inch/evaluation/role/missing.rb +0 -20
- data/lib/inch/evaluation/role/namespace.rb +0 -85
- data/lib/inch/evaluation/role/object.rb +0 -143
- data/test/unit/code_object/provider/yard_test.rb +0 -25
@@ -0,0 +1,99 @@
|
|
1
|
+
module Inch
|
2
|
+
module Evaluation
|
3
|
+
# Role objects are assigned to evaluations of code objects. They describe
|
4
|
+
# the object they are attached to.
|
5
|
+
# @abstract
|
6
|
+
class Role
|
7
|
+
attr_reader :object
|
8
|
+
|
9
|
+
class << self
|
10
|
+
def applicable_if(symbol = nil, &block)
|
11
|
+
@applicable_procs ||= {}
|
12
|
+
@applicable_procs[to_s] = block || symbol.to_proc
|
13
|
+
end
|
14
|
+
|
15
|
+
def applicable_unless(symbol = nil, &block)
|
16
|
+
@applicable_procs ||= {}
|
17
|
+
@applicable_procs[to_s] = proc do |object|
|
18
|
+
!(block || symbol.to_proc).call(object)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
def applicable?(object)
|
23
|
+
@applicable_procs ||= {}
|
24
|
+
@applicable_procs[to_s].call(object)
|
25
|
+
end
|
26
|
+
|
27
|
+
def priority(value)
|
28
|
+
define_method(:priority) { value }
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
# @param object [Codebase::Object] the object to evaluate
|
33
|
+
# @param value [Float] a score that might be added by this role
|
34
|
+
def initialize(object, value = nil)
|
35
|
+
@object = object
|
36
|
+
@value = value
|
37
|
+
end
|
38
|
+
|
39
|
+
# Returns a maximal score for the object.
|
40
|
+
# The final score can not be higher than this.
|
41
|
+
# @note Override this method to that a max_score for the evaluation.
|
42
|
+
# @return [Float]
|
43
|
+
def max_score
|
44
|
+
end
|
45
|
+
|
46
|
+
# Returns a minimal score for the object.
|
47
|
+
# The final score can not be lower than this.
|
48
|
+
# @note Override this method to that a min_score for the evaluation.
|
49
|
+
# @return [Float]
|
50
|
+
def min_score
|
51
|
+
end
|
52
|
+
|
53
|
+
# Returns a score that will be added to the associated object's
|
54
|
+
# overall score.
|
55
|
+
#
|
56
|
+
# @note Override this method to assign a score for the role
|
57
|
+
# @return [Float]
|
58
|
+
def score
|
59
|
+
@value.to_f
|
60
|
+
end
|
61
|
+
|
62
|
+
# Returns a potential score that would be added to the overall score
|
63
|
+
# if the object had implemented the Role's subject.
|
64
|
+
#
|
65
|
+
# @see Role::Missing
|
66
|
+
# @note Override this method to assign a potential score for the role
|
67
|
+
# @return [Float]
|
68
|
+
def potential_score
|
69
|
+
nil
|
70
|
+
end
|
71
|
+
|
72
|
+
# Returns a priority that will be added to the associated object's
|
73
|
+
# overall priority.
|
74
|
+
#
|
75
|
+
# @note Override this method to assign a priority for the role
|
76
|
+
# @return [Fixnum]
|
77
|
+
def priority
|
78
|
+
0
|
79
|
+
end
|
80
|
+
|
81
|
+
# Returns a suggestion to achieve the potential score that would be
|
82
|
+
# added to the overall score if the object had implemented the Role's
|
83
|
+
# subject.
|
84
|
+
#
|
85
|
+
# @see Role::Missing
|
86
|
+
# @return [String]
|
87
|
+
def suggestion
|
88
|
+
nil
|
89
|
+
end
|
90
|
+
|
91
|
+
# Returns the type of the +object+ that is being evaluated.
|
92
|
+
#
|
93
|
+
# @return [String]
|
94
|
+
def object_type
|
95
|
+
raise NotImplementedError
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
@@ -0,0 +1,197 @@
|
|
1
|
+
require "forwardable"
|
2
|
+
|
3
|
+
module Inch
|
4
|
+
module Language
|
5
|
+
module Elixir
|
6
|
+
# This is the base class for code object proxies.
|
7
|
+
# Code object proxies are via an attributes Hash and provide all methods
|
8
|
+
# necessary for the evaluation of its documentation.
|
9
|
+
#
|
10
|
+
# @abstract
|
11
|
+
module CodeObject
|
12
|
+
class Base < Inch::CodeObject::Proxy
|
13
|
+
def language
|
14
|
+
:elixir
|
15
|
+
end
|
16
|
+
|
17
|
+
# @return [Boolean] if the current object is an alias for something else
|
18
|
+
def alias?
|
19
|
+
!aliased_object.nil?
|
20
|
+
end
|
21
|
+
|
22
|
+
# @return [CodeObject::Proxy] the object the current object is an
|
23
|
+
# alias of
|
24
|
+
def aliased_object
|
25
|
+
object_lookup.find(self[:aliased_object_fullname])
|
26
|
+
end
|
27
|
+
|
28
|
+
# @return [Boolean] +true+ if the object has an @api tag
|
29
|
+
def api_tag?
|
30
|
+
self[:api_tag?]
|
31
|
+
end
|
32
|
+
|
33
|
+
# @return [Array] the children of the current object
|
34
|
+
def children
|
35
|
+
@children ||= self[:children_fullnames].map do |fullname|
|
36
|
+
object_lookup.find(fullname)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
# @return [Boolean] +true+ if the object represents a constant
|
41
|
+
def constant?
|
42
|
+
self[:constant?]
|
43
|
+
end
|
44
|
+
|
45
|
+
def core?
|
46
|
+
self[:core?]
|
47
|
+
end
|
48
|
+
|
49
|
+
# The depth of the following is 4:
|
50
|
+
#
|
51
|
+
# Foo::Bar::Baz#initialize
|
52
|
+
# ^ ^ ^ ^
|
53
|
+
# 1 << 2 << 3 << 4
|
54
|
+
#
|
55
|
+
# +depth+ answers the question "how many layers of code objects are
|
56
|
+
# above this one?"
|
57
|
+
#
|
58
|
+
# @note top-level counts, that's why Foo has depth 1!
|
59
|
+
#
|
60
|
+
# @return [Fixnum] the depth of the object in terms of namespace
|
61
|
+
def depth
|
62
|
+
self[:depth]
|
63
|
+
end
|
64
|
+
|
65
|
+
# @return [Docstring]
|
66
|
+
def docstring
|
67
|
+
self[:docstring]
|
68
|
+
end
|
69
|
+
|
70
|
+
def files
|
71
|
+
self[:files]
|
72
|
+
end
|
73
|
+
|
74
|
+
# Returns the name of the file where the object is declared first
|
75
|
+
# @return [String] a filename
|
76
|
+
def filename
|
77
|
+
# just checking the first file (which is the file where an object
|
78
|
+
# is first declared)
|
79
|
+
files.first
|
80
|
+
end
|
81
|
+
|
82
|
+
# @return [String] the name of an object, e.g.
|
83
|
+
# "Docstring"
|
84
|
+
def name
|
85
|
+
self[:name]
|
86
|
+
end
|
87
|
+
|
88
|
+
# @return [String] the fully qualified name of an object, e.g.
|
89
|
+
# "Inch::CodeObject::Provider::YARD::Docstring"
|
90
|
+
def fullname
|
91
|
+
self[:fullname]
|
92
|
+
end
|
93
|
+
|
94
|
+
def has_alias?
|
95
|
+
!self[:aliases_fullnames].empty?
|
96
|
+
end
|
97
|
+
|
98
|
+
def has_children?
|
99
|
+
self[:has_children?]
|
100
|
+
end
|
101
|
+
|
102
|
+
def has_code_example?
|
103
|
+
self[:has_code_example?]
|
104
|
+
end
|
105
|
+
|
106
|
+
def has_doc?
|
107
|
+
self[:has_doc?]
|
108
|
+
end
|
109
|
+
|
110
|
+
def has_multiple_code_examples?
|
111
|
+
self[:has_multiple_code_examples?]
|
112
|
+
end
|
113
|
+
|
114
|
+
def has_unconsidered_tags?
|
115
|
+
self[:has_unconsidered_tags?]
|
116
|
+
end
|
117
|
+
|
118
|
+
def in_root?
|
119
|
+
self[:in_root?]
|
120
|
+
end
|
121
|
+
|
122
|
+
# @return [Boolean] +true+ if the object represents a method
|
123
|
+
def method?
|
124
|
+
self[:method?]
|
125
|
+
end
|
126
|
+
|
127
|
+
# @return [Boolean] +true+ if the object represents a namespace
|
128
|
+
def namespace?
|
129
|
+
self[:namespace?]
|
130
|
+
end
|
131
|
+
|
132
|
+
def original_docstring
|
133
|
+
self[:original_docstring]
|
134
|
+
end
|
135
|
+
|
136
|
+
# @return [Boolean] +true+ if the object was tagged not to be documented
|
137
|
+
def nodoc?
|
138
|
+
self[:nodoc?]
|
139
|
+
end
|
140
|
+
|
141
|
+
# @return [CodeObject::Proxy,nil] the parent of the current object
|
142
|
+
# or +nil+
|
143
|
+
def parent
|
144
|
+
object_lookup.find(self[:parent_fullname])
|
145
|
+
end
|
146
|
+
|
147
|
+
def private?
|
148
|
+
self[:private?]
|
149
|
+
end
|
150
|
+
|
151
|
+
# @return [Boolean]
|
152
|
+
# +true+ if the object or its parent is tagged as @private
|
153
|
+
def tagged_as_private?
|
154
|
+
self[:tagged_as_private?]
|
155
|
+
end
|
156
|
+
|
157
|
+
# @return [Boolean]
|
158
|
+
# +true+ if the object or its parent is tagged as part of an
|
159
|
+
# internal api
|
160
|
+
def tagged_as_internal_api?
|
161
|
+
self[:tagged_as_internal_api?]
|
162
|
+
end
|
163
|
+
|
164
|
+
def protected?
|
165
|
+
self[:protected?]
|
166
|
+
end
|
167
|
+
|
168
|
+
def public?
|
169
|
+
self[:public?]
|
170
|
+
end
|
171
|
+
|
172
|
+
def source
|
173
|
+
self[:source]
|
174
|
+
end
|
175
|
+
|
176
|
+
def type
|
177
|
+
self.class.to_s.gsub(/Object$/, "")
|
178
|
+
end
|
179
|
+
|
180
|
+
# @return [Boolean] +true+ if the object has no documentation at all
|
181
|
+
def undocumented?
|
182
|
+
self[:undocumented?]
|
183
|
+
end
|
184
|
+
|
185
|
+
# @return [Fixnum] the amount of tags not considered for this object
|
186
|
+
def unconsidered_tag_count
|
187
|
+
self[:unconsidered_tag_count]
|
188
|
+
end
|
189
|
+
|
190
|
+
def visibility
|
191
|
+
self[:visibility]
|
192
|
+
end
|
193
|
+
end
|
194
|
+
end
|
195
|
+
end
|
196
|
+
end
|
197
|
+
end
|
@@ -0,0 +1,74 @@
|
|
1
|
+
module Inch
|
2
|
+
module Language
|
3
|
+
module Elixir
|
4
|
+
module CodeObject
|
5
|
+
# Proxy class for functions
|
6
|
+
class FunctionObject < Base
|
7
|
+
def bang_name?
|
8
|
+
self[:bang_name?]
|
9
|
+
end
|
10
|
+
|
11
|
+
def getter?
|
12
|
+
self[:getter?]
|
13
|
+
end
|
14
|
+
|
15
|
+
def has_parameters?
|
16
|
+
!parameters.empty?
|
17
|
+
end
|
18
|
+
|
19
|
+
MANY_PARAMETERS_THRESHOLD = 3
|
20
|
+
def has_many_parameters?
|
21
|
+
parameters.size > MANY_PARAMETERS_THRESHOLD
|
22
|
+
end
|
23
|
+
|
24
|
+
def has_many_lines?
|
25
|
+
false
|
26
|
+
end
|
27
|
+
|
28
|
+
def parameter(name)
|
29
|
+
parameters.find { |p| p.name == name.to_s }
|
30
|
+
end
|
31
|
+
|
32
|
+
def parameters
|
33
|
+
@parameters ||= self[:parameters].map do |param_attr|
|
34
|
+
MethodParameterObject.new(param_attr)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
def overridden?
|
39
|
+
self[:overridden?]
|
40
|
+
end
|
41
|
+
|
42
|
+
def overridden_method
|
43
|
+
@overridden_method ||=
|
44
|
+
object_lookup.find(self[:overridden_method_fullname])
|
45
|
+
end
|
46
|
+
|
47
|
+
def return_mentioned?
|
48
|
+
self[:return_mentioned?]
|
49
|
+
end
|
50
|
+
|
51
|
+
def return_described?
|
52
|
+
self[:return_described?]
|
53
|
+
end
|
54
|
+
|
55
|
+
def return_typed?
|
56
|
+
self[:return_typed?]
|
57
|
+
end
|
58
|
+
|
59
|
+
def setter?
|
60
|
+
self[:setter?]
|
61
|
+
end
|
62
|
+
|
63
|
+
def source
|
64
|
+
self[:source?]
|
65
|
+
end
|
66
|
+
|
67
|
+
def questioning_name?
|
68
|
+
self[:questioning_name?]
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
module Inch
|
2
|
+
module Language
|
3
|
+
module Elixir
|
4
|
+
module CodeObject
|
5
|
+
# Proxy class for modules
|
6
|
+
class ModuleObject < Base
|
7
|
+
MANY_CHILDREN_THRESHOLD = 20
|
8
|
+
def has_many_children?
|
9
|
+
children.size > MANY_CHILDREN_THRESHOLD
|
10
|
+
end
|
11
|
+
|
12
|
+
def has_methods?
|
13
|
+
children.any?(&:method?)
|
14
|
+
end
|
15
|
+
|
16
|
+
def pure_namespace?
|
17
|
+
children.all?(&:namespace?)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
module Inch
|
2
|
+
module Language
|
3
|
+
module Elixir
|
4
|
+
module Evaluation
|
5
|
+
# Base class for all Elixir related evaluations
|
6
|
+
#
|
7
|
+
# @abstract
|
8
|
+
class Base < Inch::Evaluation::Proxy
|
9
|
+
protected
|
10
|
+
|
11
|
+
def relevant_base_roles
|
12
|
+
{
|
13
|
+
Role::Object::InRoot => nil,
|
14
|
+
Role::Object::Public => nil,
|
15
|
+
Role::Object::TaggedAsNodoc => nil,
|
16
|
+
Role::Object::WithDoc => score_for(:docstring),
|
17
|
+
Role::Object::WithoutDoc => score_for(:docstring),
|
18
|
+
Role::Object::WithCodeExample => score_for(:code_example_single),
|
19
|
+
Role::Object::WithMultipleCodeExamples =>
|
20
|
+
score_for(:code_example_multi),
|
21
|
+
Role::Object::WithoutCodeExample => score_for(:code_example_single)
|
22
|
+
}
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
module Inch
|
2
|
+
module Language
|
3
|
+
module Elixir
|
4
|
+
module Evaluation
|
5
|
+
# Proxy class for functions
|
6
|
+
class FunctionObject < Base
|
7
|
+
protected
|
8
|
+
|
9
|
+
def relevant_roles
|
10
|
+
relevant_base_roles.merge(relevant_function_roles)
|
11
|
+
end
|
12
|
+
|
13
|
+
def relevant_function_roles
|
14
|
+
{
|
15
|
+
Role::Function::Getter => nil,
|
16
|
+
Role::Function::Setter => nil,
|
17
|
+
Role::Function::Overridden =>
|
18
|
+
if object.overridden?
|
19
|
+
object.overridden_method.score
|
20
|
+
else
|
21
|
+
nil
|
22
|
+
end,
|
23
|
+
Role::Function::WithBangName => nil,
|
24
|
+
Role::Function::WithQuestioningName => nil,
|
25
|
+
}
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|