Sharparam/chatrix

View on GitHub
chatrix.gemspec

Summary

Maintainability
Test Coverage
# coding: utf-8
# frozen_string_literal: true

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

Gem::Specification.new do |spec|
  spec.name          = 'chatrix'
  spec.version       = Chatrix::VERSION
  spec.authors       = ['Adam Hellberg']
  spec.email         = ['sharparam@sharparam.com']

  spec.summary       = 'Ruby implementation of the Matrix API'
  # spec.description   = %q{}
  spec.homepage      = 'https://github.com/Sharparam/chatrix'
  spec.license       = 'MIT'

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end

  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.required_ruby_version = '>= 2.0.0'

  spec.add_runtime_dependency 'httparty', '~> 0.13'
  spec.add_runtime_dependency 'wisper', '~> 1.6'

  spec.add_development_dependency 'bundler', '~> 1.12'
end