oldhaven/app/controllers/track_controller.rb

14 lines
255 B
Ruby
Raw Normal View History

class TrackController < ApplicationController
2011-04-08 23:42:14 +04:00
require 'net/http'
require 'uri'
def listen
2011-04-10 04:15:29 +04:00
artist = 'The White Stripes'
track = 'Blue Orchid'
length = 157
2011-04-08 23:42:14 +04:00
2011-04-10 04:15:29 +04:00
Vkontakte.get(artist, track, length)
render :json => 0
end
end