rudyl 3.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/Manifest +3 -0
  2. data/Rakefile +12 -0
  3. data/bin/rudy +21 -0
  4. data/rudyl.gemspec +31 -0
  5. metadata +74 -0
@@ -0,0 +1,3 @@
1
+ Manifest
2
+ Rakefile
3
+ bin/rudy
@@ -0,0 +1,12 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+ require 'echoe'
4
+
5
+ Echoe.new('rudyl', '3.1.3') do |p|
6
+ p.description = "A gem that is Rudy"
7
+ p.author = "Ehren Murdick"
8
+ p.email = "ehren.murdick @nospam@ gmail.com"
9
+ p.ignore_pattern = ["tmp/*", "script/*"]
10
+ p.development_dependencies = []
11
+ end
12
+
@@ -0,0 +1,21 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ module Rudy
4
+ Phrases = [
5
+ "Looks like we found our B.",
6
+ "How about Quizyes for lunch?",
7
+ "You just have to lift that up into the monad context.",
8
+ "What would people from the distant past think if they were here now?",
9
+ "We were trying for an industrial synth sound, but we wound up with more adult contemporary."
10
+ ]
11
+
12
+ def Phrases.random
13
+ Phrases[rand Phrases.size]
14
+ end
15
+
16
+ def self.say_something
17
+ puts Phrases.random
18
+ end
19
+ end
20
+
21
+ Rudy.say_something
@@ -0,0 +1,31 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{rudyl}
5
+ s.version = "3.1.3"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Ehren Murdick"]
9
+ s.date = %q{2011-02-09}
10
+ s.default_executable = %q{rudy}
11
+ s.description = %q{A gem that is Rudy}
12
+ s.email = %q{ehren.murdick @nospam@ gmail.com}
13
+ s.executables = ["rudy"]
14
+ s.extra_rdoc_files = ["bin/rudy"]
15
+ s.files = ["Manifest", "Rakefile", "bin/rudy", "rudyl.gemspec"]
16
+ s.homepage = %q{}
17
+ s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Rudyl"]
18
+ s.require_paths = ["lib"]
19
+ s.rubyforge_project = %q{rudyl}
20
+ s.rubygems_version = %q{1.4.1}
21
+ s.summary = %q{A gem that is Rudy}
22
+
23
+ if s.respond_to? :specification_version then
24
+ s.specification_version = 3
25
+
26
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
27
+ else
28
+ end
29
+ else
30
+ end
31
+ end
metadata ADDED
@@ -0,0 +1,74 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rudyl
3
+ version: !ruby/object:Gem::Version
4
+ hash: 5
5
+ prerelease:
6
+ segments:
7
+ - 3
8
+ - 1
9
+ - 3
10
+ version: 3.1.3
11
+ platform: ruby
12
+ authors:
13
+ - Ehren Murdick
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-02-09 00:00:00 -08:00
19
+ default_executable:
20
+ dependencies: []
21
+
22
+ description: A gem that is Rudy
23
+ email: ehren.murdick @nospam@ gmail.com
24
+ executables:
25
+ - rudy
26
+ extensions: []
27
+
28
+ extra_rdoc_files:
29
+ - bin/rudy
30
+ files:
31
+ - Manifest
32
+ - Rakefile
33
+ - bin/rudy
34
+ - rudyl.gemspec
35
+ has_rdoc: true
36
+ homepage: ""
37
+ licenses: []
38
+
39
+ post_install_message:
40
+ rdoc_options:
41
+ - --line-numbers
42
+ - --inline-source
43
+ - --title
44
+ - Rudyl
45
+ require_paths:
46
+ - lib
47
+ required_ruby_version: !ruby/object:Gem::Requirement
48
+ none: false
49
+ requirements:
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ hash: 3
53
+ segments:
54
+ - 0
55
+ version: "0"
56
+ required_rubygems_version: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ hash: 11
62
+ segments:
63
+ - 1
64
+ - 2
65
+ version: "1.2"
66
+ requirements: []
67
+
68
+ rubyforge_project: rudyl
69
+ rubygems_version: 1.4.1
70
+ signing_key:
71
+ specification_version: 3
72
+ summary: A gem that is Rudy
73
+ test_files: []
74
+