Sha256: 6ed15e1a06d7a5fa7fe7ac7020ab0728f64545ceaea57b05674d16f0ff059941
Contents?: true
Size: 1.13 KB
Versions: 4
Compression:
Stored size: 1.13 KB
Contents
$: << 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 = "assaf@labnotes.org" spec.homepage = "http://vanity.labnotes.org" spec.license = "MIT" 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 = `git ls-files`.split("\n") spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") spec.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } spec.require_paths = ["lib"] 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.9.3" spec.add_development_dependency "bundler", ">= 1.0.0" spec.add_development_dependency "minitest", ">= 4.2" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
vanity-2.0.0.beta4 | vanity.gemspec |
vanity-2.0.0.beta3 | vanity.gemspec |
vanity-2.0.0.beta2 | vanity.gemspec |
vanity-2.0.0.beta | vanity.gemspec |