Sha256: dc344ee6053b4ec95b8b41f0806f73441040915bf35a99d9f003f36241c051a1

Contents?: true

Size: 1.26 KB

Versions: 1

Compression:

Stored size: 1.26 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = 'github_status_notifier'
  spec.version       = GithubStatusNotifier::VERSION
  spec.authors       = ['sanemat']
  spec.email         = ['o.gata.ken@gmail.com']

  spec.summary       = 'Notify to GitHub status.'
  spec.description   = 'Easy to handle GitHub status with exit status. Like TravisCI\'s build status.'
  spec.homepage      = 'https://github.com/packsaddle/ruby-github_status_notifier'
  spec.license       = 'MIT'

  spec.files         = \
    `git ls-files -z`
      .split("\x0")
      .reject { |f| f.match(%r{^(test|spec|features)/}) }
      .reject do |f|
        [
          '.travis.yml',
          'circle.yml',
          '.tachikoma.yml'
        ].include?(f)
      end
  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_runtime_dependency 'thor'
  spec.add_runtime_dependency 'saddler-reporter-github'

  spec.add_development_dependency 'bundler', '~> 1.8'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'test-unit'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
github_status_notifier-0.1.2 github_status_notifier.gemspec