From 39839bce092f504382e1921481ac45704ad4cb2d Mon Sep 17 00:00:00 2001 From: Tim Rinkerman Date: Mon, 8 Jun 2020 17:06:53 +0000 Subject: [PATCH] Done. --- Gemfile.lock | 32 ++++++++++++++++++++++++++++++++ lib/your_solution.rb | 2 +- 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 Gemfile.lock diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..da4e806 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,32 @@ +GEM + remote: https://rubygems.org/ + specs: + coderay (1.1.3) + diff-lcs (1.3) + method_source (1.0.0) + pry (0.13.1) + coderay (~> 1.1) + method_source (~> 1.0) + rspec (3.9.0) + rspec-core (~> 3.9.0) + rspec-expectations (~> 3.9.0) + rspec-mocks (~> 3.9.0) + rspec-core (3.9.2) + rspec-support (~> 3.9.3) + rspec-expectations (3.9.2) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-mocks (3.9.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-support (3.9.3) + +PLATFORMS + ruby + +DEPENDENCIES + pry + rspec + +BUNDLED WITH + 2.0.1 diff --git a/lib/your_solution.rb b/lib/your_solution.rb index 14681e9..661c70e 100644 --- a/lib/your_solution.rb +++ b/lib/your_solution.rb @@ -1,3 +1,3 @@ # Write your solution here - +puts "Hello World!" # This file should output "Hello World!" using a puts statement