Last active
August 11, 2016 19:00
-
-
Save chadwtaylor/6288276 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ApplicationModel < ActiveResource::Base | |
def initialize | |
super | |
self.site = "http://captionwatch-api.dev" | |
self.user = "admin" | |
end | |
end | |
class Complaint < ApplicationModel | |
end | |
class Product < ApplicationModel | |
end | |
class Company < ApplicationModel | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment