modulegem 0.0.1
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.
- data/lib/fun.rb +23 -0
- data/lib/module.rb +7 -0
- metadata +47 -0
data/lib/fun.rb
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
|
2
|
+
class Noodles
|
3
|
+
def cook
|
4
|
+
puts "Kill all Humans! (just joking! :D)"
|
5
|
+
end
|
6
|
+
end
|
7
|
+
|
8
|
+
class Potato
|
9
|
+
def kill
|
10
|
+
@potato_sentences = ["Not today", "Splash"]
|
11
|
+
@potato_sentence = @potato_sentences[rand(@potato_sentences.size)]
|
12
|
+
puts @potato_sentence
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
class Bluewhale
|
17
|
+
def squeeze_you
|
18
|
+
puts "My friend says that I should add all those crazy things!! :D"
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
@noodles = Noodles.new
|
23
|
+
@potato = Potato.new
|
data/lib/module.rb
ADDED
metadata
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: modulegem
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Marvin Johanning
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-12-18 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: You can find some funny and useful classes etc in here! Take a look
|
15
|
+
email: marvin-johanning@web.de
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- lib/module.rb
|
21
|
+
- lib/fun.rb
|
22
|
+
homepage: http://jeytasgame.de.vc
|
23
|
+
licenses:
|
24
|
+
- MIT
|
25
|
+
post_install_message:
|
26
|
+
rdoc_options: []
|
27
|
+
require_paths:
|
28
|
+
- lib
|
29
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
30
|
+
none: false
|
31
|
+
requirements:
|
32
|
+
- - ! '>='
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '0'
|
35
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
36
|
+
none: false
|
37
|
+
requirements:
|
38
|
+
- - ! '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
requirements: []
|
42
|
+
rubyforge_project:
|
43
|
+
rubygems_version: 1.8.23
|
44
|
+
signing_key:
|
45
|
+
specification_version: 3
|
46
|
+
summary: MODULES AND FUN
|
47
|
+
test_files: []
|