File: gist.gemspec

package info (click to toggle)
gist 5.0.0-2%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 432 kB
  • sloc: ruby: 3,160; makefile: 15
file content (21 lines) | stat: -rw-r--r-- 807 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# encoding: utf-8
require './lib/gist'
Gem::Specification.new do |s|
  s.name          = 'gist'
  s.version       = Gist::VERSION
  s.summary       = 'Just allows you to upload gists'
  s.description   = 'Provides a single function (Gist.gist) that uploads a gist.'
  s.homepage      = 'https://github.com/defunkt/gist'
  s.email         = ['conrad.irwin@gmail.com', 'rkingist@sharpsaw.org']
  s.authors       = ['Conrad Irwin', '☈king']
  s.license       = 'MIT'
  s.files         = Dir.glob('bin/**') + Dir.glob('lib/**') + Dir.glob('spec/**') + ['README.md', 'LICENSE.MIT']
  s.require_paths = ["lib"]

  s.executables << 'gist-paste'

  s.add_development_dependency 'rake'
  s.add_development_dependency 'ronn'
  s.add_development_dependency 'webmock'
  s.add_development_dependency 'rspec', '>3'
end