Compare the following using all lowercase afutils:
C:\>fanr publish afutils
Publish afUtils-1.0.2 [y/n]: y
C:\>fanr install afutils
No install pods matched
Publish is case insensitive (hurray!)
Install is case sensitive (boo!)
brianTue 7 Aug 2012
Everything about pods (and Fantom) is case sensitive.
In this case though the pod lookup on the file system will be dependent on the file system case sensitivity. In some places where it might matter to code, I explicitly check that (such as Pod.find). But in this case I don't think it really hurts anything
SlimerDude Tue 7 Aug 2012
Compare the following using all lowercase
afutils
:Publish is case insensitive (hurray!)
Install is case sensitive (boo!)
brian Tue 7 Aug 2012
Everything about pods (and Fantom) is case sensitive.
In this case though the pod lookup on the file system will be dependent on the file system case sensitivity. In some places where it might matter to code, I explicitly check that (such as Pod.find). But in this case I don't think it really hurts anything