-
Notifications
You must be signed in to change notification settings - Fork 260
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into webpacker
Updates the 'webpacker' branch to use Ruby 2.3.7
- Loading branch information
Showing
13 changed files
with
144 additions
and
166 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.3.1 | ||
2.3.7 |
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 |
---|---|---|
@@ -1,6 +1,15 @@ | ||
env: | ||
global: | ||
- CC_TEST_REPORTER_ID=c18df080592f9c99ca8080a6d5e052aa5fd3964044a0fe0b71e48f8e18998dc2 | ||
language: ruby | ||
services: docker | ||
before_install: | ||
- docker-compose build | ||
before_script: | ||
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter | ||
- chmod +x ./cc-test-reporter | ||
- ./cc-test-reporter before-build | ||
script: | ||
- docker-compose run -e "RAILS_ENV=test" web rake db:test:prepare spec | ||
after_script: | ||
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT --prefix /refugerestrooms |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ruby:2.3.1 | ||
FROM ruby:2.3.7 | ||
ENV PHANTOM_JS=2.1.1 | ||
|
||
# Add the apt repository for yarn | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
source 'https://rubygems.org' | ||
ruby '2.3.1' | ||
ruby '2.3.7' | ||
|
||
gem 'rails', '5.1.4' | ||
gem 'pg' | ||
|
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 |
---|---|---|
|
@@ -413,7 +413,7 @@ DEPENDENCIES | |
webpacker (~> 3.5) | ||
|
||
RUBY VERSION | ||
ruby 2.3.1p112 | ||
ruby 2.3.7p456 | ||
|
||
BUNDLED WITH | ||
1.15.3 |
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,107 @@ | ||
// Restrooms List | ||
.restrooms-list { | ||
display: block; | ||
padding: 0; | ||
list-style: none; | ||
|
||
.listItem { | ||
display: block; | ||
width: 100%; | ||
padding-bottom: 1em; | ||
margin-bottom: 1em; | ||
border-bottom: 1px solid $gray; | ||
&:last-child { | ||
border-bottom: none; | ||
} | ||
} | ||
|
||
.listItemImage { | ||
display: inline-block; | ||
vertical-align: top; | ||
float: left; | ||
margin: 0.25em 1%; | ||
width: 8%; | ||
height: 8vw; | ||
background: #41326b asset-url("ToiletLogo.png") 50% 50% no-repeat; | ||
background-size: 60%; | ||
border-radius: $rounded-corners; | ||
} | ||
|
||
.itemInfo { | ||
display: inline-block; | ||
vertical-align: top; | ||
float: left; | ||
width: 58%; | ||
margin: 0 1%; | ||
|
||
a { | ||
font-size: 15px; | ||
} | ||
|
||
.itemStreet { | ||
margin-bottom: 0.5em; | ||
font-size: 14px; | ||
} | ||
|
||
.itemRating { | ||
width: 60%; | ||
min-width: 105px; | ||
max-width: 150px; | ||
border-radius: $rounded-corners; | ||
color: #FFF; | ||
text-align: center; | ||
font-family: $font-stack; | ||
font-size: 14px; | ||
padding: 0.5em; | ||
margin: 0; | ||
} | ||
} | ||
|
||
.itemExtraInfo { | ||
display: inline-block; | ||
vertical-align: top; | ||
float: right; | ||
width: 27%; | ||
margin: 0 0.5%; | ||
|
||
.itemDistance { | ||
font-size: 12px; | ||
padding-bottom: 1em; | ||
text-align: right; | ||
} | ||
} | ||
|
||
.itemIcons { | ||
text-align: right; | ||
|
||
> * { | ||
display: inline-block; | ||
} | ||
} | ||
|
||
|
||
@include tablet { | ||
.listItemImage { | ||
width: 55px; | ||
height: 55px; | ||
} | ||
} | ||
|
||
@include desktop { | ||
.listItemImage { | ||
width: 55px; | ||
height: 55px; | ||
} | ||
.itemInfo { | ||
margin: 0 0.5%; | ||
.itemName { | ||
a { | ||
font-size: 18px; | ||
} | ||
} | ||
.itemStreet { | ||
font-size: 15px; | ||
} | ||
} | ||
} | ||
} |
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