public
Fork of blaine/xmpp4r-simple
Description: Jabber::Simple
Homepage:
Clone URL: git://github.com/timshadel/xmpp4r-simple.git
aymerick (author)
Fri Nov 14 09:02:47 -0800 2008
timshadel (committer)
Tue Jan 27 08:28:27 -0800 2009
xmpp4r-simple / xmpp4r-simple.gemspec
100644 24 lines (23 sloc) 0.875 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 = Dir.glob("test/test_*.rb")
  s.has_rdoc = true
  s.extra_rdoc_files = ["README", "COPYING"]
  s.rubyforge_project = "xmpp4r-simple"
end