Sha256: c06302dd789aae5e5288fce66a1b48867f2b6384283cc8488d74e0edfee6f298

Contents?: true

Size: 1.3 KB

Versions: 4

Compression:

Stored size: 1.3 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "safubot/version"

Gem::Specification.new do |s|
  s.name        = "safubot"
  s.version     = Safubot::VERSION
  s.platform	= Gem::Platform::RUBY
  s.authors     = ["Jaiden Mispy"]
  s.email       = ["^_^@mispy.me"]
  s.homepage    = ""
  s.summary     = "A friendly event-driven chatbot framework. Supports Twitter and XMPP."
  s.description = "A friendly event-driven chatbot framework. Supports Twitter and XMPP."

  s.rubyforge_project = "safubot"

  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"]

  s.add_dependency "activesupport", "= 3.1.0" # mongo_mapper seems to need this without specifying it.
  s.add_dependency "eventmachine", "~> 0.12.10"
  s.add_dependency "bson_ext", "~> 1.4.0"
  s.add_dependency "mongo_mapper", "~> 0.10.1"
  s.add_dependency "twitter", "~> 2.0.0"
  s.add_dependency "tweetstream", "~> 1.1.3"
  s.add_dependency "blather", "~> 0.5.8"
  s.add_development_dependency "rake"
  s.add_development_dependency "rspec"
  s.add_development_dependency "yard"
  s.add_development_dependency "bundler"
  s.add_development_dependency "wirble"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
safubot-0.0.7 safubot.gemspec
safubot-0.0.6 safubot.gemspec
safubot-0.0.5 safubot.gemspec
safubot-0.0.4 safubot.gemspec