Sha256: 074296597d8e0104e690ef15cefe66a4b424c8fcb2198ab226cd7a4094226844

Contents?: true

Size: 1.15 KB

Versions: 9

Compression:

Stored size: 1.15 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'botolo/version'

Gem::Specification.new do |spec|
  spec.name          = "botolo"
  spec.version       = Botolo::VERSION
  spec.authors       = ["Paolo Perego"]
  spec.email         = ["thesp0nge@gmail.com"]
  spec.description   = %q{botolo is a bot engine written in ruby}
  spec.summary       = %q{botolo is a bot engine written in ruby. With botolo
    you can focus on writing a set of actions your bot will execute every
    amount of seconds, minutes or whatever and implement those actions. The
    part of executing them and putting babies to sleep will be up to botolo.}
  spec.homepage      = "http://codesake.com"
  spec.license       = "MIT"

  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.3"
  spec.add_development_dependency "rake"
  spec.add_dependency "twitter"
  spec.add_dependency "codesake-commons"
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
botolo-0.32.9 botolo.gemspec
botolo-0.32.8 botolo.gemspec
botolo-0.32.7 botolo.gemspec
botolo-0.32.6 botolo.gemspec
botolo-0.32.5 botolo.gemspec
botolo-0.32.4 botolo.gemspec
botolo-0.32.3 botolo.gemspec
botolo-0.32.2 botolo.gemspec
botolo-0.32.1 botolo.gemspec