discrete_math 0.0.2 → 0.0.3

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: 7058f49cdf5dc4361420ba5580debb423c71b87e
4
- data.tar.gz: b973b451a4b6a6a7ced599372c6f703394104e96
3
+ metadata.gz: 6002e6a7dd00c2a0dd4b1bf03b8cedae41857f5c
4
+ data.tar.gz: 88c1f2c9e33daf4e727c6baeabf577d92d906f05
5
5
  SHA512:
6
- metadata.gz: 6a002749ed918458f0d29324a6419df6190272b5de3f0fbf1fb781b75850c75f59f487d03521d4717057efafdd9ad5b9e1f04abb3d6b12f6ee0bc6c71db99177
7
- data.tar.gz: 497b8f7f5e5338862abe506ebd6b72c300ac07c76842a53ea69d2c4b97ddc91c35aa5480e65fd98429c00cef816630d2056b3ba38f6caea4a1bb7d6244c91e39
6
+ metadata.gz: 155ee90d174ab030c082627b4a13d40b1c9184e25bb3a5e64c6e1318ab529f73de5cc0fd473eb4175ad7dacef9a332b0aeef2b6942530b900a462f23016a95c3
7
+ data.tar.gz: c10a1a3430010dab81b51494b1c745016ee4f7598422927d62aa88674288c9cc4b54b0a439ddcb9d61b30900bc67e22b460fa00c4ed20ba7758cc16092f91dcc
@@ -1,14 +1,15 @@
1
1
  require_relative './modules/discrete_math_topics'
2
2
 
3
3
  module DiscreteMath
4
- include DiscreteMathTopics::PreliminaryMath # AbsoluteValuesDemo
5
- include DiscreteMathTopics::PreliminaryMath::AbsoluteValuesDemo::LocationConfig # @@location_coordinates
4
+ module Power
5
+ include DiscreteMathTopics::PreliminaryMath # AbsoluteValuesDemo
6
+ include DiscreteMathTopics::PreliminaryMath::AbsoluteValuesDemo::LocationConfig # @@location_coordinates
6
7
 
7
- def self.demo_power_of
8
- location_first = AbsoluteValuesDemo::Location.new(@@location_coordinates[:sydney])
9
- location_second = AbsoluteValuesDemo::Location.new(@@location_coordinates[:melbourne])
10
- route_first = AbsoluteValuesDemo::Route.new(location_first, location_second)
11
- puts "=====> Demo Power Of: route first distance is: #{route_first.distance}"
8
+ def self.get_distance
9
+ location_first = AbsoluteValuesDemo::Location.new(@@location_coordinates[:sydney])
10
+ location_second = AbsoluteValuesDemo::Location.new(@@location_coordinates[:melbourne])
11
+ route_first = AbsoluteValuesDemo::Route.new(location_first, location_second)
12
+ end
12
13
  end
13
14
  end
14
15
 
@@ -32,7 +33,9 @@ module Menu
32
33
  """
33
34
  user_choice = gets.chomp
34
35
  if user_choice == "1"
35
- DiscreteMath.demo_power_of
36
+ puts "Calculating distance from Sydney to Melbourne..."
37
+ route_first = DiscreteMath::Power.get_distance
38
+ Menu.show_result(route_first.distance)
36
39
  break
37
40
  elsif user_choice == "q"
38
41
  break
@@ -41,6 +44,10 @@ module Menu
41
44
  end
42
45
  end
43
46
  end
47
+
48
+ def self.show_result(result)
49
+ puts "=====> Demo Power Of result is: #{result}"
50
+ end
44
51
  end
45
52
 
46
53
  Menu.request_user_choice_demo
@@ -22,7 +22,7 @@ module DiscreteMathTopics
22
22
  end
23
23
 
24
24
  class Route
25
- attr_accessor :distance
25
+ attr_reader :distance
26
26
 
27
27
  def initialize(start_location, finish_location)
28
28
  @start_location = start_location
metadata CHANGED
@@ -1,10 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: discrete_math
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luke Schoen
8
+ - Ruegen Aschenbrenner
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []