Sha256: ad8fcd98b47ef55664313419fa56ca80414277e3bfc4797ac61b3f150a405dbf
Contents?: true
Size: 930 Bytes
Versions: 1
Compression:
Stored size: 930 Bytes
Contents
require 'rubygems' require 'rake/gempackagetask' GEM = "soapex" VERSION = "0.1" AUTHOR = "Brian Hawthorne" EMAIL = "brian.lee.hawthorne at gmail dot com" HOMEPAGE = "http://example.com" SUMMARY = "A gem that provides extended functionality to the soap4r package" spec = Gem::Specification.new do |s| s.name = GEM s.version = VERSION s.platform = Gem::Platform::RUBY s.has_rdoc = true s.extra_rdoc_files = ["README", "LICENSE", 'TODO'] s.summary = SUMMARY s.description = s.summary s.author = AUTHOR s.email = EMAIL s.homepage = HOMEPAGE s.require_path = 'lib' s.autorequire = GEM s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs}/**/*") s.requirements << 'soap4r v 1.5.6 or greater' s.requirements << 'soapex v 0.1 or greater' end Rake::GemPackageTask.new(spec) do |pkg| pkg.gem_spec = spec end task :install => [:package] do sh %{sudo gem install pkg/#{GEM}-#{VERSION}} end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
soapex-0.1 | Rakefile |