Ho un repository con Ruby e codice PHP in esso.
Github afferma che il mio repository è il 74,8% di PHP e il 25,2% di rubino
Non capisco come possa essere. Quando confronto 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
Sembra che Ruby ne abbia sempre di più.
Mi sto perdendo qualcosa?