This file contains hidden or 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
import UIKit | |
class FloatingButtonController: UIViewController { | |
private(set) var button: UIButton! | |
required init?(coder aDecoder: NSCoder) { | |
fatalError() | |
} | |
This file contains hidden or 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
# Bishop -- IRC bot for channel irc://chat.freenode.net/rubyonrails.cz | |
# | |
# Source: http://gist.github.com/402123.txt | |
require 'rubygems' | |
require 'cinch' | |
require 'open-uri' | |
require 'nokogiri' | |
require 'rack/utils' |