14 lines
255 B
Ruby
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
|