Skip to content

Commit 13eba24

Browse files
committed
add gemfile to KNOWN_FILES
1 parent 01c40eb commit 13eba24

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pilot/helpers/Project.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ def normalize_path(path: str) -> Tuple[str, str]:
482482
# - /pilot -> /pilot/
483483
# - \pilot\server.js -> \pilot\server.js
484484
# - \pilot -> \pilot\
485-
KNOWN_FILES = ["makefile", "dockerfile", "procfile", "readme", "license", "podfile"] # known exceptions that break the heuristic
485+
KNOWN_FILES = ["makefile", "dockerfile", "procfile", "readme", "license", "podfile", "gemfile"] # known exceptions that break the heuristic
486486
KNOWN_DIRS = [] # known exceptions that break the heuristic
487487
base = os.path.basename(path)
488488
if (

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup
22

3-
VERSION = "0.1.0"
3+
VERSION = "0.1.1"
44

55
requirements = open("requirements.txt").readlines()
66

0 commit comments

Comments
 (0)