public
Fork of blaine/xmpp4r-simple
Description: Fork of Jabber::Simple to add PubSub capabilities
Homepage: http://www.nardol.org/
Clone URL: git://github.com/spectra/xmpp4r-simple.git
xmpp4r-simple / xmpp4r-simple.gemspec
100644 24 lines (23 sloc) 0.883 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Gem::Specification.new do |s|
  s.add_dependency('xmpp4r', '>= 0.3.2')
  # s.add_development_dependency('rake')
  # s.add_development_dependency('rcov')
  s.name = "xmpp4r-simple"
  s.version = "0.8.8"
  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 = %w( test/test_xmpp4r_simple.rb lib/xmpp4r-simple.rb README COPYING CHANGELOG )
  s.require_path = "lib"
  s.test_files = ["test/test_xmpp4r_simple.rb"]
  s.has_rdoc = true
  s.extra_rdoc_files = ["README", "COPYING"]
  s.rubyforge_project = "xmpp4r-simple"
end