File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ module RubyHeaderParser
4
4
# Manager for config file
5
5
class Config
6
6
# @!attribute [r] data
7
- # @return [Hash]
7
+ # @return [Hash]
8
8
attr_reader :data
9
9
10
10
# @param config_file [String]
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ class EnumDefinition
7
7
# @return [String]
8
8
attr_accessor :name
9
9
10
- # @!attribute enum_value_definitions
10
+ # @!attribute values
11
11
# @return [Array<String>]
12
12
attr_accessor :values
13
13
Original file line number Diff line number Diff line change @@ -4,19 +4,19 @@ module RubyHeaderParser
4
4
# parse `ruby.h` using `ctags`
5
5
class Parser # rubocop:disable Metrics/ClassLength
6
6
# @!attribute [r] header_file
7
- # @return [String]
7
+ # @return [String]
8
8
attr_reader :header_file
9
9
10
10
# @!attribute [r] include_paths
11
- # @return [Array<String>]
11
+ # @return [Array<String>]
12
12
attr_reader :include_paths
13
13
14
14
# @!attribute [r] dist_preprocessed_header_file
15
- # @return [String]
15
+ # @return [String]
16
16
attr_reader :dist_preprocessed_header_file
17
17
18
- # @!attribute [r] data
19
- # @return [RubyHeaderParser::Config]
18
+ # @!attribute [r] config
19
+ # @return [RubyHeaderParser::Config]
20
20
attr_reader :config
21
21
22
22
DEFAULT_HEADER_FILE = "#{ RbConfig ::CONFIG [ "rubyhdrdir" ] } /ruby.h" . freeze
You can’t perform that action at this time.
0 commit comments