Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gemspec needed #24

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

Commits on Jul 14, 2014

  1. Raising in equality precludes working with AwesomePrint

    Second comparison of this method in awesome_print/formatter.rb causes
    the crash.
    
    Without this fix, pry + awesome_print cannot be used, as even a simple
    case such as
    
    [1, 2, 3].to_scale
    
    will crash
    
        # Catch all method to format an arbitrary object.
        #------------------------------------------------------------------------------
        def awesome_self(object, type)
          if @options[:raw] && object.instance_variables.any?
            awesome_object(object)
          elsif object == ENV
            awesome_hash(object.to_hash)
          else
            colorize(object.inspect.to_s, type)
          end
        end
    justin808 committed Jul 14, 2014
    Configuration menu
    Copy the full SHA
    bbead39 View commit details
    Browse the repository at this point in the history
  2. Add gemspec

    justin808 committed Jul 14, 2014
    Configuration menu
    Copy the full SHA
    0cf3c34 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ed5bdc4 View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2014

  1. Configuration menu
    Copy the full SHA
    d62ec3d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    288c15c View commit details
    Browse the repository at this point in the history