public
Description: Tomporary (hopefully) fork of XMPP4R-Simple
Homepage: http://code.google.com/p/xmpp4r-simple/
Clone URL: git://github.com/dysinger/xmpp4r-simple.git
Search Repo:
xmpp4r-simple / xmpp4r-simple.gemspec
100644 21 lines (21 sloc) 0.744 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Gem::Specification.new do |s|
  s.add_dependency('xmpp4r', '>= 0.3.0')
  s.name = "xmpp4r-simple"
  s.version = "0.8.7"
  s.author = "Blaine Cook"
  s.email = "romeda@gmail.com"
  s.homepage = "http://xmpp4r-simple.rubyforge.org/"
  s.platform = Gem::Platform::RUBY
  s.summary = "A simplified Jabber client library."
  s.description = <<-EOF
Jabber::Simple takes the strong foundation laid by xmpp4r
and hides the relatively high complexity of maintaining a simple instant
messenger bot in Ruby.
EOF
  s.files = Dir.glob("{lib,test}/**/*")
  s.require_path = "lib"
  s.test_files = Dir.glob("test/test_*.rb")
  s.has_rdoc = true
  s.extra_rdoc_files = ["README", "COPYING"]
  s.rubyforge_project = "xmpp4r-simple"
end