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

Refactor Schemas into LinkedDataFragments Namespace #39

Merged
merged 4 commits into from
Feb 3, 2017

Commits on Feb 1, 2017

  1. Setup Guard

    Adds a generic Guardfile.
    
    `spec_helper.rb` includes a stub on `Setting` in a before(:each), which
    prevents various spec files from running without the rest of the
    suite. This pattern also has the issue that it stubs
    `Setting#cache_backend` without warning to developers, giving unexpected
    results. We should find a way to remove it. See #38.
    
    In the meanwhile, we introduce a guard to prevent errors, and allow
    modules that don't depend on `Setting` to be tested independently.
    Tom Johnson committed Feb 1, 2017
    Configuration menu
    Copy the full SHA
    bd5b40f View commit details
    Browse the repository at this point in the history
  2. [GUARD] Watch lib

    Tom Johnson committed Feb 1, 2017
    Configuration menu
    Copy the full SHA
    f8ed4d0 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2017

  1. Remove schemas from app

    Replaces `app` schemas with those in `lib`. This breaks backward
    compatibility for any clients referring directly to the schema
    constants. It's otherwise a simple refactor.
    Tom Johnson committed Feb 2, 2017
    Configuration menu
    Copy the full SHA
    52c72c5 View commit details
    Browse the repository at this point in the history
  2. Support schemas via lib/linked_data_fragments

    This is the first step in a refactoring to move schemas to lib. Adds
    tests for the schemas.
    Tom Johnson committed Feb 2, 2017
    Configuration menu
    Copy the full SHA
    8fbe5a0 View commit details
    Browse the repository at this point in the history