point_yann 0.0.0
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 +7 -0
- data/lib/point_yann.rb +14 -0
- metadata +43 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 6e2fec2afffe158f8dd3e3161fbb803c51fb44f0
|
|
4
|
+
data.tar.gz: 8ef6ccb5cd65fe6a63201e86ced7c555782778a4
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 7b73077f0c05b26dac0a2f2aba439045eec0edfaf281cf1e954089949fc3df7f0fe9814e758324c64a645ada5ca37d2fb28edb5412cbc924260ccdb6f639295c
|
|
7
|
+
data.tar.gz: 507225fa0cc9b8f20da9ed817b84c50780b66a2478648813ec23ceb3a27c3e0d5e32d404396c400d5cf9e9a56c336aa78a5abcffb8a031c2b1fa56f1a627536a
|
data/lib/point_yann.rb
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
class Point
|
|
2
|
+
|
|
3
|
+
def self.find_point(point)
|
|
4
|
+
if point <= 4
|
|
5
|
+
ans = " Need to Study More Math "
|
|
6
|
+
elsif (point > 4 && point <= 7)
|
|
7
|
+
ans = " Please review your Math Skills "
|
|
8
|
+
else (point > 7)
|
|
9
|
+
ans = " Well Done you are a light Genius"
|
|
10
|
+
end
|
|
11
|
+
return ans
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: point_yann
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Yann Nogueira
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2015-03-25 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: this gem will check the score of the user and will provide a usell feedback
|
|
14
|
+
email: smytyann@gmail.com
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- lib/point_yann.rb
|
|
20
|
+
homepage: http://rubygems.org/gems/point_yann
|
|
21
|
+
licenses: []
|
|
22
|
+
metadata: {}
|
|
23
|
+
post_install_message:
|
|
24
|
+
rdoc_options: []
|
|
25
|
+
require_paths:
|
|
26
|
+
- lib
|
|
27
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
28
|
+
requirements:
|
|
29
|
+
- - ">="
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: '0'
|
|
32
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
33
|
+
requirements:
|
|
34
|
+
- - ">="
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: '0'
|
|
37
|
+
requirements: []
|
|
38
|
+
rubyforge_project:
|
|
39
|
+
rubygems_version: 2.2.2
|
|
40
|
+
signing_key:
|
|
41
|
+
specification_version: 4
|
|
42
|
+
summary: Gem will check the score of the user !
|
|
43
|
+
test_files: []
|