Advertisement
beast_code

rbenv

Jun 27th, 2014
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 2.98 KB | None | 0 0
  1. |11:17:49| ~ ruby -v
  2. ruby 2.0.0p451 (2014-02-24 revision 45167) [universal.x86_64-darwin13]
  3. |13:44:09| ~ which rbenv
  4. rbenv () {
  5.     typeset command
  6.     command="$1"
  7.     if [ "$#" -gt 0 ]
  8.     then
  9.         shift
  10.     fi
  11.     case "$command" in
  12.         (rehash|shell) eval `rbenv "sh-$command" "$@"` ;;
  13.         (*) command rbenv "$command" "$@" ;;
  14.     esac
  15. }
  16. |13:44:22| ~ rails -v
  17. Could not find nokogiri-1.6.1 in any of the sources
  18. Run `bundle install` to install missing gems.
  19. |13:44:41| ~ cd
  20. |13:44:56| ~ rails -v
  21. Rails 4.1.1
  22. |13:44:59| ~ brew doctor
  23. Please note that these warnings are just used to help the Homebrew maintainers
  24. with debugging if you file an issue. If everything you use Homebrew for is
  25. working fine: please don't worry and just ignore them. Thanks!
  26.  
  27. Warning: Python is installed at /Library/Frameworks/Python.framework
  28.  
  29. Homebrew only supports building against the System-provided Python or a
  30. brewed Python. In particular, Pythons installed to /Library can interfere
  31. with other software installs.
  32.  
  33. Warning: Some keg-only formula are linked into the Cellar.
  34. Linking a keg-only formula, such as gettext, into the cellar with
  35. `brew link <formula>` will cause other formulae to detect them during
  36. the `./configure` step. This may cause problems when compiling those
  37. other formulae.
  38.  
  39. Binaries provided by keg-only formulae may override system binaries
  40. with other strange results.
  41.  
  42. You may wish to `brew unlink` these brews:
  43.  
  44.    openssl
  45.  
  46. Warning: /Library/Frameworks/Mono.framework detected
  47. This can be picked up by CMake's build system and likely cause the build to
  48. fail. You may need to move this file out of the way to compile CMake.
  49.  
  50. Warning: Unbrewed dylibs were found in /usr/local/lib.
  51. If you didn't put them there on purpose they could cause problems when
  52. building Homebrew formulae, and may need to be deleted.
  53.  
  54. Unexpected dylibs:
  55.    /usr/local/lib/libmacfuse_i32.2.dylib
  56.    /usr/local/lib/libmacfuse_i64.2.dylib
  57.    /usr/local/lib/libosxfuse_i32.2.dylib
  58.    /usr/local/lib/libosxfuse_i64.2.dylib
  59.  
  60. Warning: Unbrewed .la files were found in /usr/local/lib.
  61. If you didn't put them there on purpose they could cause problems when
  62. building Homebrew formulae, and may need to be deleted.
  63.  
  64. Unexpected .la files:
  65.     /usr/local/lib/libosxfuse_i32.la
  66.     /usr/local/lib/libosxfuse_i64.la
  67.  
  68. Warning: Unbrewed .pc files were found in /usr/local/lib/pkgconfig.
  69. If you didn't put them there on purpose they could cause problems when
  70. building Homebrew formulae, and may need to be deleted.
  71.  
  72. Unexpected .pc files:
  73.    /usr/local/lib/pkgconfig/osxfuse.pc
  74.  
  75. Warning: Some keg-only formula are linked into the Cellar.
  76. Linking a keg-only formula, such as gettext, into the cellar with
  77. `brew link <formula>` will cause other formulae to detect them during
  78. the `./configure` step. This may cause problems when compiling those
  79. other formulae.
  80.  
  81. Binaries provided by keg-only formulae may override system binaries
  82. with other strange results.
  83.  
  84. You may wish to `brew unlink` these brews:
  85.  
  86.    openssl
  87. |13:45:58| ~
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement