mistydemeo / tigerbrew

Experimental fork of homebrew for PPC Macs on Tiger
Other
543 stars 130 forks source link

Error Installing Node.JS AND Python #545

Open TheCatster opened 6 years ago

TheCatster commented 6 years ago

Every time I try to do brew install node or brew install python I get fairly good results and then get this: brew install python **After this is the result** Downloading https://www.python.org/ftp/python/2.7.12/Python-2.7.12.tar.xz After that, it continues until it hits: Downloading https://files.pythonhosted.org/packages/9f/7c/0a33c528164flb7ff8 curl: (35) error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsvl alert protocol version ERROR: Failed to download resource "python--setuptools" Download failed **And then shows a similar address to the one above**

I am running Tigerbrew on a Mac Mini Core Duo 2006 model with Snow Leopard 10.6.8. Please help me out, I've been stuck on this for a while and need NPM for a project for school.

Thanks In Advance.

mistydemeo commented 6 years ago

Can you try installing curl by doing brew install curl, then retry installing Node or Python? Let me know if that helps.

TheCatster commented 6 years ago

OK, I'll try once I have a spare moment. I'll paste the results.

TheCatster commented 6 years ago

When I do brew install curl I get Warning: curl-7.50.3 already installed.

Still getting same results.

TheCatster commented 6 years ago

Any ideas on what might help?

TheCatster commented 6 years ago

Hello?

mistydemeo commented 6 years ago

Sorry for the lack of response! I've been busy over Christmas.

I've pushed a workaround that may help. You likely also need to brew install curl-ca-bundle, which should fix the issue more permanently.

TheCatster commented 6 years ago

Ok, I'll try that tomorrow and update whether or not it works!

TheCatster commented 6 years ago

Great News! (Just Kidding)

Didn't work, just receiving an error saying SSL error "curl-ca-bundle".

I might just end up getting a VM...

If any updates or findings occur please let me know.

mistydemeo commented 6 years ago

Oh no! I'm sorry to hear that. Could you show me the full error you get, please? Include the full command and everything it prints afterwards.

TheCatster commented 6 years ago

Ok, I'm currently unavailable, but I'll do it roughly in 7 hours when I get home. I'll post everything.

mistydemeo commented 6 years ago

Ping - still need help?

TheCatster commented 6 years ago

Yes, sorry about that, busy with academics. I'll try and get it tonight!

TheCatster commented 6 years ago

Sorry for the later response, here is the result: brew install curl-ca-bundle ==> **Downloading https://curl.haxx.se/ca/cacert-2017-01-18.pem** curl: (35) error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsvl alert protocol version Error: Failed to download resource "curl-ca-bundle" Download Failed: https://curl.haxx.se/ca/cacert-2017-01-18.pem Human-Placeholder-Mac-mini:~ TheCatster$

(The stars are supposed to be bold) Nothing happens except for the error, returns to normal input. Any ideas?

TheCatster commented 6 years ago

Updates?

TheCatster commented 6 years ago

I'm going to close this topic if no solution can be found, so thanks for your time!

mistydemeo commented 6 years ago

This should be fixed by #555. If you brew update, you should be able to brew install curl-ca-bundle and brew install curl, then fetch the other software!

TheCatster commented 6 years ago

I know this issue is closed now, but now I am getting the error bad CPU type in executable.

Know any solutions?

mistydemeo commented 6 years ago

What are you getting that message from?

TheCatster commented 6 years ago

When I try to do brew install node, as well as brew install python.

mistydemeo commented 6 years ago

Do you mind showing me the full output from brew install node?

TheCatster commented 6 years ago

I'll get you the results as soon as I can.

programmingkidx commented 6 years ago

I am also experiencing the same problems with installing python. 'brew update' doesn't even work anymore because of this curl error. I suggest adding a backup system that uses wget to download files when curl fails.

programmingkidx commented 6 years ago

Is there a way to manually install curl-ca-bundle? Looking at the .rb file it runs this code: def install share.install "cacert-#{version}.pem" => "ca-bundle.crt" end

I figured out that this command can be used to download the .pem file: wget https://curl.haxx.se/ca/cacert-2017-01-18.pem

I just don't know where to place this file once I have it.

TheCatster commented 6 years ago

Nothing seemed to work for me, so I'm currently in the process of upgrading my mac mini. Maybe a newer OS will help... Thanks for all the assistance so far.

programmingkidx commented 6 years ago

My current theory is the server tigerbrew uses upgraded their security to use tls v1.2. Curl probably defaults to tls v1.0. So to fix this problem we would have to add this to the options sent to curl: "--tlsv1.2". This is what is sent currently: /usr/bin/curl -fLA Tigerbrew 0.9.5 (Ruby 1.8.7; OS X 10.6.8) https://curl.haxx.se/ca/cacert-2017-01-18.pem -C 0 -o /Library/Caches/Homebrew/curl-ca-bundle-2017-01-18.pem.incomplete.

That was found by adding -v to brew's install command. Like this: brew install curl-ca-bundle -v

programmingkidx commented 6 years ago

I just realized that brew is using the older /usr/bin/curl program instead of the newer /usr/local/bin/curl program. Is there a way to point brew to use the newer version of curl instead of the system installed version?

mistydemeo commented 6 years ago

As it happens, I have a branch for that! It pulls down a modern curl with up-to-date certs, no further user interaction required. https://github.com/mistydemeo/tigerbrew/pull/510

programmingkidx commented 6 years ago

I have downloaded tigerbrew-vendor_ruby. How do I install it and begin using it?

EricFromCanada commented 6 years ago

Install Tigerbrew normally, then run git checkout vendor_ruby in /usr/local as per my comment. Once #510 is merged you'll want to switch back with git checkout master and brew update.

programmingkidx commented 6 years ago

Thank you for the help. I just tried it and experienced the same messages you experienced: Error: Failed to upgrade vendor ruby. Error: Failed to install vendor Ruby.

I guess a little more work needs to be done before tigerbrew is ready again.

EricFromCanada commented 6 years ago

I've never seen those messages. Is your /usr/local writable? Does brew doctor report any issues? Is the account you're running under an admin account?

programmingkidx commented 6 years ago

Yes, my /usr/local is writable. Brew doctor doesn't even work. It prints the same messages as displayed in my previous message.

programmingkidx commented 6 years ago

Yes, I am running under an administrator's account.

mistydemeo commented 6 years ago

@programmingkidx Thanks for testing this. Those errors are from the new branch (it's trying to download Ruby and Curl).

Can you try running this command and show me what the output is?

brew vendor-install ruby --verbose
programmingkidx commented 6 years ago

Here is the output:

$ brew vendor-install ruby --verbose ==> Downloading https://homebrew.bintray.com/bottles-portable/portable-ruby-2.0.0-p648.leopard_64.bottle.tar.gz Already downloaded: /Users/john/Library/Caches/Homebrew/portable-ruby-2.0.0-p648.leopard_64.bottle.tar.gz ==> Unpacking portable-ruby-2.0.0-p648.leopard_64.bottle.tar.gz x portable-ruby/2.0.0-p648/ x portable-ruby/2.0.0-p648/bin/ x portable-ruby/2.0.0-p648/bin/erb x portable-ruby/2.0.0-p648/bin/gem x portable-ruby/2.0.0-p648/bin/irb x portable-ruby/2.0.0-p648/bin/rake x portable-ruby/2.0.0-p648/bin/rdoc x portable-ruby/2.0.0-p648/bin/ri x portable-ruby/2.0.0-p648/bin/ruby x portable-ruby/2.0.0-p648/bin/testrb x portable-ruby/2.0.0-p648/ChangeLog x portable-ruby/2.0.0-p648/COPYING x portable-ruby/2.0.0-p648/include/ x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ x portable-ruby/2.0.0-p648/include/ruby-2.0.0/i386-darwin9.8.0/ x portable-ruby/2.0.0-p648/include/ruby-2.0.0/i386-darwin9.8.0/ruby/ x portable-ruby/2.0.0-p648/include/ruby-2.0.0/i386-darwin9.8.0/ruby/config.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/ x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/backward/ x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/backward/classext.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/backward/rubyio.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/backward/rubysig.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/backward/st.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/backward/util.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/debug.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/defines.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/digest.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/encoding.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/intern.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/io.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/missing.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/oniguruma.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/re.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/regex.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/ruby.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/st.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/subst.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/thread.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/util.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/version.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby/vm.h x portable-ruby/2.0.0-p648/include/ruby-2.0.0/ruby.h x portable-ruby/2.0.0-p648/INSTALL_RECEIPT.json x portable-ruby/2.0.0-p648/lib/ x portable-ruby/2.0.0-p648/lib/libruby-static.a x portable-ruby/2.0.0-p648/lib/pkgconfig/ x portable-ruby/2.0.0-p648/lib/pkgconfig/ruby-2.0.pc x portable-ruby/2.0.0-p648/lib/ruby/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/abbrev.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/base64.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/benchmark.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/bigdecimal/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/bigdecimal/jacobian.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/bigdecimal/ludcmp.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/bigdecimal/math.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/bigdecimal/newton.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/bigdecimal/util.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/cgi/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/cgi/cookie.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/cgi/core.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/cgi/html.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/cgi/session/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/cgi/session/pstore.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/cgi/session.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/cgi/util.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/cgi.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/cmath.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/complex.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/csv.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/date/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/date/format.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/date.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/debug.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/delegate.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/digest/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/digest/hmac.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/digest/sha2.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/digest.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/drb/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/drb/acl.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/drb/drb.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/drb/eq.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/drb/extserv.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/drb/extservm.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/drb/gw.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/drb/invokemethod.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/drb/observer.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/drb/ssl.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/drb/timeridconv.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/drb/unix.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/drb.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/e2mmap.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/English.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/erb.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/expect.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/fileutils.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/find.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/forwardable.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/getoptlong.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/gserver.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/i386-darwin9.8.0/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/i386-darwin9.8.0/rbconfig.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/io/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/io/console/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/io/console/size.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/ipaddr.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/cmd/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/cmd/chws.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/cmd/fork.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/cmd/help.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/cmd/load.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/cmd/nop.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/cmd/pushws.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/cmd/subirb.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/completion.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/context.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/ext/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/ext/change-ws.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/ext/history.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/ext/loader.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/ext/math-mode.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/ext/multi-irb.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/ext/save-history.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/ext/tracer.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/ext/use-loader.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/ext/workspaces.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/extend-command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/frame.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/help.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/init.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/input-method.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/inspector.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/lc/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/lc/error.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/lc/help-message x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/lc/ja/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/lc/ja/encoding_aliases.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/lc/ja/error.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/lc/ja/help-message x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/locale.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/magic-file.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/notifier.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/output-method.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/ruby-lex.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/ruby-token.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/slex.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/src_encoding.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/version.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/workspace.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/ws-for-case-2.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb/xmp.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/irb.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/json/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/json/add/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/json/add/bigdecimal.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/json/add/complex.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/json/add/core.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/json/add/date.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/json/add/date_time.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/json/add/exception.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/json/add/ostruct.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/json/add/range.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/json/add/rational.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/json/add/regexp.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/json/add/struct.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/json/add/symbol.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/json/add/time.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/json/common.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/json/ext.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/json/generic_object.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/json/version.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/json.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/kconv.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/logger.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/mathn.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/matrix/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/matrix/eigenvalue_decomposition.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/matrix/lup_decomposition.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/matrix.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/minitest/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/minitest/autorun.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/minitest/benchmark.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/minitest/hell.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/minitest/mock.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/minitest/parallel_each.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/minitest/pride.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/minitest/spec.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/minitest/unit.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/mkmf.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/monitor.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/mutex_m.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/net/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/net/ftp.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/net/http/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/net/http/backward.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/net/http/exceptions.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/net/http/generic_request.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/net/http/header.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/net/http/proxy_delta.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/net/http/request.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/net/http/requests.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/net/http/response.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/net/http/responses.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/net/http.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/net/https.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/net/imap.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/net/pop.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/net/protocol.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/net/smtp.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/net/telnet.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/observer.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/open-uri.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/open3.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/openssl/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/openssl/bn.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/openssl/buffering.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/openssl/cipher.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/openssl/config.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/openssl/digest.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/openssl/ssl.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/openssl/x509.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/openssl.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/optparse/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/optparse/ac.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/optparse/date.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/optparse/shellwords.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/optparse/time.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/optparse/uri.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/optparse/version.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/optparse.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/ostruct.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/pathname.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/pp.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/prettyprint.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/prime.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/profile.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/profiler.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/pstore.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/coder.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/core_ext.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/deprecated.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/handler.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/handlers/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/handlers/document_stream.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/handlers/recorder.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/json/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/json/ruby_events.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/json/stream.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/json/tree_builder.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/json/yaml_events.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/nodes/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/nodes/alias.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/nodes/document.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/nodes/mapping.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/nodes/node.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/nodes/scalar.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/nodes/sequence.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/nodes/stream.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/nodes.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/omap.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/parser.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/scalar_scanner.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/set.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/stream.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/streaming.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/syntax_error.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/tree_builder.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/visitors/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/visitors/depth_first.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/visitors/emitter.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/visitors/json_tree.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/visitors/to_ruby.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/visitors/visitor.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/visitors/yaml_tree.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/visitors.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych/y.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/psych.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/racc/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/racc/parser.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/alt_system.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/application.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/backtrace.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/classic_namespace.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/clean.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/cloneable.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/contrib/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/contrib/compositepublisher.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/contrib/ftptools.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/contrib/publisher.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/contrib/rubyforgepublisher.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/contrib/sshpublisher.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/contrib/sys.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/default_loader.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/dsl_definition.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/early_time.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/ext/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/ext/core.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/ext/module.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/ext/string.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/ext/time.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/file_creation_task.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/file_list.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/file_task.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/file_utils.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/file_utils_ext.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/gempackagetask.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/invocation_chain.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/invocation_exception_mixin.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/lib/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/lib/project.rake x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/loaders/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/loaders/makefile.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/multi_task.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/name_space.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/packagetask.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/pathmap.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/phony.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/private_reader.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/promise.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/pseudo_status.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/rake_module.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/rake_test_loader.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/rdoctask.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/ruby182_test_unit_fix.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/rule_recursion_overflow_error.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/runtest.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/task.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/task_argument_error.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/task_arguments.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/task_manager.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/tasklib.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/testtask.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/thread_history_display.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/thread_pool.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/trace_output.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/version.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake/win32.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rake.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rational.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rbconfig/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rbconfig/datadir.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rbconfig/obsolete.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/alias.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/anon_class.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/any_method.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/attr.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/class_module.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/code_object.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/code_objects.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/comment.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/constant.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/context/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/context/section.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/context.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/cross_reference.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/encoding.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/erb_partial.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/erbio.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/extend.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/darkfish.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/json_index.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/markup.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/ri.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/_footer.rhtml x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/_head.rhtml x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/_sidebar_classes.rhtml x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/_sidebar_extends.rhtml x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/_sidebar_in_files.rhtml x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/_sidebar_includes.rhtml x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/_sidebar_installed.rhtml x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/_sidebar_methods.rhtml x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/_sidebar_navigation.rhtml x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/_sidebar_pages.rhtml x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/_sidebar_parent.rhtml x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/_sidebar_search.rhtml x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/_sidebar_sections.rhtml x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/_sidebar_table_of_contents.rhtml x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/_sidebar_VCS_info.rhtml x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/class.rhtml x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/add.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/arrow_up.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/brick.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/brick_link.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/bug.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/bullet_black.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/bullet_toggle_minus.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/bullet_toggle_plus.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/date.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/delete.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/find.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/loadingAnimation.gif x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/macFFBgHack.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/package.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/page_green.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/page_white_text.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/page_white_width.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/plugin.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/ruby.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/tag_blue.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/tag_green.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/transparent.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/wrench.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/wrench_orange.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/images/zoom.png x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/index.rhtml x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/js/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/js/darkfish.js x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/js/jquery.js x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/js/search.js x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/page.rhtml x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/rdoc.css x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/servlet_not_found.rhtml x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/servlet_root.rhtml x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/darkfish/table_of_contents.rhtml x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/json_index/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/json_index/js/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/json_index/js/navigation.js x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator/template/json_index/js/searcher.js x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/generator.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/ghost_method.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/include.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/known_classes.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markdown/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markdown/entities.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markdown/literals_1_9.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markdown.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/attr_changer.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/attr_span.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/attribute_manager.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/attributes.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/blank_line.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/block_quote.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/document.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/formatter.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/formatter_test_case.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/hard_break.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/heading.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/include.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/indented_paragraph.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/inline.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/list.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/list_item.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/paragraph.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/parser.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/pre_process.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/raw.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/rule.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/special.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/text_formatter_test_case.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/to_ansi.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/to_bs.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/to_html.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/to_html_crossref.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/to_html_snippet.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/to_joined_paragraph.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/to_label.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/to_markdown.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/to_rdoc.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/to_table_of_contents.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/to_test.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/to_tt_only.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup/verbatim.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/markup.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/meta_method.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/method_attr.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/normal_class.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/normal_module.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/options.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/parser/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/parser/c.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/parser/changelog.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/parser/markdown.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/parser/rd.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/parser/ruby.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/parser/ruby_tools.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/parser/simple.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/parser/text.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/parser.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/rd/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/rd/block_parser.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/rd/inline.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/rd/inline_parser.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/rd.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/rdoc.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/require.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/ri/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/ri/driver.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/ri/formatter.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/ri/paths.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/ri/store.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/ri.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/ruby_lex.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/ruby_token.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/rubygems_hook.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/servlet.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/single_class.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/stats/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/stats/normal.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/stats/quiet.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/stats/verbose.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/stats.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/store.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/task.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/test_case.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/text.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/token_stream.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/tom_doc.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc/top_level.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rdoc.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/resolv-replace.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/resolv.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/attlistdecl.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/attribute.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/cdata.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/child.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/comment.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/doctype.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/document.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/dtd/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/dtd/attlistdecl.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/dtd/dtd.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/dtd/elementdecl.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/dtd/entitydecl.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/dtd/notationdecl.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/element.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/encoding.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/entity.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/formatters/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/formatters/default.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/formatters/pretty.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/formatters/transitive.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/functions.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/instruction.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/light/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/light/node.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/namespace.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/node.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/output.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/parent.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/parseexception.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/parsers/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/parsers/baseparser.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/parsers/lightparser.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/parsers/pullparser.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/parsers/sax2parser.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/parsers/streamparser.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/parsers/treeparser.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/parsers/ultralightparser.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/parsers/xpathparser.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/quickpath.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/rexml.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/sax2listener.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/source.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/streamlistener.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/syncenumerator.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/text.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/undefinednamespaceexception.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/validation/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/validation/relaxng.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/validation/validation.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/validation/validationexception.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/xmldecl.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/xmltokens.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/xpath.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rexml/xpath_parser.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rinda/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rinda/rinda.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rinda/ring.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rinda/tuplespace.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/ripper/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/ripper/core.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/ripper/filter.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/ripper/lexer.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/ripper/sexp.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/ripper.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/0.9.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/1.0.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/2.0.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/atom.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/content/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/content/1.0.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/content/2.0.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/content.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/converter.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/dublincore/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/dublincore/1.0.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/dublincore/2.0.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/dublincore/atom.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/dublincore.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/image.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/itunes.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/maker/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/maker/0.9.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/maker/1.0.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/maker/2.0.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/maker/atom.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/maker/base.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/maker/content.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/maker/dublincore.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/maker/entry.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/maker/feed.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/maker/image.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/maker/itunes.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/maker/slash.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/maker/syndication.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/maker/taxonomy.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/maker/trackback.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/maker.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/parser.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/rexmlparser.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/rss.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/slash.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/syndication.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/taxonomy.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/trackback.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/utils.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/xml-stylesheet.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/xml.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/xmlparser.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss/xmlscanner.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rss.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/available_set.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/command_manager.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/build_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/cert_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/check_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/cleanup_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/contents_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/dependency_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/environment_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/fetch_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/generate_index_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/help_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/install_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/list_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/lock_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/mirror_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/outdated_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/owner_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/pristine_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/push_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/query_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/rdoc_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/search_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/server_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/setup_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/sources_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/specification_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/stale_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/uninstall_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/unpack_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/update_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/which_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/commands/yank_command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/compatibility.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/config_file.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/core_ext/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/core_ext/kernel_gem.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/core_ext/kernel_require.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/defaults.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/dependency.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/dependency_installer.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/dependency_list.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/dependency_resolver.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/deprecate.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/doctor.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/errors.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/exceptions.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/ext/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/ext/builder.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/ext/cmake_builder.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/ext/configure_builder.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/ext/ext_conf_builder.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/ext/rake_builder.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/ext.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/gem_runner.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/gemcutter_utilities.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/indexer.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/install_message.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/install_update_options.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/installer.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/installer_test_case.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/local_remote_options.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/mock_gem_ui.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/name_tuple.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/package/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/package/digest_io.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/package/old.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/package/tar_header.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/package/tar_reader/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/package/tar_reader/entry.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/package/tar_reader.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/package/tar_test_case.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/package/tar_writer.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/package.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/package_task.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/path_support.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/platform.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/psych_additions.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/psych_tree.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/rdoc.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/remote_fetcher.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/request_set.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/requirement.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/security/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/security/policies.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/security/policy.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/security/signer.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/security/trust_dir.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/security.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/server.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/source.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/source_list.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/source_local.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/source_specific_file.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/spec_fetcher.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/specification.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/ssl_certs/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/ssl_certs/AddTrustExternalCARoot-2048.pem x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/ssl_certs/AddTrustExternalCARoot.pem x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/ssl_certs/Class3PublicPrimaryCertificationAuthority.pem x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/ssl_certs/DigiCertHighAssuranceEVRootCA.pem x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/ssl_certs/EntrustnetSecureServerCertificationAuthority.pem x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/ssl_certs/GeoTrustGlobalCA.pem x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/syck_hack.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/test_case.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/test_utilities.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/text.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/uninstaller.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/user_interaction.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/validator.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/version.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems/version_option.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/rubygems.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/scanf.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/securerandom.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/set.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/shell/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/shell/builtin-command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/shell/command-processor.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/shell/error.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/shell/filter.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/shell/process-controller.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/shell/system-command.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/shell/version.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/shell.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/shellwords.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/singleton.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/socket.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/sync.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/syslog/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/syslog/logger.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/tempfile.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/test/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/test/unit/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/test/unit/assertions.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/test/unit/parallel.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/test/unit/testcase.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/test/unit.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/thread.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/thwait.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/time.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/timeout.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/tmpdir.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/tracer.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/tsort.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/ubygems.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/un.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/uri/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/uri/common.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/uri/ftp.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/uri/generic.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/uri/http.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/uri/https.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/uri/ldap.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/uri/ldaps.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/uri/mailto.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/uri.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/weakref.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/accesslog.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/cgi.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/compat.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/config.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/cookie.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/htmlutils.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpauth/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpauth/authenticator.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpauth/basicauth.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpauth/digestauth.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpauth/htdigest.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpauth/htgroup.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpauth/htpasswd.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpauth/userdb.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpauth.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpproxy.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httprequest.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpresponse.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/https.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpserver.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpservlet/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpservlet/abstract.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpservlet/cgi_runner.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpservlet/cgihandler.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpservlet/erbhandler.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpservlet/filehandler.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpservlet/prochandler.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpservlet.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpstatus.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httputils.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/httpversion.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/log.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/server.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/ssl.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/utils.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick/version.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/webrick.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/xmlrpc/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/xmlrpc/base64.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/xmlrpc/client.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/xmlrpc/config.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/xmlrpc/create.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/xmlrpc/datetime.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/xmlrpc/httpserver.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/xmlrpc/marshal.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/xmlrpc/parser.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/xmlrpc/server.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/xmlrpc/utils.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/xmlrpc.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/yaml/ x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/yaml/dbm.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/yaml/store.rb x portable-ruby/2.0.0-p648/lib/ruby/2.0.0/yaml.rb x portable-ruby/2.0.0-p648/lib/ruby/gems/ x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/ x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/gems/ x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/gems/rake-0.9.6/ x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/gems/rake-0.9.6/bin/ x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/gems/rake-0.9.6/bin/rake x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/gems/rdoc-4.0.0/ x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/gems/rdoc-4.0.0/bin/ x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/gems/rdoc-4.0.0/bin/rdoc x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/gems/rdoc-4.0.0/bin/ri x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/gems/test-unit-2.0.0.0/ x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/gems/test-unit-2.0.0.0/bin/ x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/gems/test-unit-2.0.0.0/bin/testrb x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/specifications/ x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/specifications/default/ x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/specifications/default/bigdecimal-1.2.0.gemspec x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/specifications/default/io-console-0.4.2.gemspec x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/specifications/default/json-1.7.7.gemspec x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/specifications/default/minitest-4.3.2.gemspec x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/specifications/default/psych-2.0.0.gemspec x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/specifications/default/rake-0.9.6.gemspec x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/specifications/default/rdoc-4.0.0.gemspec x portable-ruby/2.0.0-p648/lib/ruby/gems/2.0.0/specifications/default/test-unit-2.0.0.0.gemspec x portable-ruby/2.0.0-p648/libexec/ x portable-ruby/2.0.0-p648/libexec/cert.pem x portable-ruby/2.0.0-p648/NEWS x portable-ruby/2.0.0-p648/README x portable-ruby/2.0.0-p648/share/ x portable-ruby/2.0.0-p648/share/man/ x portable-ruby/2.0.0-p648/share/man/man1/ x portable-ruby/2.0.0-p648/share/man/man1/erb.1 x portable-ruby/2.0.0-p648/share/man/man1/irb.1 x portable-ruby/2.0.0-p648/share/man/man1/rake.1 x portable-ruby/2.0.0-p648/share/man/man1/ri.1 x portable-ruby/2.0.0-p648/share/man/man1/ruby.1 Error: Failed to upgrade vendor ruby.

mistydemeo commented 6 years ago

@programmingkidx Are you using the latest version of the vendor_ruby branch? The URL that's being downloaded and unpacked in your output doesn't exist in this PR: #510

programmingkidx commented 6 years ago

I am pretty sure I am not using anything recent. Running 'git log' in the /usr/local folder shows that the latest commit is this:

commit 77dcd48fbaf0f6994bd4577b584a3d064a392199 Author: Misty De Meo mistydemeo@gmail.com Date: Sat Jun 3 23:32:16 2017 -0700

Move vendor-curl path to a Homebrewish location

I did try 'git pull', but this error message returned:

fatal: unable to access 'https://github.com/mistydemeo/tigerbrew.git/': error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version

I am thinking the /usr/bin/curl program is being used for many commands. A hack around this issue is probably changing the /usr/bin/curl file to point to the new version that was installed by tigerbrew. Thoughts?

mistydemeo commented 6 years ago

@programmingkidx Can you try doing the following:

  1. Make sure you're using the Tigerbrew-installed git to run git pull; and
  2. If you are, try to brew upgrade git or brew reinstall git to make sure you have a fresh build.
programmingkidx commented 6 years ago

I am using git 2.10.2. I tried all of the brew commands listed above. I saw the same error each time: Error: Failed to upgrade vendor ruby. Error: Failed to install vendor Ruby.

mistydemeo commented 6 years ago

What is the output of which git and ls -l $(which git)?

programmingkidx commented 6 years ago

which git: /usr/local/bin/git ls -l $(which git): lrwxr-xr-x 1 john admin 28 Oct 18 23:19 /usr/local/bin/git -> ../Cellar/git/2.10.2/bin/git

TheCatster commented 6 years ago

I am experiencing similar issues... I am currently upgrading my Mac Mini since it's a '06... I'll attempt to help as well.

mistydemeo commented 6 years ago

@programmingkidx I've built a statically-linked git that you can use to fix this. Here are the downloads:

PowerPC - https://archive.org/download/tigerbrew/portable-git-2.16.2.tiger_g3.bottle.tar.gz Intel - Upload pending, I'll have this ready soon

programmingkidx commented 6 years ago

Thank you. As soon as the Intel version is ready I will try it out for you. The thing is I don't think this is a git issue. There were no indications of errors when using git. Unless the "Error: Failed to upgrade vendor ruby." message is a git problem.

programmingkidx commented 6 years ago

Since Mac OS 10.6 can run PowerPC binaries I decided to install the linked git.

Output of: ls -l $(which git) -r-xr-xr-x 1 john staff 135 Mar 4 14:58 /usr/local/cellar/git/2.16.2/bin/git

Output of: which git /usr/local/cellar/git/2.16.2/bin/git

I just extracted the archive and copied the files to the /usr/local/cellar/git folder. Then I changed the path variable to point to it like this: export PATH=/usr/local/cellar/git/2.16.2/bin:$PATH

I then tried "brew vendor-install ruby --verbose" again and saw the same error message: Error: Failed to upgrade vendor ruby. Creating a new terminal window did not fix the problem.

mistydemeo commented 6 years ago

The reason I suggested using git is that your branch appears to be out of date. :) You will want to make sure that you’ve brought yourself upstream with my branch by performing a git pull using that binary.

mistydemeo commented 6 years ago

Specifically, you’ll want to pull when you’re in /usr/local with the vendor_ruby branch.

programmingkidx commented 6 years ago

'git pull' in the /usr/local folder didn't work. This is the error I see when I 'git pull': fatal: Unable to find remote helper for 'https'

mistydemeo commented 6 years ago

Instead of extracting that git into /usr/local/Cellar/git, how about just running the git via the path from the downloaded tarball? Like ~/Downloads/portable-git/2.16.2/bin/git pull, or equivalent.

programmingkidx commented 6 years ago

I keep seeing this error message: fatal: Unable to find remote helper for 'https'