zmb 0.1.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/test/helper.rb ADDED
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ require 'test/unit'
3
+ require 'shoulda'
4
+
5
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
6
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
7
+ require 'zmb'
8
+
9
+ class Test::Unit::TestCase
10
+ end
data/test/test_zmb.rb ADDED
@@ -0,0 +1,7 @@
1
+ require 'helper'
2
+
3
+ class TestZmb < Test::Unit::TestCase
4
+ should "probably rename this file and start testing for real" do
5
+ flunk "hey buddy, you should probably rename this file and start testing for real"
6
+ end
7
+ end
data/zmb.gemspec ADDED
@@ -0,0 +1,71 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{zmb}
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["kylef"]
12
+ s.date = %q{2010-02-24}
13
+ s.default_executable = %q{zmb}
14
+ s.description = %q{ZMB, messenger bot}
15
+ s.email = %q{inbox@kylefuller.co.uk}
16
+ s.executables = ["zmb"]
17
+ s.extra_rdoc_files = [
18
+ "LICENSE",
19
+ "README.markdown"
20
+ ]
21
+ s.files = [
22
+ ".document",
23
+ ".gitignore",
24
+ "LICENSE",
25
+ "README.markdown",
26
+ "Rakefile",
27
+ "VERSION",
28
+ "bin/zmb",
29
+ "lib/zmb.rb",
30
+ "lib/zmb/commands.rb",
31
+ "lib/zmb/event.rb",
32
+ "lib/zmb/plugin.rb",
33
+ "lib/zmb/settings.rb",
34
+ "lib/zmb/timer.rb",
35
+ "plugins/bank.rb",
36
+ "plugins/commands.rb",
37
+ "plugins/irc.rb",
38
+ "plugins/quote.rb",
39
+ "plugins/relay.rb",
40
+ "plugins/users.rb",
41
+ "test/helper.rb",
42
+ "test/test_zmb.rb",
43
+ "zmb.gemspec"
44
+ ]
45
+ s.homepage = %q{http://github.com/kylef/zmb}
46
+ s.rdoc_options = ["--charset=UTF-8"]
47
+ s.require_paths = ["lib"]
48
+ s.rubygems_version = %q{1.3.5}
49
+ s.summary = %q{ZMB, messenger bot}
50
+ s.test_files = [
51
+ "test/helper.rb",
52
+ "test/test_zmb.rb"
53
+ ]
54
+
55
+ if s.respond_to? :specification_version then
56
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
57
+ s.specification_version = 3
58
+
59
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
60
+ s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
61
+ s.add_runtime_dependency(%q<json>, [">= 1.0.0"])
62
+ else
63
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
64
+ s.add_dependency(%q<json>, [">= 1.0.0"])
65
+ end
66
+ else
67
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
68
+ s.add_dependency(%q<json>, [">= 1.0.0"])
69
+ end
70
+ end
71
+
metadata ADDED
@@ -0,0 +1,97 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: zmb
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - kylef
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2010-02-24 00:00:00 +00:00
13
+ default_executable: zmb
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: thoughtbot-shoulda
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: json
27
+ type: :runtime
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 1.0.0
34
+ version:
35
+ description: ZMB, messenger bot
36
+ email: inbox@kylefuller.co.uk
37
+ executables:
38
+ - zmb
39
+ extensions: []
40
+
41
+ extra_rdoc_files:
42
+ - LICENSE
43
+ - README.markdown
44
+ files:
45
+ - .document
46
+ - .gitignore
47
+ - LICENSE
48
+ - README.markdown
49
+ - Rakefile
50
+ - VERSION
51
+ - bin/zmb
52
+ - lib/zmb.rb
53
+ - lib/zmb/commands.rb
54
+ - lib/zmb/event.rb
55
+ - lib/zmb/plugin.rb
56
+ - lib/zmb/settings.rb
57
+ - lib/zmb/timer.rb
58
+ - plugins/bank.rb
59
+ - plugins/commands.rb
60
+ - plugins/irc.rb
61
+ - plugins/quote.rb
62
+ - plugins/relay.rb
63
+ - plugins/users.rb
64
+ - test/helper.rb
65
+ - test/test_zmb.rb
66
+ - zmb.gemspec
67
+ has_rdoc: true
68
+ homepage: http://github.com/kylef/zmb
69
+ licenses: []
70
+
71
+ post_install_message:
72
+ rdoc_options:
73
+ - --charset=UTF-8
74
+ require_paths:
75
+ - lib
76
+ required_ruby_version: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: "0"
81
+ version:
82
+ required_rubygems_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ version: "0"
87
+ version:
88
+ requirements: []
89
+
90
+ rubyforge_project:
91
+ rubygems_version: 1.3.5
92
+ signing_key:
93
+ specification_version: 3
94
+ summary: ZMB, messenger bot
95
+ test_files:
96
+ - test/helper.rb
97
+ - test/test_zmb.rb