Skip to content

Commit 624b435

Browse files
author
Andy Chu
committed
Make it build out of the box on newer versions of Ruby.
haberman#2
1 parent 198ea43 commit 624b435

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.*.swp

vtparse_check_tables.rb

100644100755
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
#!/usr/bin/ruby
12

2-
require 'vtparse_tables'
3+
require './vtparse_tables'
34

45
#
56
# check that for every state, there is a transition defined

vtparse_gen_c_tables.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
#!/usr/bin/ruby
12

2-
require 'vtparse_tables'
3+
require './vtparse_tables'
34

45
class String
56
def pad(len)

0 commit comments

Comments
 (0)