Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
ydah committed Dec 27, 2024
1 parent fadb8fc commit be81829
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/lrama/command.rb
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# rbs_inline: enabled
# frozen_string_literal: true

module Lrama
class Command
LRAMA_LIB = File.realpath(File.join(File.dirname(__FILE__)))
STDLIB_FILE_PATH = File.join(LRAMA_LIB, 'grammar', 'stdlib.y')
LRAMA_LIB = File.realpath(File.join(File.dirname(__FILE__))) #: self
STDLIB_FILE_PATH = File.join(LRAMA_LIB, 'grammar', 'stdlib.y') #: self

# @rbs (String argv) -> Array
def run(argv)
begin
options = OptionParser.new.parse(argv)
Expand Down

0 comments on commit be81829

Please sign in to comment.