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