vscode/extensions/ruby/package.json
David Hollinger III e5887eb0a3 Remove .pp from Ruby extension list. Issue #5366
The *.pp file extension as it pertains it Ruby is actually
a file type used to denote a Puppet Manifest written in the Puppet
DSL (which itself is written in Ruby). The affected setting was
overriding VSCode Puppet extensions that are expecting the .pp
extension to be detected as file type Puppet.
2016-07-01 13:24:28 -05:00

21 lines
478 B
JSON

{
"name": "ruby",
"version": "0.1.0",
"publisher": "vscode",
"engines": { "vscode": "*" },
"contributes": {
"languages": [{
"id": "ruby",
"extensions": [ ".rb", ".rbx", ".rjs", ".gemspec", ".rake", ".ru" ],
"filenames": [ "rakefile", "gemfile", "guardfile" ],
"aliases": [ "Ruby", "rb" ],
"configuration": "./ruby.configuration.json"
}],
"grammars": [{
"language": "ruby",
"scopeName": "source.ruby",
"path": "./syntaxes/Ruby.plist"
}]
}
}