Sha256: 492ebaa448e6653f9072af4686fc21d1430ce52b997d80499cf00fa920a60d5f

Contents?: true

Size: 911 Bytes

Versions: 1

Compression:

Stored size: 911 Bytes

Contents

Gem::Specification.new do |s|

  s.name = 'botaku'

  s.version = File.read(
    File.expand_path('../lib/botaku.rb', __FILE__)
  ).match(/ VERSION *= *['"]([^'"]+)/)[1]

  s.platform = Gem::Platform::RUBY
  s.authors = [ 'John Mettraux' ]
  s.email = [ 'jmettraux@gmail.com' ]
  s.homepage = 'http://github.com/jmettraux/botaku'
  #s.rubyforge_project = 'rufus'
  s.license = 'MIT'
  s.summary = 'a Slack bot abstraction'

  s.description = %{
A Slack bot abstraction, built on top of the slack-ruby-client gem.
  }.strip

  #s.files = `git ls-files`.split("\n")
  s.files = Dir[
    'README.{md,txt}',
    'CHANGELOG.{md,txt}', 'CREDITS.{md,txt}', 'LICENSE.{md,txt}',
    'Makefile',
    'lib/**/*.rb', #'spec/**/*.rb', 'test/**/*.rb',
    "#{s.name}.gemspec",
  ]

  s.add_runtime_dependency 'slack-ruby-client', '~> 0.8'

  #s.add_development_dependency 'rspec', '>= 2.13.0'

  s.require_path = 'lib'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
botaku-0.1.0 botaku.gemspec