-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathhipbot.gemspec
28 lines (25 loc) · 1.25 KB
/
hipbot.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
25
26
27
28
# encoding: utf-8
require File.expand_path('../lib/hipbot/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Bartosz Kopiński", "Tomasz Pewiński"]
gem.email = ["[email protected]", "[email protected]"]
gem.description = "Hipbot is a XMPP bot for HipChat, written in Ruby with EventMachine."
gem.summary = "Hipbot is a XMPP bot for HipChat, written in Ruby with EventMachine."
gem.homepage = "http://github.com/pewniak747/hipbot"
gem.license = "MIT"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "hipbot"
gem.require_paths = ["lib"]
gem.version = Hipbot::VERSION
gem.add_runtime_dependency "xmpp4r-hipchat", ["= 0.1.0"]
gem.add_runtime_dependency "daemons", ["~> 1.1"]
gem.add_runtime_dependency "activesupport", [">= 3.0.0"]
gem.add_runtime_dependency "eventmachine", ["~> 1.0"]
gem.add_runtime_dependency "em-http-request", ["~> 1.1"]
gem.add_development_dependency "rake"
gem.add_development_dependency "rspec"
gem.add_development_dependency "rspec-its"
gem.add_development_dependency "guard-rspec"
end