oldhaven/app/controllers/track_controller.rb
2011-04-10 04:15:29 +04:00

14 lines
255 B
Ruby

class TrackController < ApplicationController
require 'net/http'
require 'uri'
def listen
artist = 'The White Stripes'
track = 'Blue Orchid'
length = 157
Vkontakte.get(artist, track, length)
render :json => 0
end
end