I hereby claim:
- I am fabianofranz on github.
- I am fabianofranz (https://keybase.io/fabianofranz) on keybase.
- I have a public key ASDWzKxIYZUSHpzLK2hYW0XLF8LQBbqt4P1-gwfc4veJsgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <script src="http://code.jquery.com/jquery-1.11.0.min.js"></script> | |
| <script type="text/javascript"> | |
| $(document).ready(function() { | |
| var form = $('#form'); // contact form | |
| // form submit event |
| STDOUT Build CouchDB commit: 386709164263df752caabbad15c136dd908ce323 | |
| STDERR /var/lib/openshift/529d45154382eccdf500030a/build-couchdb/dependencies/autoconf-2.69/configure --prefix=/var/lib/openshift/529d45154382eccdf500030a/build-couchdb/build --program-suffix=2.69 --datarootdir=/var/lib/openshift/529d45154382eccdf500030a/build-couchdb/build/share/autoconf-2.69 | |
| STDOUT checking for a BSD-compatible install... /usr/bin/install -c | |
| STDOUT checking whether build environment is sane... yes | |
| STDOUT checking for a thread-safe mkdir -p... /bin/mkdir -p | |
| STDOUT checking for gawk... gawk | |
| STDOUT checking whether make sets $(MAKE)... yes | |
| STDOUT checking build system type... x86_64-unknown-linux-gnu | |
| STDOUT checking host system type... x86_64-unknown-linux-gnu | |
| STDOUT configure: autobuild project... GNU Autoconf |
| def get_args | |
| ARGV.shift | |
| args = "" | |
| ARGV.each do|a| | |
| if ( a.to_s.strip.length == 0 || a.to_s.strip.match(/\s/) ); a = "'#{a}'" end | |
| args += " #{a}" | |
| end | |
| args | |
| end |
| # --- Platform inspectors | |
| def jruby? ; RUBY_PLATFORM =~ /java/i end | |
| def windows? ; RUBY_PLATFORM =~ /win(32|dows|ce)|djgpp|(ms|cyg|bcc)win|mingw32/i end | |
| def unix? ; !jruby? && !windows? end | |
| # --- Lé code | |
| def ask_for_password_on_unix(prompt = "Enter password: ") |