dog_walker 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6652c407f6a2707d846dcf2687d346f180d8d266
4
- data.tar.gz: 87c0d48e0bc3647739284c4d3ad622ace2f7ca09
3
+ metadata.gz: 67de42c3e0e06b9a2b0acb25aa897e071b1972d7
4
+ data.tar.gz: b58187ed0f9e10f973a0e883f0aa52661482fe7e
5
5
  SHA512:
6
- metadata.gz: d657c3100e4b9aa46c10f90be8f1185aef778e6d465023ea0279fd59d7b71cf674dff386dd8e81d34f80edff4c8150e43019349f44cd710bc89acc0d3d778b9e
7
- data.tar.gz: 26ea008091a85216a02a007600fabc8429cf6892630bee7e4b7a539c311bef683a1c0e095763dab445f7114c137891a6ca134c21d5c6372da79684867bec65ae
6
+ metadata.gz: 879a71a6426f374f67a29ff11b8c9f6fdfe1bcff33b7b677d96572459239680d01e286f1671f20f5a9be57de5895ab954acb89784a41b372c8c85d0bc4858125
7
+ data.tar.gz: b142a8b678273a07e0d738b564c9f746d05c5f4655e86796f2514e91d624f6fe12aabc1c1064408f5317e7b29289b9d440e59f858e5d04f5ab153fe689b6fac1
data/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # DogWalker
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/dog_walker`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
3
+ Steve is back with another great Gem! From the creator of "Dish Washer" comes another awesome Gem to make your life easier. Created using the latest AI and GPS tracking, Dog Walker is ready to walk.
6
4
 
7
5
  ## Installation
8
6
 
@@ -21,9 +19,14 @@ Or install it yourself as:
21
19
  $ gem install dog_walker
22
20
 
23
21
  ## Usage
24
-
25
- TODO: Write usage instructions here
26
-
22
+ Simply run
23
+ ```ruby
24
+ dog_name = DogWalker::Dog.new
25
+ ```
26
+ Then have DogWalker call your dog to start waling.
27
+ ```ruby
28
+ dog_name.walk_the_dog
29
+ ```
27
30
  ## Development
28
31
 
29
32
  After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
data/lib/dog_walker.rb CHANGED
@@ -4,7 +4,10 @@ module DogWalker
4
4
  class Dog
5
5
 
6
6
  def walk_the_dog
7
- puts "I am busy walking the dog"
7
+ dog_name = ""
8
+ print "Enter your dogs name: "
9
+ dog_name = gets.chomp.strip
10
+ puts "Come on #{dog_name}, let's start walking!"
8
11
  end
9
12
 
10
13
  end
@@ -1,3 +1,3 @@
1
1
  module DogWalker
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dog_walker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Chesnowitz