bhaberer/cinch-lastactive

View on GitHub
cinch-lastactive.gemspec

Summary

Maintainability
Test Coverage
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cinch/plugins/lastactive/version'

Gem::Specification.new do |spec|
  spec.name          = 'cinch-lastactive'
  spec.version       = Cinch::Plugins::LastActive::VERSION
  spec.authors       = ['Brian Haberer']
  spec.email         = ['bhaberer@gmail.com']
  spec.summary       = %q{Cinch Plugin to greet vistors.}
  spec.description   = %q{Cinch Plugin to greet users with the time since last activity}
  spec.homepage      = 'https://github.com/bhaberer/cinch-lastactive'
  spec.license       = 'MIT'
  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(/^bin\//) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(/^(test|spec|features)\//)
  spec.require_paths = ['lib']

  spec.add_development_dependency 'bundler', '~> 1.5'
  spec.add_development_dependency 'rake', '~> 10'
  spec.add_development_dependency 'rspec', '~> 3'
  spec.add_development_dependency 'codeclimate-test-reporter', '~> 0.4'
  spec.add_development_dependency 'cinch-test', '~> 0.1', '>= 0.1.1'
  
  spec.add_dependency 'cinch', '~> 2'
  spec.add_dependency 'cinch-toolbox', '~> 1.1'
end