This repository has been archived by the owner on May 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Add travis.yml #64
Open
ghost
wants to merge
28
commits into
tralles:master
Choose a base branch
from
unknown repository
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Add travis.yml #64
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
A new entry was created in the -travis.yml file to enable the testing on ruby version 2.1.
@KRIXT, what do we have to do to integrate with Travis CI? Get an account? Additionally, the plan is to first add some working tests/specs which Travis CI then can run, right? |
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
Exception for deprecated syntax was added. Rspec no longer requires "expect" instead of "should".
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.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.