-
Notifications
You must be signed in to change notification settings - Fork 42
/
cheat.gemspec
26 lines (25 loc) · 1.09 KB
/
cheat.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cheat/version'
Gem::Specification.new do |spec|
spec.add_dependency 'pager', '~> 1.0'
spec.add_development_dependency 'bundler', '~> 1.0'
spec.name = 'cheat'
spec.description = "cheat prints cheat sheets from cheat.errtheblog.com, a wiki-like repository of programming knowledge."
spec.summary = "cheat prints cheat sheets from cheat.errtheblog.com"
spec.authors = ["Chris Wanstrath", "Erik Michaels-Ober"]
spec.email = ["chris@ozmm.org", "sferik@gmail.com"]
spec.bindir = 'bin'
spec.executables = %w(cheat)
spec.files = %w(README LICENSE)
spec.files += Dir.glob("bin/**/*")
spec.files += Dir.glob("lib/**/*")
spec.files += Dir.glob("man/**/*")
spec.files += Dir.glob("test/**/*")
spec.homepage = 'http://cheat.errtheblog.com'
spec.licenses = ['MIT']
spec.require_paths = ['lib']
spec.required_rubygems_version = '>= 1.3.5'
spec.version = Cheat::Version
end