Ho un repository con codice in Ruby e PHP.
Github afferma che il mio repository è il 74,8% di PHP e il 25,2% di Ruby
Non capisco come possa essere. Quando paragono le 2 lingue nel mio progetto:
# Count how many files:
# Ruby
ls | grep ".*\.rb" | wc -l
# returns 10
#PHP
ls | grep ".*\.php" | wc -l
# returns 1
# Count how many lines, words, chars:
# Ruby
cat *.rb | wc
# returns 229, 812, 5303
# PHP
cat *.php | wc
# returns 102, 473, 2760
Ruby sembra sempre avere di più.
Mi manca qualcosa?