module RgGen::Core::Utility::RegexpPatterns
Constants
- BINARY_PATTERN
- DECIMAL_PATTERN
- HEXADECIMAL_PATTERN
- INTEGER_PATTERN
- VARIABLE_NAME_PATTERN
Public Class Methods
included(klass)
click to toggle source
# File lib/rggen/core/utility/regexp_patterns.rb, line 8 def included(klass) klass.extend(self) end
Private Instance Methods
integer()
click to toggle source
# File lib/rggen/core/utility/regexp_patterns.rb, line 32 def integer INTEGER_PATTERN end
variable_name()
click to toggle source
# File lib/rggen/core/utility/regexp_patterns.rb, line 17 def variable_name VARIABLE_NAME_PATTERN end