public
Description: A small IRC bot framework.
Homepage:
Clone URL: git://github.com/david/minibot.git
minibot / minibot.gemspec
100644 27 lines (23 sloc) 0.653 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
25
26
27
GEM = "minibot"
VERSION = "0.1.0"
AUTHOR = "David Leal"
EMAIL = "dgleal@gmail.com"
HOMEPAGE = "http://davidleal.com"
SUMMARY = "A mini Ruby IRC bot framework"
 
SPEC = Gem::Specification.new do |s|
  s.name = GEM
  s.version = VERSION
  s.platform = Gem::Platform::RUBY
  s.has_rdoc = true
  s.extra_rdoc_files = ["README", "LICENSE", "TODO"]
  s.summary = SUMMARY
  s.description = s.summary
  s.author = AUTHOR
  s.email = EMAIL
  s.homepage = HOMEPAGE
  
  # Uncomment this to add a dependency
  # s.add_dependency "foo"
  
  s.require_path = 'lib'
  s.autorequire = GEM
  s.files = %w(LICENSE README TODO Rakefile) + Dir.glob("{lib,specs}/**/*")
end