Skip to content
This repository has been archived by the owner on May 23, 2018. It is now read-only.

Add travis.yml #64

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

Add travis.yml #64

wants to merge 28 commits into from

Commits on May 13, 2016

  1. Add .travis.yml

    The .travis.yml file was copied from the Travis CI Getting started guide
    which can be found in this link:https://docs.travis-ci.com/user/getting-started/
    or on the Travis CI homepage.
    
    The file is added to initialize Travis CI.
    
    Travis CI is a continuous integration service used to test and build
    software. It enables open source projects to be tested.
    https://en.wikipedia.org/wiki/Travis_CI
    Currently the tests are failing due to a false configuration
    in the -travis.yml file. This will be fixed in future commits.
    TheKrixt committed May 13, 2016
    Configuration menu
    Copy the full SHA
    7095aff View commit details
    Browse the repository at this point in the history
  2. Add a new version of ruby to the .travis.yml.

    A new entry was created in the -travis.yml file to enable the
    testing on ruby version 2.1.
    TheKrixt committed May 13, 2016
    Configuration menu
    Copy the full SHA
    781159f View commit details
    Browse the repository at this point in the history

Commits on May 18, 2016

  1. WIP

    TheKrixt committed May 18, 2016
    Configuration menu
    Copy the full SHA
    188f1fb View commit details
    Browse the repository at this point in the history

Commits on May 24, 2016

  1. Updated the bin files as follows

    Looks like your app's ./bin/rails is a stub that was generated by Bundler.
    
    In Rails 4, your app's bin/ directory contains executables that are versioned
    like any other source code, rather than stubs that are generated on demand.
    
    Here's how to upgrade:
    
      bundle config --delete bin    # Turn off Bundler's stub generator
      rake rails:update:bin         # Use the new Rails 4 executables
      git add bin                   # Add bin/ to source control
    
    You may need to remove bin/ from your .gitignore as well.
    
    When you install a gem whose executable you want to use in your app,
    generate it and add it to source control:
    
      bundle binstubs some-gem-name
      git add bin/new-executable
    TheKrixt committed May 24, 2016
    Configuration menu
    Copy the full SHA
    e33ea11 View commit details
    Browse the repository at this point in the history
  2. WIP

    Update spec files.
    TheKrixt committed May 24, 2016
    Configuration menu
    Copy the full SHA
    3669f82 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2016

  1. WIP

    TheKrixt committed May 25, 2016
    Configuration menu
    Copy the full SHA
    b203590 View commit details
    Browse the repository at this point in the history
  2. WIP

    TheKrixt committed May 25, 2016
    Configuration menu
    Copy the full SHA
    bf2fe59 View commit details
    Browse the repository at this point in the history

Commits on May 26, 2016

  1. WIP

    TheKrixt committed May 26, 2016
    Configuration menu
    Copy the full SHA
    b26de19 View commit details
    Browse the repository at this point in the history
  2. WIP

    TheKrixt committed May 26, 2016
    Configuration menu
    Copy the full SHA
    3eac9a8 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2016

  1. WIP

    TheKrixt committed May 27, 2016
    Configuration menu
    Copy the full SHA
    9fef80c View commit details
    Browse the repository at this point in the history
  2. WIP

    Replace "rake" with "rails"
    TheKrixt committed May 27, 2016
    Configuration menu
    Copy the full SHA
    f63de36 View commit details
    Browse the repository at this point in the history
  3. WIP

    TheKrixt committed May 27, 2016
    Configuration menu
    Copy the full SHA
    70acf52 View commit details
    Browse the repository at this point in the history
  4. WIP

    TheKrixt committed May 27, 2016
    Configuration menu
    Copy the full SHA
    f64057b View commit details
    Browse the repository at this point in the history
  5. WIP

    TheKrixt committed May 27, 2016
    Configuration menu
    Copy the full SHA
    df4cba2 View commit details
    Browse the repository at this point in the history
  6. WIP

    TheKrixt committed May 27, 2016
    Configuration menu
    Copy the full SHA
    c0bd187 View commit details
    Browse the repository at this point in the history
  7. WIP

    TheKrixt committed May 27, 2016
    Configuration menu
    Copy the full SHA
    a97443b View commit details
    Browse the repository at this point in the history
  8. WIP

    Database.yml
    TheKrixt committed May 27, 2016
    Configuration menu
    Copy the full SHA
    3f713e8 View commit details
    Browse the repository at this point in the history
  9. WIP

    TheKrixt committed May 27, 2016
    Configuration menu
    Copy the full SHA
    4eea4c9 View commit details
    Browse the repository at this point in the history
  10. WIP

    TheKrixt committed May 27, 2016
    Configuration menu
    Copy the full SHA
    0a836c0 View commit details
    Browse the repository at this point in the history
  11. WIP

    TheKrixt committed May 27, 2016
    Configuration menu
    Copy the full SHA
    4646cd2 View commit details
    Browse the repository at this point in the history
  12. WIP

    Remove: <%= app_secret %>
    TheKrixt committed May 27, 2016
    Configuration menu
    Copy the full SHA
    1796bda View commit details
    Browse the repository at this point in the history
  13. WIP

    TheKrixt committed May 27, 2016
    Configuration menu
    Copy the full SHA
    44e444f View commit details
    Browse the repository at this point in the history
  14. WIP

    TheKrixt committed May 27, 2016
    Configuration menu
    Copy the full SHA
    be3a78c View commit details
    Browse the repository at this point in the history
  15. WIP

    TheKrixt committed May 27, 2016
    Configuration menu
    Copy the full SHA
    d3ae093 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2016

  1. Add gem

    Two gems are added to the Gemfile. This enable the use of capybara and
    byebug.
    TheKrixt committed May 31, 2016
    Configuration menu
    Copy the full SHA
    b7bba7f View commit details
    Browse the repository at this point in the history
  2. Enable capybara

    Exception for deprecated syntax was added.
    Rspec no longer requires "expect" instead of "should".
    TheKrixt committed May 31, 2016
    Configuration menu
    Copy the full SHA
    a3b1e0b View commit details
    Browse the repository at this point in the history
  3. Make byebug work

    The line "require 'byebug'" wasd added to enable byebug
    and to get rid of errors during tests.
    Note:if you wish to use byebug you will have to uncomment the line.
    TheKrixt committed May 31, 2016
    Configuration menu
    Copy the full SHA
    a624151 View commit details
    Browse the repository at this point in the history
  4. WIP

    TheKrixt committed May 31, 2016
    Configuration menu
    Copy the full SHA
    c90b39a View commit details
    Browse the repository at this point in the history