Class: Blogdoor::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/blogdoor/client.rb

Instance Method Summary collapse

Instance Method Details

#notifyObject



5
6
7
8
9
10
11
# File 'lib/blogdoor/client.rb', line 5

def notify
  begin
    client = Net::HTTP.new("localhost", 5678)
    client.post("/", "")
  rescue
  end
end