Skip to content

Instantly share code, notes, and snippets.

@roolo
Created January 27, 2012 19:44
Show Gist options
  • Save roolo/1690552 to your computer and use it in GitHub Desktop.
Save roolo/1690552 to your computer and use it in GitHub Desktop.
Rails 3.2 new app seg fault

Description

It seems Rails 3.2 running on Ruby 1.9.3 crash when creating a new app. Specifically bundler crash.

Solution

The only solution which i have so far is to use Ruby 1.9.2 for Rails 3.2 app instead of using Ruby 1.9.3

Environment

  • rvm 1.10.2
  • Mac OS X 10.7.2
  • Ruby
    • 1.9.2
    • 1.9.3
╭─mailo@krasimir /private/tmp ‹ruby-1.9.2@rails32app-1.9.2›
╰─$ rails new rails32app-1.9.2
create
create README.rdoc
create Rakefile
create config.ru
create .gitignore
create Gemfile
create app
create app/assets/images/rails.png
create app/assets/javascripts/application.js
create app/assets/stylesheets/application.css
create app/controllers/application_controller.rb
create app/helpers/application_helper.rb
create app/mailers
create app/models
create app/views/layouts/application.html.erb
create app/mailers/.gitkeep
create app/models/.gitkeep
create config
create config/routes.rb
create config/application.rb
create config/environment.rb
create config/environments
create config/environments/development.rb
create config/environments/production.rb
create config/environments/test.rb
create config/initializers
create config/initializers/backtrace_silencers.rb
create config/initializers/inflections.rb
create config/initializers/mime_types.rb
create config/initializers/secret_token.rb
create config/initializers/session_store.rb
create config/initializers/wrap_parameters.rb
create config/locales
create config/locales/en.yml
create config/boot.rb
create config/database.yml
create db
create db/seeds.rb
create doc
create doc/README_FOR_APP
create lib
create lib/tasks
create lib/tasks/.gitkeep
create lib/assets
create lib/assets/.gitkeep
create log
create log/.gitkeep
create public
create public/404.html
create public/422.html
create public/500.html
create public/favicon.ico
create public/index.html
create public/robots.txt
create script
create script/rails
create test/fixtures
create test/fixtures/.gitkeep
create test/functional
create test/functional/.gitkeep
create test/integration
create test/integration/.gitkeep
create test/unit
create test/unit/.gitkeep
create test/performance/browsing_test.rb
create test/test_helper.rb
create tmp/cache
create tmp/cache/assets
create vendor/assets/javascripts
create vendor/assets/javascripts/.gitkeep
create vendor/assets/stylesheets
create vendor/assets/stylesheets/.gitkeep
create vendor/plugins
create vendor/plugins/.gitkeep
run bundle install
Fetching source index for https://rubygems.org/
Using rake (0.9.2.2)
Using i18n (0.6.0)
Using multi_json (1.0.4)
Using activesupport (3.2.1)
Using builder (3.0.0)
Using activemodel (3.2.1)
Using erubis (2.7.0)
Using journey (1.0.1)
Using rack (1.4.1)
Using rack-cache (1.1)
Using rack-test (0.6.1)
Using hike (1.2.1)
Using tilt (1.3.3)
Using sprockets (2.1.2)
Using actionpack (3.2.1)
Using mime-types (1.17.2)
Using polyglot (0.3.3)
Using treetop (1.4.10)
Using mail (2.4.1)
Using actionmailer (3.2.1)
Using arel (3.0.0)
Using tzinfo (0.3.31)
Using activerecord (3.2.1)
Using activeresource (3.2.1)
Using bundler (1.0.21)
Installing coffee-script-source (1.2.0)
Installing execjs (1.3.0)
Installing coffee-script (2.2.0)
Using rack-ssl (1.3.2)
Using json (1.6.5)
Using rdoc (3.12)
Using thor (0.14.6)
Using railties (3.2.1)
Installing coffee-rails (3.2.2)
Installing jquery-rails (2.0.0)
Using rails (3.2.1)
Installing sass (3.1.12)
Installing sass-rails (3.2.4)
Installing sqlite3 (1.3.5) with native extensions
Installing uglifier (1.2.3)
Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed.
╭─mailo@krasimir /private/tmp ‹ruby-1.9.2@rails32app-1.9.2›
╰─$ cd rails32app-1.9.2
╭─mailo@krasimir /private/tmp/rails32app-1.9.2 ‹ruby-1.9.2@rails32app-1.9.2›
╰─$ rails s
=> Booting WEBrick
=> Rails 3.2.1 application starting in development on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
[2012-01-30 17:52:14] INFO WEBrick 1.3.1
[2012-01-30 17:52:14] INFO ruby 1.9.2 (2011-07-09) [x86_64-darwin11.2.0]
[2012-01-30 17:52:14] INFO WEBrick::HTTPServer#start: pid=34796 port=3000
Started GET "/assets/rails.png" for 127.0.0.1 at 2012-01-30 17:52:25 +0100
Served asset /rails.png - 200 OK (6ms)
^C[2012-01-30 17:53:00] INFO going to shutdown ...
[2012-01-30 17:53:00] INFO WEBrick::HTTPServer#start done.
Exiting
╭─mailo@krasimir /tmp ‹ruby-1.9.3@rails32›
╰─$ rails new rails32app
create
create README.rdoc
create Rakefile
create config.ru
create .gitignore
create Gemfile
create app
create app/assets/images/rails.png
create app/assets/javascripts/application.js
create app/assets/stylesheets/application.css
create app/controllers/application_controller.rb
create app/helpers/application_helper.rb
create app/mailers
create app/models
create app/views/layouts/application.html.erb
create app/mailers/.gitkeep
create app/models/.gitkeep
create config
create config/routes.rb
create config/application.rb
create config/environment.rb
create config/environments
create config/environments/development.rb
create config/environments/production.rb
create config/environments/test.rb
create config/initializers
create config/initializers/backtrace_silencers.rb
create config/initializers/inflections.rb
create config/initializers/mime_types.rb
create config/initializers/secret_token.rb
create config/initializers/session_store.rb
create config/initializers/wrap_parameters.rb
create config/locales
create config/locales/en.yml
create config/boot.rb
create config/database.yml
create db
create db/seeds.rb
create doc
create doc/README_FOR_APP
create lib
create lib/tasks
create lib/tasks/.gitkeep
create lib/assets
create lib/assets/.gitkeep
create log
create log/.gitkeep
create public
create public/404.html
create public/422.html
create public/500.html
create public/favicon.ico
create public/index.html
create public/robots.txt
create script
create script/rails
create test/fixtures
create test/fixtures/.gitkeep
create test/functional
create test/functional/.gitkeep
create test/integration
create test/integration/.gitkeep
create test/unit
create test/unit/.gitkeep
create test/performance/browsing_test.rb
create test/test_helper.rb
create tmp/cache
create tmp/cache/assets
create vendor/assets/javascripts
create vendor/assets/javascripts/.gitkeep
create vendor/assets/stylesheets
create vendor/assets/stylesheets/.gitkeep
create vendor/plugins
create vendor/plugins/.gitkeep
run bundle install
/Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/net/http.rb:799: [BUG] Segmentation fault
ruby 1.9.3p0 (2011-10-30 revision 33570) [x86_64-darwin11.2.0]
-- Control frame information -----------------------------------------------
c:0042 p:---- s:0226 b:0226 l:000225 d:000225 CFUNC :connect
c:0041 p:0011 s:0223 b:0223 l:000ab0 d:000222 BLOCK /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/net/http.rb:799
c:0040 p:0031 s:0221 b:0221 l:000220 d:000220 METHOD /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/timeout.rb:54
c:0039 p:0026 s:0209 b:0209 l:000208 d:000208 METHOD /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/timeout.rb:99
c:0038 p:0485 s:0203 b:0203 l:000ab0 d:000ab0 METHOD /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/net/http.rb:799
c:0037 p:0011 s:0195 b:0195 l:000194 d:000194 METHOD /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/net/http.rb:755
c:0036 p:0089 s:0192 b:0192 l:000191 d:000191 METHOD /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/net/http.rb:750
c:0035 p:0262 s:0189 b:0189 l:000188 d:000188 METHOD /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/remote_fetcher.rb:321
c:0034 p:0209 s:0181 b:0181 l:000180 d:000180 METHOD /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/remote_fetcher.rb:368
c:0033 p:0060 s:0167 b:0167 l:000166 d:000166 METHOD /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/remote_fetcher.rb:203
c:0032 p:0149 s:0157 b:0157 l:000156 d:000156 METHOD /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/remote_fetcher.rb:231
c:0031 p:0188 s:0149 b:0149 l:000148 d:000148 METHOD /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/spec_fetcher.rb:265
c:0030 p:0058 s:0137 b:0135 l:000126 d:000134 BLOCK /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/spec_fetcher.rb:231
c:0029 p:---- s:0132 b:0132 l:000131 d:000131 FINISH
c:0028 p:---- s:0130 b:0130 l:000129 d:000129 CFUNC :each
c:0027 p:0091 s:0127 b:0127 l:000126 d:000126 METHOD /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/spec_fetcher.rb:227
c:0026 p:0031 s:0118 b:0118 l:000117 d:000117 METHOD /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/source.rb:253
c:0025 p:0063 s:0114 b:0114 l:0012b8 d:001420 BLOCK /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/source.rb:234
c:0024 p:---- s:0111 b:0111 l:000110 d:000110 FINISH
c:0023 p:---- s:0109 b:0109 l:000108 d:000108 CFUNC :each
c:0022 p:0073 s:0106 b:0106 l:0012b8 d:0012b8 METHOD /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/source.rb:231
c:0021 p:0018 s:0101 b:0101 l:000100 d:000100 METHOD /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/source.rb:165
c:0020 p:0025 s:0097 b:0097 l:000096 d:000096 METHOD /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/source.rb:70
c:0019 p:0014 s:0094 b:0093 l:000077 d:000092 BLOCK /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/definition.rb:159
c:0018 p:---- s:0090 b:0090 l:000089 d:000089 FINISH
c:0017 p:---- s:0088 b:0088 l:000087 d:000087 CFUNC :each
c:0016 p:0011 s:0085 b:0085 l:000077 d:000084 BLOCK /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/definition.rb:158
c:0015 p:0020 s:0082 b:0082 l:000081 d:000081 METHOD /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/index.rb:7
c:0014 p:0031 s:0078 b:0078 l:000077 d:000077 METHOD /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/definition.rb:157
c:0013 p:0104 s:0075 b:0072 l:000071 d:000071 METHOD /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/definition.rb:151
c:0012 p:0027 s:0067 b:0067 l:000066 d:000066 METHOD /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/definition.rb:90
c:0011 p:0047 s:0061 b:0061 l:000060 d:000060 METHOD /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/definition.rb:85
c:0010 p:0293 s:0058 b:0058 l:000057 d:000057 METHOD /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/installer.rb:43
c:0009 p:0033 s:0052 b:0052 l:000051 d:000051 METHOD /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/installer.rb:8
c:0008 p:0957 s:0045 b:0045 l:000044 d:000044 METHOD /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/cli.rb:219
c:0007 p:0036 s:0036 b:0036 l:000035 d:000035 METHOD /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/task.rb:22
c:0006 p:0071 s:0030 b:0030 l:000029 d:000029 METHOD /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/invocation.rb:118
c:0005 p:0221 s:0024 b:0024 l:000023 d:000023 METHOD /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor.rb:263
c:0004 p:0082 s:0013 b:0013 l:000012 d:000012 METHOD /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/base.rb:386
c:0003 p:0054 s:0007 b:0007 l:002138 d:002010 EVAL /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/bin/bundle:13
c:0002 p:---- s:0004 b:0004 l:000003 d:000003 FINISH
c:0001 p:0000 s:0002 b:0002 l:002138 d:002138 TOP
-- Ruby level backtrace information ----------------------------------------
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/bin/bundle:13:in `<main>'
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/base.rb:386:in `start'
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor.rb:263:in `dispatch'
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/invocation.rb:118:in `invoke_task'
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/task.rb:22:in `run'
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/cli.rb:219:in `install'
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/installer.rb:8:in `install'
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/installer.rb:43:in `run'
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/definition.rb:85:in `resolve_remotely!'
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/definition.rb:90:in `specs'
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/definition.rb:151:in `resolve'
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/definition.rb:157:in `index'
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/index.rb:7:in `build'
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/definition.rb:158:in `block in index'
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/definition.rb:158:in `each'
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/definition.rb:159:in `block (2 levels) in index'
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/source.rb:70:in `specs'
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/source.rb:165:in `fetch_specs'
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/source.rb:231:in `remote_specs'
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/source.rb:231:in `each'
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/source.rb:234:in `block in remote_specs'
/Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/source.rb:253:in `fetch_all_remote_specs'
/Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/spec_fetcher.rb:227:in `list'
/Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/spec_fetcher.rb:227:in `each'
/Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/spec_fetcher.rb:231:in `block in list'
/Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/spec_fetcher.rb:265:in `load_specs'
/Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/remote_fetcher.rb:231:in `fetch_path'
/Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/remote_fetcher.rb:203:in `fetch_http'
/Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/remote_fetcher.rb:368:in `request'
/Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/remote_fetcher.rb:321:in `connection_for'
/Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/net/http.rb:750:in `start'
/Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/net/http.rb:755:in `do_start'
/Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/net/http.rb:799:in `connect'
/Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/timeout.rb:99:in `timeout'
/Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
/Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/net/http.rb:799:in `block in connect'
/Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/net/http.rb:799:in `connect'
-- C level backtrace information -------------------------------------------
See Crash Report log file under ~/Library/Logs/CrashReporter or
/Library/Logs/CrashReporter, for the more detail of.
-- Other runtime information -----------------------------------------------
* Loaded script: /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/bin/bundle
* Loaded features:
0 enumerator.so
1 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/x86_64-darwin11.2.0/enc/encdb.bundle
2 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/x86_64-darwin11.2.0/enc/trans/transdb.bundle
3 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/defaults.rb
4 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/x86_64-darwin11.2.0/rbconfig.rb
5 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/deprecate.rb
6 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/exceptions.rb
7 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb
8 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems.rb
9 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/ubygems.rb
10 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/version.rb
11 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/requirement.rb
12 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/platform.rb
13 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb
14 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/path_support.rb
15 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/dependency.rb
16 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/x86_64-darwin11.2.0/etc.bundle
17 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/fileutils.rb
18 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/x86_64-darwin11.2.0/pathname.bundle
19 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/pathname.rb
20 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/x86_64-darwin11.2.0/psych.bundle
21 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/x86_64-darwin11.2.0/stringio.bundle
22 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/nodes/node.rb
23 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/nodes/stream.rb
24 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/nodes/document.rb
25 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/nodes/sequence.rb
26 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/nodes/scalar.rb
27 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/nodes/mapping.rb
28 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/nodes/alias.rb
29 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/nodes.rb
30 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/streaming.rb
31 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/visitor.rb
32 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/x86_64-darwin11.2.0/strscan.bundle
33 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/scalar_scanner.rb
34 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb
35 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/emitter.rb
36 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/yaml_tree.rb
37 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/json/ruby_events.rb
38 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/json_tree.rb
39 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/depth_first.rb
40 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors.rb
41 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/handler.rb
42 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/tree_builder.rb
43 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/parser.rb
44 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/omap.rb
45 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/set.rb
46 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/coder.rb
47 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/core_ext.rb
48 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/x86_64-darwin11.2.0/date_core.bundle
49 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/date/format.rb
50 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/date.rb
51 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/deprecated.rb
52 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/json.rb
53 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych.rb
54 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/yaml.rb
55 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/rubygems_ext.rb
56 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/config_file.rb
57 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/syck_hack.rb
58 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/rubygems_integration.rb
59 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/version.rb
60 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler.rb
61 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rb
62 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/core_ext/ordered_hash.rb
63 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/error.rb
64 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/shell.rb
65 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/invocation.rb
66 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/parser/argument.rb
67 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/parser/arguments.rb
68 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/parser/option.rb
69 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/parser/options.rb
70 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/parser.rb
71 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/task.rb
72 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/util.rb
73 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/base.rb
74 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor.rb
75 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/uri/common.rb
76 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/uri/generic.rb
77 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/uri/ftp.rb
78 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/uri/http.rb
79 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/uri/https.rb
80 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/uri/ldap.rb
81 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/uri/ldaps.rb
82 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/uri/mailto.rb
83 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/uri.rb
84 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/core_ext/file_binary_read.rb
85 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/actions/empty_directory.rb
86 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/actions/create_file.rb
87 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/actions/create_link.rb
88 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/actions/directory.rb
89 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/erb.rb
90 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/time.rb
91 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/open-uri.rb
92 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/actions/file_manipulation.rb
93 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/actions/inject_into_file.rb
94 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/actions.rb
95 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendored_thor.rb
96 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/user_interaction.rb
97 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/cli.rb
98 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/delegate.rb
99 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/tmpdir.rb
100 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/thread.rb
101 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/tempfile.rb
102 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/shell/basic.rb
103 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/vendor/thor/shell/color.rb
104 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/ui.rb
105 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/settings.rb
106 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/shared_helpers.rb
107 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/tsort.rb
108 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/dependency_list.rb
109 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/package/f_sync_dir.rb
110 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/package/tar_header.rb
111 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/x86_64-darwin11.2.0/enc/iso_8859_1.bundle
112 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/x86_64-darwin11.2.0/zlib.bundle
113 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/package/tar_input.rb
114 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/package/tar_output.rb
115 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/package/tar_reader/entry.rb
116 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/package/tar_reader.rb
117 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/package/tar_writer.rb
118 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/package.rb
119 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/format.rb
120 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/ext/builder.rb
121 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/ext/configure_builder.rb
122 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/optparse.rb
123 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/command.rb
124 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/ext/ext_conf_builder.rb
125 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/ext/rake_builder.rb
126 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/ext.rb
127 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/require_paths_builder.rb
128 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/installer.rb
129 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/remote_fetcher.rb
130 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/errors.rb
131 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/text.rb
132 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/spec_fetcher.rb
133 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/dependency_installer.rb
134 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/environment.rb
135 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/installer.rb
136 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/x86_64-darwin11.2.0/digest.bundle
137 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/digest.rb
138 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/x86_64-darwin11.2.0/digest/sha1.bundle
139 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/definition.rb
140 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/dependency.rb
141 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/dsl.rb
142 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/open3.rb
143 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/gem_installer.rb
144 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/source.rb
145 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/forwardable.rb
146 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/spec_set.rb
147 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/set.rb
148 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/resolver.rb
149 /Users/mailo/.rvm/gems/ruby-1.9.3-p0@global/gems/bundler-1.0.21/lib/bundler/index.rb
150 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/x86_64-darwin11.2.0/socket.bundle
151 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/socket.rb
152 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/timeout.rb
153 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/net/protocol.rb
154 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/net/http.rb
155 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/x86_64-darwin11.2.0/openssl.bundle
156 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/openssl/bn.rb
157 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/openssl/cipher.rb
158 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/openssl/config.rb
159 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/openssl/digest.rb
160 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/openssl/buffering.rb
161 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/x86_64-darwin11.2.0/fcntl.bundle
162 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/openssl/ssl-internal.rb
163 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/openssl/x509-internal.rb
164 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/openssl.rb
165 /Users/mailo/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/net/https.rb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment