-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #274 from costa/issue-273-add_to_color_scheme
add to color scheme
- Loading branch information
Showing
10 changed files
with
65 additions
and
8 deletions.
There are no files selected for viewing
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash -e | ||
test "$#" -ne 0 && echo "Unsupported args: $@" >&2 && exit 145 | ||
cd "$( dirname "${BASH_SOURCE[0]}" )"/.. | ||
|
||
export COMPOSE_FILE=test/docker-compose.yml | ||
export COMPOSE_PROJECT_NAME=highline_dev | ||
|
||
docker compose rm -svf | ||
docker compose build --force-rm | ||
|
||
docker compose run --rm tester && docker compose rm -svf || ( docker compose logs && exit 1 ) |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
|
||
class HighLine | ||
# The version of the installed library. | ||
VERSION = "3.1.0".freeze | ||
VERSION = "3.1.1".freeze | ||
end |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM ruby | ||
|
||
WORKDIR /highline | ||
|
||
|
||
RUN bash -ec 'apt update; apt -y install cmake' | ||
|
||
ADD Gemfile highline.gemspec .git* ./ | ||
ADD lib/highline/version.rb ./lib/highline/version.rb | ||
RUN bundle install | ||
|
||
ADD . . | ||
|
||
ENTRYPOINT ["bundle", "exec"] | ||
CMD ["bash", "-ec", "rake test; rake acceptance; pronto run"] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
services: | ||
tester: | ||
build: | ||
context: .. | ||
dockerfile: test/Dockerfile |
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