-
Notifications
You must be signed in to change notification settings - Fork 0
/
warchat.gemspec
24 lines (20 loc) · 1.08 KB
/
warchat.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "warchat/version"
Gem::Specification.new do |s|
s.name = "warchat"
s.version = Warchat::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Zachary Gavin"]
s.email = ["zgavin@gmail.com"]
s.homepage = "http://www.github.com/zgavin/warchat"
s.summary = %q{A simple interface to World of Warcraft Remote Guild Chat based off Eike Siewertsen's C# implementation}
s.description = %q{A simple interface to World of Warcraft Remote Guild Chat in Ruby. Supports whispers, guild chat, officer chat, and presence notifications. Many thanks to Eike Siewertsen (https://github.com/fry) for his work deciphering the protocol. }
s.rubyforge_project = "warchat"
s.add_dependency('i18n','>= 0.5.0')
s.add_dependency('activesupport','>= 3.0.0')
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end