I am fairly new to Ruby on Rails and have done tutorials on making a
blogging app. For this web application that I am making, I am trying to
implement the Bandsintown api ( Bandsintown | Live Music, Concert Tickets, Tour Dates & Live Streams) so users can see if
there are upcoming events for an artist they pick. Unfortunately, after
reading http://bandsintown.rubyforge.org/, I still do not understand how
to
do even the simplest methods. Any help would be appreciated.
I am fairly new to Ruby on Rails and have done tutorials on making a
blogging app. For this web application that I am making, I am trying to
implement the Bandsintown api
(Bandsintown | Live Music, Concert Tickets, Tour Dates & Live Streams) so users can see if
there are upcoming events for an artist they pick. Unfortunately, after
reading http://bandsintown.rubyforge.org/, I still do not understand how to
do even the simplest methods. Any help would be appreciated.
Further to Nanya’s post I notice that the last release of this gem was
in 2010 for Rails 2.0. It may be worth trying but do not surprised if
it does not work with Rails 4
I am fairly new to Ruby on Rails and have done tutorials on making a
blogging app. For this web application that I am making, I am trying to
implement the Bandsintown api ( Bandsintown | Live Music, Concert Tickets, Tour Dates & Live Streams) so users can see if
there are upcoming events for an artist they pick. Unfortunately, after
reading http://bandsintown.rubyforge.org/, I still do not understand how to
do even the simplest methods. Any help would be appreciated.
Before sticking an unknown API into a RoR application, I’m going to
suggest learning exactly how it works in a tiny application (just plain
old ruby) such as creating some tests with MiniTest, or even just poking
at it with Pry.
When you know just how it works, then putting it into a RoR app will be
lot easier. It’s just a lot harder to debug this sort of thing embedded
in the middle of all that other stuff going on.