forked from defunkt/gist
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gist.gemspec
28 lines (25 loc) · 1.02 KB
/
gist.gemspec
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
27
28
# -*- encoding: utf-8 -*-
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'gist'
Gem::Specification.new do |s|
s.name = "gist"
s.version = Gist::Version.to_s
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "Creates Gists from STDIN or files."
s.homepage = "http://github.com/defunkt/gist"
s.email = "[email protected]"
s.authors = [ "Chris Wanstrath", "André Arko" ]
s.has_rdoc = false
s.files = %w( README.markdown Rakefile LICENSE )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("bin/**/*")
s.files += Dir.glob("man/**/*")
s.files += Dir.glob("public/**/*")
s.executables = %w( gist )
s.description = <<desc
Creates Gists (pastes) on gist.github.com from standard input or
arbitrary files. Can link to your GitHub account, create private gists,
and enable syntax highlighting.
desc
end