-
Notifications
You must be signed in to change notification settings - Fork 740
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added *.Dockerfile filename extension #1059
added *.Dockerfile filename extension #1059
Conversation
8def6d3
to
8d1f1f6
Compare
I'm having issues with the bundler version required in the Gemfile and the one being used in the travis builds. I'm not sure how to fix this or whether it might have something to do with caching. This problem also occurs with other recent PRs. |
Funny this is that even though i made the version explicit, it still uses a different version: (from the build output)
|
@webmaster777 I've submitted a PR (#1062) to set the specific bundler version, and remove the older Rubies from the CI setup and that works. I've asked @dblessing to confirm if he's ok with that approach. If not I'll see if there's another way of resolving this for the older Ruby versions. |
@webmaster777 I don't mean to make it sound like I'm playing you off against each other, but would you be able to update this to cover the additional case described in #1070? I'll merge in whichever is completed first. |
8d1f1f6
to
8eebbe5
Compare
Like this? |
Just like that :) |
In addition to adding the `*.Dockerfile` file glob, #1059 added a file glob for `Dockerfile_*` to address #1070. However, as noted by #1539, this causes issues for files that begin with `dockerfile_` but that are not Dockerfiles. Adding the `Dockerfile_*` file glob was an error and this commit removes it. It is a non-standard name and is not recognised by other syntax highlighting libraries (e.g. Pygments, Chroma, Linguist). The correct fix for the issue that precipitated #1070 is to use a `.gitattributes` file.
In addition to adding the `*.Dockerfile` file glob, rouge-ruby#1059 added a file glob for `Dockerfile_*` to address rouge-ruby#1070. However, as noted by rouge-ruby#1539, this causes issues for files that begin with `dockerfile_` but that are not Dockerfiles. Adding the `Dockerfile_*` file glob was an error and this commit removes it. It is a non-standard name and is not recognised by other syntax highlighting libraries (e.g. Pygments, Chroma, Linguist). The correct fix for the issue that precipitated rouge-ruby#1070 is to use a `.gitattributes` file.
closes #1058