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
| require 'net/ssh' | |
| require 'net/ssh/shell' | |
| require 'open3' | |
| module Net | |
| module SSH | |
| class SessionCommand | |
| attr_reader :command, :output, :exit_code | |
| # Initialize a new session command |
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
| source :rubygems | |
| gem 'terminal-notifier' | |
| gem 'pusher-client', :git => 'git://github.com/pusher/pusher-ruby-client.git' |
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
| require "faraday" | |
| require "faraday_middleware" | |
| module OpenTable | |
| class Error < StandardError ; end | |
| module Request | |
| API_BASE = "http://opentable.herokuapp.com" | |
| def connection |
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
| require 'faraday' | |
| module Yelp | |
| PRICE_RANGE_REGEX = /<span id="price_tip" \b[^>]*>(.*?)<\/span>/i | |
| def self.restaurant_price_range(id) | |
| url = "http://www.yelp.com/biz/#{id}" | |
| body = Faraday.get(url).body | |
| body.scan(PRICE_RANGE_REGEX).flatten.first.to_s.length | |
| end |
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
| module Rack | |
| class Revision | |
| @@revision = nil | |
| File = ::File | |
| def initialize(app, &block) | |
| @app = app | |
| @block = block | |
| @file = File.join(Dir.pwd, 'REVISION') | |
| end |
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
| have_library: checking for main() in -licui18n... -------------------- yes | |
| "/usr/bin/gcc-4.2 -o conftest -I/Users/sosedoff/.rvm/rubies/ruby-1.9.2-p290/include/ruby-1.9.1/x86_64-darwin10.8.0 -I/Users/sosedoff/.rvm/rubies/ruby-1.9.2-p290/include/ruby-1.9.1/ruby/backward -I/Users/sosedoff/.rvm/rubies/ruby-1.9.2-p290/include/ruby-1.9.1 -I. -I/usr/local/Cellar/icu4c/4.4.1/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wpointer-arith -Wwrite-strings -Wno-missing-field-initializers -Wshorten-64-to-32 -Wno-long-long -fno-common -pipe conftest.c -L. -L/Users/sosedoff/.rvm/rubies/ruby-1.9.2-p290/lib -L/usr/local/Cellar/icu4c/4.4.1/lib -L. -L/usr/local/lib -lruby.1.9.1-static -lpthread -ldl -lobjc " | |
| checked program was: | |
| /* begin */ | |
| 1: #include "ruby.h" | |
| 2: | |
| 3: int main() {return 0;} | |
| /* end */ |
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
| - | |
| ./pma2/0.1 libwww-perl/5.805 | |
| Aghaven/Nutch-1.2 | |
| Baiduspider+(+http://www.baidu.com/search/spider.htm) | |
| BlackBerry9000/4.6.0.167 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/102 ips-agent | |
| BlackBerry9330/5.0.0.857 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/105 | |
| EMail Exractor | |
| Gigabot/3.0 (http://www.gigablast.com/spider.html) | |
| Gimmie60/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.11) | |
| Googlebot-Image/1.0 |
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
| require 'omniauth/oauth' | |
| require 'multi_json' | |
| module OmniAuth | |
| module Strategies | |
| class Google2 < OAuth2 | |
| def initialize(app, client_id = nil, client_secret = nil, options = {}, &block) | |
| client_options = { | |
| :site => 'https://accounts.google.com/o/oauth2', | |
| :authorize_url => 'https://accounts.google.com/o/oauth2/auth', |
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
| require 'RedCloth' | |
| require 'rdiscount' | |
| require 'rdoc/markup/to_html' # ruby1.9.2 specific | |
| module TextMarkup | |
| extend self | |
| # Auto-detect format from filename and render content | |
| def render(filename, content) | |
| name = File.basename(filename.to_s.strip) |
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
| __END__ | |
| --- a/api/libsphinxclient/sphinxclient.c | |
| +++ b/api/libsphinxclient/sphinxclient.c | |
| @@ -277,7 +277,7 @@ | |
| } | |
| -void sock_close ( int sock ); | |
| +static void sock_close ( int sock ); | |