File: ghi.gemspec

package info (click to toggle)
ruby-ghi 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 456 kB
  • ctags: 528
  • sloc: ruby: 5,268; makefile: 3
file content (26 lines) | stat: -rw-r--r-- 774 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'ghi/commands/version'

Gem::Specification.new do |s|
  s.name             = 'ghi'
  s.version          = GHI::Commands::Version::VERSION
  s.license          = 'MIT'
  s.summary          = 'GitHub Issues command line interface'
  s.description      = <<EOF
GitHub Issues on the command line. Use your `$EDITOR`, not your browser.
EOF

  s.files            = Dir['lib/**/*']
  s.executables      = %w(ghi)

  s.has_rdoc         = false

  s.author           = 'Stephen Celis'
  s.email            = 'stephen@stephencelis.com'
  s.homepage         = 'https://github.com/stephencelis/ghi'

  s.add_runtime_dependency 'pygments.rb'

  s.add_development_dependency 'rake'
  s.add_development_dependency 'ronn'
end