Sha256: dd4241178b1b23506b795ee1c77adb30f0cf4cbdce29e238198e66d54ddac833
Contents?: true
Size: 1.39 KB
Versions: 2
Compression:
Stored size: 1.39 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "chatterbot/version" Gem::Specification.new do |s| s.name = %q{chatterbot} s.version = Chatterbot::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Colin Mitchell"] s.email = %q{colin@muffinlabs.com} s.homepage = %q{http://github.com/muffinista/chatterbot} s.summary = %q{A ruby framework for writing Twitter bots} s.description = %q{A ruby framework for writing bots that run on Twitter. Comes with a simple DSL for easy coding.} s.rubyforge_project = "chatterbot" 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.licenses = ["WTFDBAL"] s.add_runtime_dependency(%q<oauth>, [">= 0"]) s.add_runtime_dependency(%q<twitter>, [">= 3.6.0"]) s.add_runtime_dependency(%q<launchy>, [">= 2.1.2"]) s.add_development_dependency(%q<yard>, [">= 0"]) s.add_development_dependency(%q<redcarpet>, [">= 0"]) s.add_development_dependency(%q<shoulda>, [">= 0"]) s.add_development_dependency(%q<rake>, [">= 0"]) s.add_development_dependency(%q<rspec>, [">= 0"]) s.add_development_dependency(%q<rdoc>, [">= 0"]) s.add_development_dependency(%q<simplecov>, [">= 0"]) s.add_development_dependency(%q<watchr>, [">= 0"]) end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
chatterbot-0.6.3 | chatterbot.gemspec |
chatterbot-0.6.2 | chatterbot.gemspec |