cleaned up organization. dir for classes, dir for command line tools

This commit is contained in:
booboy 2019-04-28 01:38:16 -05:00
parent 1bc001832b
commit 75a3a1cb47
11 changed files with 22 additions and 0 deletions

0
.pryrc Normal file
View file

13
Dockerfile Normal file
View file

@ -0,0 +1,13 @@
FROM ruby:2.4
RUN mkdir /usr/src/app
ADD . /usr/src/app/
WORKDIR /usr/src/app/
RUN gem update --system
RUN gem install bundler
RUN gem install pry
WORKDIR /usr/src/app
CMD pry

View file

@ -0,0 +1,9 @@
#---
# Excerpted from "Effective Testing with RSpec 3",
# published by The Pragmatic Bookshelf.
# Copyrights apply to this code. It may not be used to create training material,
# courses, books, articles, and the like. Contact us if you are in doubt.
# We make no guarantees that this code is fit for any purpose.
# Visit http://www.pragmaticprogrammer.com/titles/rspec3 for more book information.
#---
puts "You can type me in; it's okay!"