Skip to content

Instantly share code, notes, and snippets.

@hash32bot
Created December 25, 2018 13:22
Show Gist options
  • Save hash32bot/4cc2ae8ae27213115a43fe741ec0304d to your computer and use it in GitHub Desktop.
Save hash32bot/4cc2ae8ae27213115a43fe741ec0304d to your computer and use it in GitHub Desktop.
Sinatra App - app.rb changes - http://bit.ly/2V9p6OL
# Changes to file app.rb
# ...
require 'sinatra/activerecord'
require_relative 'models/speaker'
class ConferenceApp < Sinatra::Base
# ...
get '/speakers' do
@speakers = Speaker.all
json @speakers
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment