1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
# 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 = `git ls-files`.split("\n")
s.require_paths = ["lib"]
s.executables << 'gist-paste'
%w(rake rspec webmock ronn).each do |gem|
s.add_development_dependency gem
end
end
|