cleaned up organization. dir for classes, dir for command line tools
This commit is contained in:
parent
1bc001832b
commit
75a3a1cb47
11 changed files with 22 additions and 0 deletions
0
.pryrc
Normal file
0
.pryrc
Normal file
13
Dockerfile
Normal file
13
Dockerfile
Normal 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
|
9
effective_testing_with_rspec3_examples/type_me_in.rb
Normal file
9
effective_testing_with_rspec3_examples/type_me_in.rb
Normal 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!"
|
Loading…
Add table
Reference in a new issue