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 +4 -4
- data/lib/discrete_math.rb +15 -8
- data/lib/modules/discrete_math_topics.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6002e6a7dd00c2a0dd4b1bf03b8cedae41857f5c
|
4
|
+
data.tar.gz: 88c1f2c9e33daf4e727c6baeabf577d92d906f05
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 155ee90d174ab030c082627b4a13d40b1c9184e25bb3a5e64c6e1318ab529f73de5cc0fd473eb4175ad7dacef9a332b0aeef2b6942530b900a462f23016a95c3
|
7
|
+
data.tar.gz: c10a1a3430010dab81b51494b1c745016ee4f7598422927d62aa88674288c9cc4b54b0a439ddcb9d61b30900bc67e22b460fa00c4ed20ba7758cc16092f91dcc
|
data/lib/discrete_math.rb
CHANGED
@@ -1,14 +1,15 @@
|
|
1
1
|
require_relative './modules/discrete_math_topics'
|
2
2
|
|
3
3
|
module DiscreteMath
|
4
|
-
|
5
|
-
|
4
|
+
module Power
|
5
|
+
include DiscreteMathTopics::PreliminaryMath # AbsoluteValuesDemo
|
6
|
+
include DiscreteMathTopics::PreliminaryMath::AbsoluteValuesDemo::LocationConfig # @@location_coordinates
|
6
7
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
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
|
-
|
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
|
metadata
CHANGED