Mass move to root

This commit is contained in:
magnolia-fan
2011-04-09 17:41:24 +04:00
parent 0640e2424e
commit 62ff3f277f
484 changed files with 0 additions and 3 deletions
+15
View File
@@ -0,0 +1,15 @@
module ApplicationHelper
end
class Numeric
def toSeconds
(self / 1000).round
end
def toTime
s = self.toSeconds
m = (s / 60).floor
s -= m * 60
m.to_s << ':' << (s < 10 ? '0' : '') << s.to_s
end
end
+2
View File
@@ -0,0 +1,2 @@
module ArtistHelper
end
+2
View File
@@ -0,0 +1,2 @@
module MainHelper
end
+2
View File
@@ -0,0 +1,2 @@
module TrackHelper
end
+19
View File
@@ -0,0 +1,19 @@
module Vkontakte
@@accounts = YAML.load_file("#{RAILS_ROOT}/config/vk_accounts.yml")
def get artist, track, length
end
def getHtml q
end
def parseHtml html
end
def calcWeight files
end
end