From 7c7cab0f4659148b36f9e72c55b7820ec8a55c46 Mon Sep 17 00:00:00 2001 From: Colin Mosley Date: Thu, 25 Jun 2020 01:02:12 +0000 Subject: [PATCH] Done. --- Gemfile.lock | 32 ++++++++++++++++++++++++++++++++ lib/your_solution.rb | 1 + 2 files changed, 33 insertions(+) create mode 100644 Gemfile.lock diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..06c00bb --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,32 @@ +GEM + remote: https://rubygems.org/ + specs: + coderay (1.1.3) + diff-lcs (1.4.2) + 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..9cb8c72 100644 --- a/lib/your_solution.rb +++ b/lib/your_solution.rb @@ -1,3 +1,4 @@ # Write your solution here # This file should output "Hello World!" using a puts statement +puts "Hello World!" \ No newline at end of file