Sha256: 20b1ca9357c70083b49e2e00517feded8c700cb3f82a505bdc7430bc2d859d7c
Contents?: true
Size: 1.04 KB
Versions: 3
Compression:
Stored size: 1.04 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'ghn/version' Gem::Specification.new do |spec| spec.name = "ghn" spec.version = Ghn::VERSION spec.authors = ["Kensuke Nagae"] spec.email = ["kyanny@gmail.com"] spec.description = %q{Commandline tool for GitHub notifications} spec.summary = %q{Ghn is a commandline tool for GitHub notifications. You can listup all unread notifications and mark them as read.} spec.homepage = "https://github.com/kyanny/ghn" spec.license = "MIT" spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_dependency "github_api" spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake" spec.add_development_dependency "rspec" spec.add_development_dependency "coveralls" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ghn-0.0.4 | ghn.gemspec |
ghn-0.0.3 | ghn.gemspec |
ghn-0.0.2 | ghn.gemspec |