forked from assaf/vanity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vanity.gemspec
24 lines (20 loc) · 1 KB
/
vanity.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
$: << File.dirname(__FILE__) + "/lib"
require "vanity/version"
Gem::Specification.new do |spec|
spec.name = "vanity"
spec.version = Vanity::VERSION
spec.author = "Assaf Arkin"
spec.email = "[email protected]"
spec.homepage = "http://vanity.labnotes.org"
spec.summary = "Experience Driven Development framework for Ruby"
spec.description = "Mirror, mirror on the wall ..."
spec.post_install_message = "To get started run vanity --help"
spec.files = Dir["{bin,lib,vendor,test}/**/*", "CHANGELOG", "MIT-LICENSE", "README.rdoc", "Rakefile", "Gemfile", "*.gemspec"]
spec.executable = "vanity"
spec.extra_rdoc_files = "README.rdoc", "CHANGELOG"
spec.rdoc_options = "--title", "Vanity #{spec.version}", "--main", "README.rdoc",
"--webcvs", "http://github.com/assaf/#{spec.name}"
spec.required_ruby_version = '>= 1.8.7'
spec.add_dependency "redis", "~>2.0"
spec.add_dependency "redis-namespace", "~>0.7"
end