1. 28 May, 2014 2 commits
  2. 26 May, 2014 1 commit
  3. 25 May, 2014 2 commits
    • Sean McCann's avatar
      Move aliases to 'custom' section of .zshrc template · 1ad1c527
      Sean McCann authored
      By convention, user-specific aliases are kept in each user's .zshrc
      file. The .zshrc template provided by oh-my-zsh has an area for example
      aliases, though these were being loaded before other aliases in libs, plugins,
      and themes. As a result, personal aliases could be overwritten by these
      other aliases as they are loaded. To make personal customization easier, the
      sample aliases section of the .zshrc template has been moved to the area
      dedicated for personal customization. This section of the configuration
      is processed after all other items are loaded, preventing personal aliases
      and exports from being inadvertently clobbered by oh-my-zsh.
      1ad1c527
    • pangratz's avatar
      Fix function/alias naming clash between bower and bundle plugin · c0b094cf
      pangratz authored
      Since the `bower` plugin specifies a `bi` alias and `bundle` plugin
      specifies a `bi` function, there is a name clash when using both
      plugins, which results in the message "Can't 'bundle install' outside a
      bundled project" when trying to execute `bower`.
      
      This adresses #2486
      c0b094cf
  4. 24 May, 2014 10 commits
  5. 16 May, 2014 1 commit
  6. 15 May, 2014 1 commit
  7. 06 May, 2014 4 commits
    • Ingo Renner's avatar
      [FEATURE] Support vagrant global-status · 30d9952b
      Ingo Renner authored
      Vagrant 1.6 introduced the `global-status` command which allows
      to get a quick overview of all active Vagrant environments for the
      currently logged in user.
      30d9952b
    • Ingo Renner's avatar
      [FEATURE] Support Vagrant Cloud commands · 7f8ee9aa
      Ingo Renner authored
      Vagrant 1.5 added Vagrant Cloud to share boxes. Some boxes
      may be protected, the `login` command allows to access those
      protected boxes from Vagrant Cloud.
      7f8ee9aa
    • Ingo Renner's avatar
      [FEATURE] Support Vagrant Share · 38fe100e
      Ingo Renner authored
      Vagrant 1.5 introduced Vagrant Share to allow remote access to a Vagrant
      environment. This adds support for the `share` and `connect` commands.
      38fe100e
    • Ingo Renner's avatar
      [FEATURE] Support Vagrant 1.6 version command · 236c8de7
      Ingo Renner authored
      Vagrant 1.6 introduces a couple new commands, including the `version` command.
      The `version` command shows the currently installed version information and
      also checks for new updates available.
      236c8de7
  8. 19 Apr, 2014 10 commits
  9. 18 Apr, 2014 5 commits
  10. 05 Apr, 2014 1 commit
  11. 04 Apr, 2014 1 commit
    • DeLynn Berry's avatar
      Remove mailcatcher · 7d696f79
      DeLynn Berry authored
      The mailcatcher gem does not work correctly when executed through Bundler.
      7d696f79
  12. 31 Mar, 2014 1 commit
  13. 30 Mar, 2014 1 commit
    • Henrik Holm's avatar
      Correct redirection of output from 'hash' · f46d06da
      Henrik Holm authored
      The intention of the redirection to /dev/null is to hide the output
      'hash: no such command: git' since we rely on the exit status.
      
      However, the output goes to stderr, so it's stderr that needs to be
      redirected. For completeness, we redirect both stderr and stdout using
      '2>&1'.
      
      Example:
      
        [~]$ hash git > /dev/null
        [~]$ PATH=''
        [~]$ hash git > /dev/null
        hash: no such command: git
        [~]$ hash git > /dev/null 2>&1
        [~]$
      f46d06da