Sha256: c5b7777173340c2e2115a265e8ce62b48a26da55760daa83caf6133b794dfa42
Contents?: true
Size: 1.76 KB
Versions: 1
Compression:
Stored size: 1.76 KB
Contents
lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'lolcommits/yammer/version' Gem::Specification.new do |spec| spec.name = "lolcommits-yammer" spec.version = Lolcommits::Yammer::VERSION spec.authors = ["Matthew Hutchinson"] spec.email = ["matt@hiddenloop.com"] spec.summary = %q{Uploads lolcommits to Yammer} spec.homepage = "https://github.com/lolcommits/lolcommits-yammer" spec.license = "LGPL-3.0" spec.description = <<-DESC Automatically posts a new message to your Yammer account with the captured lolcommit, your commit message and a 'Lolcommits' topic tag. DESC spec.metadata = { "homepage_uri" => "https://github.com/lolcommits/lolcommits-yammer", "changelog_uri" => "https://github.com/lolcommits/lolcommits-yammer/blob/master/CHANGELOG.md", "source_code_uri" => "https://github.com/lolcommits/lolcommits-yammer", "bug_tracker_uri" => "https://github.com/lolcommits/lolcommits-yammer/issues", "allowed_push_host" => "https://rubygems.org" } spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(assets|test|features)/}) } spec.test_files = `git ls-files -- {test,features}/*`.split("\n") spec.bindir = "bin" spec.executables = [] spec.require_paths = ["lib"] spec.required_ruby_version = ">= 2.3" spec.add_runtime_dependency "rest-client", ">= 2.1.0" spec.add_runtime_dependency "webrick" spec.add_runtime_dependency "lolcommits", ">= 0.14.2" spec.add_development_dependency "bundler" spec.add_development_dependency "webmock" spec.add_development_dependency "pry" spec.add_development_dependency "rake" spec.add_development_dependency "minitest" spec.add_development_dependency "simplecov" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
lolcommits-yammer-0.4.0 | lolcommits-yammer.gemspec |