I hereby claim:
- I am ryansch on github.
- I am ryansch (https://keybase.io/ryansch) on keybase.
- I have a public key whose fingerprint is 898F 7948 9D45 345B 4197 AFCC 76D9 CDFF 3C8E BFC3
To claim this, I am signing this object:
| class Elasticsearch14 < Formula | |
| homepage "http://www.elastic.co" | |
| url "https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.4.4.tar.gz" | |
| sha1 "963415a9114ecf0b7dd1ae43a316e339534b8f31" | |
| depends_on :java => "1.7+" | |
| def cluster_name | |
| "elasticsearch_#{ENV["USER"]}" | |
| end |
| global_options: &global_options | |
| # Configuration for whether or not to allow access to fields that do | |
| # not have a field definition on the model. (default: true) | |
| allow_dynamic_fields: false | |
| # Enable the identity map, needed for eager loading. (default: false) | |
| identity_map_enabled: false | |
| # Includes the root model name in json serialization. (default: false) | |
| # include_root_in_json: false |
| module BulkJob | |
| class Collection | |
| def with_worker(worker, &block) | |
| begin | |
| @orig_worker = @worker | |
| @worker = worker | |
| block.call | |
| ensure | |
| @worker = @orig_worker | |
| end |
| class FakeRedis | |
| new: => | |
| @called = {} | |
| set_timeout: (...) => | |
| @called.set_timeout = ... | |
| true | |
| connect: (...) => | |
| @called.connect = ... |
| Failures: | |
| 1) DMARC::Parser#dmarc_record parses version, policy, and rua | |
| Failure/Error: expect(subject.parse record).to eq([ | |
| expected: [{:v=>"DMARC1"}, {:p=>"quarantine"}, {:rua=>"mailto:[email protected]"}, {:rua=>"mailto:[email protected]"}] | |
| got: [{:v=>"DMARC1"@2}, {:p=>"quarantine"@11}] | |
| (compared using ==) |
| worker_processes <%= node[:unicorn][:worker_processes] %> | |
| user "<%= @deploy[:user]%>" | |
| working_directory "<%= @deploy[:deploy_to]%>/current" | |
| listen "<%= @deploy[:deploy_to]%>/shared/sockets/unicorn.sock", :backlog => <%= node[:unicorn][:backlog] %>, :tcp_nodelay => <%= node[:unicorn][:tcp_nodelay] %>, :tcp_nopush => <%= node[:unicorn][:tcp_nopush] %>, :tries => <%= node[:unicorn][:tries] %>, :delay => <%= node[:unicorn][:delay] %>, :accept_filter => <%= node[:unicorn][:accept_filter].inspect %> | |
| timeout <%= node[:unicorn][:timeout] %> |
| require 'webrick' | |
| puts "Starting server" | |
| server = WEBrick::HTTPServer.new Port: 8000 | |
| server.mount_proc '/' do |req, res| | |
| req.each do |header, val| | |
| puts "#{header} = #{val}" | |
| end | |
| res.body = "Hello World" | |
| end |
| %global VERSION 6.8.9 | |
| %global MAJOR_VERSION 6 | |
| %global Patchlevel 0 | |
| Name: ImageMagick | |
| Version: %{VERSION} | |
| Release: %{Patchlevel}.1%{?dist} | |
| Summary: Use ImageMagick to convert, edit, or compose bitmap images in a variety of formats. In addition resize, rotate, shear, distort and transform images. | |
| Group: Applications/Multimedia | |
| License: http://www.imagemagick.org/script/license.php |
I hereby claim:
To claim this, I am signing this object:
| brew uninstall phantomjs | |
| brew install https://raw2.github.com/ryansch/homebrew/1b4b61a503becf61145c05147940a594f95ba0a8/Library/Formula/phantomjs.rb --build-from-source |