Raise max length for project name.
This commit is contained in:
parent
b1c0c2b5ef
commit
ddbb2903cb
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ module Kook
|
||||||
class MissingProjectFile < RuntimeError ; end
|
class MissingProjectFile < RuntimeError ; end
|
||||||
class InvalidProjectName < RuntimeError ; end
|
class InvalidProjectName < RuntimeError ; end
|
||||||
PROJECT_NAME_MIN_SIZE = 4
|
PROJECT_NAME_MIN_SIZE = 4
|
||||||
PROJECT_NAME_MAX_SIZE = 12
|
PROJECT_NAME_MAX_SIZE = 15
|
||||||
|
|
||||||
def initialize project_name
|
def initialize project_name
|
||||||
self.class.validate_name project_name
|
self.class.validate_name project_name
|
||||||
|
|
Loading…
Reference in a new issue