diff options
author | tzing <tzingshih@gmail.com> | 2021-11-01 21:24:36 +0800 |
---|---|---|
committer | tzing <tzingshih@gmail.com> | 2021-11-01 21:24:36 +0800 |
commit | 8c6a6cdacc399026fd470fc98e4c625f1aae7606 (patch) | |
tree | 90c8c34cf0866d215430bc9c7dab90b33a6b8ded /pygments/lexers/ruby.py | |
parent | 5daf98d0484feb7ab6d6e2e99682627e3865f58b (diff) | |
download | pygments-git-8c6a6cdacc399026fd470fc98e4c625f1aae7606.tar.gz |
add: vagrantfile
Diffstat (limited to 'pygments/lexers/ruby.py')
-rw-r--r-- | pygments/lexers/ruby.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/ruby.py b/pygments/lexers/ruby.py index 2c3e7bd3..2b2f923e 100644 --- a/pygments/lexers/ruby.py +++ b/pygments/lexers/ruby.py @@ -35,7 +35,7 @@ class RubyLexer(ExtendedRegexLexer): name = 'Ruby' aliases = ['ruby', 'rb', 'duby'] filenames = ['*.rb', '*.rbw', 'Rakefile', '*.rake', '*.gemspec', - '*.rbx', '*.duby', 'Gemfile'] + '*.rbx', '*.duby', 'Gemfile', 'Vagrantfile'] mimetypes = ['text/x-ruby', 'application/x-ruby'] flags = re.DOTALL | re.MULTILINE |