Last active
August 10, 2019 16:02
-
-
Save gingerlime/34e309b093a1abd077833578bb660fe0 to your computer and use it in GitHub Desktop.
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
version: '3' | |
services: | |
web: | |
image: ruby:2.5.3 | |
tty: true | |
stdin_open: true | |
command: bash -c "bundle && irb" | |
volumes: | |
- .:/app | |
- /tmp/:/tmp | |
working_dir: /app |
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
source "https://rubygems.org" | |
gem "rubocop", :require => false |
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
STR = "abc" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment