Sha256: 40dcfac2fc71669b98ca5247e947e89a910068c14d01edc828c6811d2298b334

Contents?: true

Size: 1013 Bytes

Versions: 1

Compression:

Stored size: 1013 Bytes

Contents

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bearychat/version'

Gem::Specification.new do |spec|
  spec.name          = "bearychat"
  spec.version       = Bearychat::VERSION
  spec.authors       = ["pokka"]
  spec.email         = ["ifunafu@gmail.com"]

  spec.summary       = %q{Simple ruby library to interact with Bearychat}
  spec.description   = %q{Use bearychat's incoming/rtm API, work with capistrano}
  spec.homepage      = "https://github.com/pokka/bearychat-rb"
  spec.license       = "MIT"

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

  spec.add_dependency "faraday", "~> 0.9"

  spec.add_development_dependency "bundler", "~> 1.10"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "minitest", "~> 5.0"
  spec.add_development_dependency "webmock", "~> 1.0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bearychat-1.0.0 bearychat.gemspec