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

Awesome Print vN.... (was v2, but not anymore..) #193

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

Commits on Feb 12, 2015

  1. Remove conditional check against old Ruby versions

    AwesomePrint supports Ruby 1.9.3 or later.
    This remove lot of conditional check against Ruby prior to 1.9.3.
    maurogeorge committed Feb 12, 2015
    Configuration menu
    Copy the full SHA
    7e6e7c0 View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2015

  1. Remove init.rb and rails/init.rb

    Since we support only rails greater than 3.2 we don't need this init
    files.
    maurogeorge committed Feb 19, 2015
    Configuration menu
    Copy the full SHA
    f6fbe02 View commit details
    Browse the repository at this point in the history
  2. Remove the lib/ap.rb

    This ways we need to require always awesome_print
    maurogeorge committed Feb 19, 2015
    Configuration menu
    Copy the full SHA
    c75c058 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cf91f4e View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2015

  1. Split Inspector in 2 files

    Just split in 2 responsabilities. Maybe configuration is not a good
    name. Just a begin to learn more about the code.
    maurogeorge committed Feb 26, 2015
    Configuration menu
    Copy the full SHA
    f5f494b View commit details
    Browse the repository at this point in the history
  2. Extract Array Formatter

    Moved from the Formatter to a single class that do the Array
    formatation.
    maurogeorge committed Feb 26, 2015
    Configuration menu
    Copy the full SHA
    b48989c View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2015

  1. Extract Hash Formmatter

    Moved from the Formatter to a single class that do the Hash
    formatation.
    maurogeorge committed Mar 4, 2015
    Configuration menu
    Copy the full SHA
    141628d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f230268 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c2563be View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2015

  1. Extract Object Formmatter

    Moved from the Formatter to a single class that do the Object
    formatation.
    maurogeorge committed Mar 5, 2015
    Configuration menu
    Copy the full SHA
    9ad2ddb View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2015

  1. Extract Set Formatter

    maurogeorge committed Mar 11, 2015
    Configuration menu
    Copy the full SHA
    708a79c View commit details
    Browse the repository at this point in the history
  2. Extract Struct Formatter

    maurogeorge committed Mar 11, 2015
    Configuration menu
    Copy the full SHA
    ffa2e30 View commit details
    Browse the repository at this point in the history
  3. Extract Class Formatter

    maurogeorge committed Mar 11, 2015
    Configuration menu
    Copy the full SHA
    3470b72 View commit details
    Browse the repository at this point in the history
  4. Extract File Formatter

    maurogeorge committed Mar 11, 2015
    Configuration menu
    Copy the full SHA
    db32b90 View commit details
    Browse the repository at this point in the history
  5. Extract Dir Formatter

    maurogeorge committed Mar 11, 2015
    Configuration menu
    Copy the full SHA
    3e0e124 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2d786cf View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    6ec149d View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    2cbdbc8 View commit details
    Browse the repository at this point in the history
  9. Extract Method Formatter

    maurogeorge committed Mar 11, 2015
    Configuration menu
    Copy the full SHA
    040f129 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    d7fe4c8 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2015

  1. Extract specific methods of array and a hash

    Since we have some methods on formatter that is used only on the array
    and hash moved to a module.
    maurogeorge committed Mar 12, 2015
    Configuration menu
    Copy the full SHA
    4b9f0bf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5a9da75 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e9a4c72 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2426de2 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2015

  1. Configuration menu
    Copy the full SHA
    2cffbaa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    556a1cc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    437857b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8696ec2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2727d38 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b4e782c View commit details
    Browse the repository at this point in the history
  7. Extract Ripple formmatter

    maurogeorge committed Mar 14, 2015
    Configuration menu
    Copy the full SHA
    02982d1 View commit details
    Browse the repository at this point in the history
  8. Extract Sequel formmatter

    maurogeorge committed Mar 14, 2015
    Configuration menu
    Copy the full SHA
    f791021 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    413a350 View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2015

  1. Create FormatterFactory

    Create a factory to call all formatters.
    
    Create a constantize method to handle the instantiation of the class.
    Since the `Object.const_get` brokes on ruby 1.9.3.
    
    The constantize is the same of the ActiveSupport since we need only this
    for the ActiveSupport, copied the method over add a new dependency.
    maurogeorge committed Mar 16, 2015
    Configuration menu
    Copy the full SHA
    05fad93 View commit details
    Browse the repository at this point in the history
  2. Fix NoBrainer specs

    maurogeorge committed Mar 16, 2015
    Configuration menu
    Copy the full SHA
    9c320e6 View commit details
    Browse the repository at this point in the history
  3. Extract Self formatter

    maurogeorge committed Mar 16, 2015
    Configuration menu
    Copy the full SHA
    1def646 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    17abe6d View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2015

  1. Create ActiveRecord type

    maurogeorge committed Mar 17, 2015
    Configuration menu
    Copy the full SHA
    d27284f View commit details
    Browse the repository at this point in the history
  2. Create ActiveSupport type

    maurogeorge committed Mar 17, 2015
    Configuration menu
    Copy the full SHA
    58d618c View commit details
    Browse the repository at this point in the history
  3. Create Mongoid type

    maurogeorge committed Mar 17, 2015
    Configuration menu
    Copy the full SHA
    0f5d96b View commit details
    Browse the repository at this point in the history
  4. Create MongoMapper type

    maurogeorge committed Mar 17, 2015
    Configuration menu
    Copy the full SHA
    4d6e963 View commit details
    Browse the repository at this point in the history
  5. Create NoBrainer type

    maurogeorge committed Mar 17, 2015
    Configuration menu
    Copy the full SHA
    ea274a5 View commit details
    Browse the repository at this point in the history
  6. Create Nokogiri type

    maurogeorge committed Mar 17, 2015
    Configuration menu
    Copy the full SHA
    9168b0d View commit details
    Browse the repository at this point in the history
  7. Create OpenStruct type

    maurogeorge committed Mar 17, 2015
    Configuration menu
    Copy the full SHA
    ab63f91 View commit details
    Browse the repository at this point in the history
  8. Create Ripple type

    maurogeorge committed Mar 17, 2015
    Configuration menu
    Copy the full SHA
    ad175c1 View commit details
    Browse the repository at this point in the history
  9. Create Sequel type

    maurogeorge committed Mar 17, 2015
    Configuration menu
    Copy the full SHA
    9cb3a15 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    7695cfc View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2015

  1. Configuration menu
    Copy the full SHA
    a9629ba View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3f24897 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    188becf View commit details
    Browse the repository at this point in the history
  4. Add missing CHANGELOG

    maurogeorge committed Mar 18, 2015
    Configuration menu
    Copy the full SHA
    4332366 View commit details
    Browse the repository at this point in the history
  5. 2 Configuration menu
    Copy the full SHA
    95c6bfd View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2015

  1. Configuration menu
    Copy the full SHA
    d2a0719 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    de51f83 View commit details
    Browse the repository at this point in the history
  3. Rename Base type to Type

    maurogeorge committed Mar 19, 2015
    Configuration menu
    Copy the full SHA
    896e8f7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a4d960f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1dd896f View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2015

  1. Fix broken specs on AR 4.2.1

    From the 4.2.0 to 4.2.1 the internals of AR have change.
    maurogeorge committed Mar 26, 2015
    Configuration menu
    Copy the full SHA
    a9c6a90 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2015

  1. Configuration menu
    Copy the full SHA
    aef581d View commit details
    Browse the repository at this point in the history