Sha256: ec99cf2567df3cda9c2b1caf9e0683f902fcbf61e769580467969a54aa7f3f17
Contents?: true
Size: 1.04 KB
Versions: 2
Compression:
Stored size: 1.04 KB
Contents
lib = File.expand_path("lib", __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "peekj/version" Gem::Specification.new do |spec| spec.name = "peekj" spec.version = Peekj::VERSION spec.authors = ["Eric La Rosa"] spec.email = ["eric@rosa.la"] spec.summary = 'Integrate with jira and fetch issues info' spec.description = 'Integrate with jira and fetch issues info.' spec.homepage = 'https://github.com/ericlarosa/peekj' spec.license = "MIT" spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do `git ls-files -z`.split("\x0").reject { |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.add_development_dependency "bundler", "~> 2.0" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.2" spec.add_runtime_dependency "http" spec.add_runtime_dependency "thor" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
peekj-0.1.1 | peekj.gemspec |
peekj-0.1.0 | peekj.gemspec |