happy_fun_time_bot 0.1.0 → 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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- <h1>Happy fun time bot</h1>
1
+ # Happy fun time bot
2
2
 
3
3
  Have happy fun times with this configurable XMPP bot! It is SO easy to use!
4
4
 
@@ -54,7 +54,7 @@ Bob: !deploy
54
54
  HappyFunTime Bot: Deploying now!
55
55
  ```
56
56
 
57
- === Bot creation Options:
57
+ ### Bot creation Options:
58
58
 
59
59
  * `:jid` - Required.
60
60
  * `:nick` - The nickname for the bot to use.
@@ -62,6 +62,6 @@ HappyFunTime Bot: Deploying now!
62
62
  * `:password` - The bot's password.
63
63
  * `:command_regex` - The regular expression to test for a command. The default is a ! followed by a word. e.g. `/^!(.+)$/`
64
64
 
65
- == Copyright
65
+ ## Copyright
66
66
 
67
67
  Copyright (c) 2011 Grant Ammons. See LICENSE.txt for further details.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -0,0 +1,77 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{happy_fun_time_bot}
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 = ["Grant Ammons"]
12
+ s.date = %q{2011-06-10}
13
+ s.description = %q{Easily create bots that can respond to anything!}
14
+ s.email = %q{grant@pipelinedealsco.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE.txt",
17
+ "README.md"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".rspec",
22
+ "Gemfile",
23
+ "Gemfile.lock",
24
+ "LICENSE.txt",
25
+ "README.md",
26
+ "Rakefile",
27
+ "VERSION",
28
+ "happy_fun_time_bot.gemspec",
29
+ "lib/bot/muc_client.rb",
30
+ "lib/happy_fun_time_bot.rb",
31
+ "lib/responder.rb",
32
+ "spec/happy_fun_time_bot_spec.rb",
33
+ "spec/spec_helper.rb"
34
+ ]
35
+ s.homepage = %q{http://github.com/gammons/happy_fun_time_bot}
36
+ s.licenses = ["MIT"]
37
+ s.require_paths = ["lib"]
38
+ s.rubygems_version = %q{1.4.2}
39
+ s.summary = %q{Simple XMPP bot framework}
40
+
41
+ if s.respond_to? :specification_version then
42
+ s.specification_version = 3
43
+
44
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
45
+ s.add_runtime_dependency(%q<ruby-debug>, [">= 0"])
46
+ s.add_runtime_dependency(%q<xmpp4r>, [">= 0"])
47
+ s.add_runtime_dependency(%q<json>, [">= 0"])
48
+ s.add_runtime_dependency(%q<httparty>, [">= 0"])
49
+ s.add_development_dependency(%q<rspec>, ["~> 2.3.0"])
50
+ s.add_development_dependency(%q<yard>, ["~> 0.6.0"])
51
+ s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
52
+ s.add_development_dependency(%q<jeweler>, ["~> 1.6.0"])
53
+ s.add_development_dependency(%q<rcov>, [">= 0"])
54
+ else
55
+ s.add_dependency(%q<ruby-debug>, [">= 0"])
56
+ s.add_dependency(%q<xmpp4r>, [">= 0"])
57
+ s.add_dependency(%q<json>, [">= 0"])
58
+ s.add_dependency(%q<httparty>, [">= 0"])
59
+ s.add_dependency(%q<rspec>, ["~> 2.3.0"])
60
+ s.add_dependency(%q<yard>, ["~> 0.6.0"])
61
+ s.add_dependency(%q<bundler>, ["~> 1.0.0"])
62
+ s.add_dependency(%q<jeweler>, ["~> 1.6.0"])
63
+ s.add_dependency(%q<rcov>, [">= 0"])
64
+ end
65
+ else
66
+ s.add_dependency(%q<ruby-debug>, [">= 0"])
67
+ s.add_dependency(%q<xmpp4r>, [">= 0"])
68
+ s.add_dependency(%q<json>, [">= 0"])
69
+ s.add_dependency(%q<httparty>, [">= 0"])
70
+ s.add_dependency(%q<rspec>, ["~> 2.3.0"])
71
+ s.add_dependency(%q<yard>, ["~> 0.6.0"])
72
+ s.add_dependency(%q<bundler>, ["~> 1.0.0"])
73
+ s.add_dependency(%q<jeweler>, ["~> 1.6.0"])
74
+ s.add_dependency(%q<rcov>, [">= 0"])
75
+ end
76
+ end
77
+
@@ -5,8 +5,6 @@ require 'xmpp4r'
5
5
  require 'xmpp4r/muc/helper/simplemucclient'
6
6
  require 'open-uri'
7
7
  require 'cgi'
8
- require 'httparty'
9
- require 'ruby-debug'
10
8
 
11
9
  $: << File.expand_path(File.dirname(__FILE__))
12
10
 
@@ -1,5 +1,4 @@
1
1
  require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
- require 'ruby-debug'
3
2
 
4
3
  describe "HappyFunTimeBot" do
5
4
  it "should load everything properly" do
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: happy_fun_time_bot
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 1
10
+ version: 0.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Grant Ammons
@@ -170,6 +170,7 @@ files:
170
170
  - README.md
171
171
  - Rakefile
172
172
  - VERSION
173
+ - happy_fun_time_bot.gemspec
173
174
  - lib/bot/muc_client.rb
174
175
  - lib/happy_fun_time_bot.rb
175
176
  - lib/responder.rb