Sha256: a55435df46bbec6d1ccc99122ed4e1312196241314fd647c0332132f465829e4
Contents?: true
Size: 1.17 KB
Versions: 3
Compression:
Stored size: 1.17 KB
Contents
require "rubygems" require "rake" require "spec/rake/spectask" require "rake/rdoctask" task :default => :spec Spec::Rake::SpecTask.new do |spec| spec.spec_files = FileList["spec/**/*_spec.rb"] spec.spec_opts << "--color" end Rake::RDocTask.new do |rdoc| rdoc.title = "Apricot eats Gorilla" rdoc.rdoc_dir = "rdoc" rdoc.main = "README.rdoc" rdoc.rdoc_files.include("README.rdoc", "lib/**/*.rb") rdoc.options = ["--line-numbers", "--inline-source"] end begin require "jeweler" Jeweler::Tasks.new do |spec| spec.name = "apricoteatsgorilla" spec.author = "Daniel Harrington" spec.email = "me@d-harrington.com" spec.homepage = "http://github.com/smacks/apricoteatsgorilla" spec.summary = "SOAP communication helper." spec.description = spec.summary spec.rdoc_options += [ "--title", "Apricot eats Gorilla", "--main", "README.rdoc", "--line-numbers", "--inline-source" ] spec.add_runtime_dependency("hpricot", "0.8.241") spec.add_development_dependency("rspec", ">= 1.2.8") end rescue LoadError puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com" end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
rubiii-apricoteatsgorilla-0.5.2 | Rakefile |
smacks-apricoteatsgorilla-0.5.1 | Rakefile |
smacks-apricoteatsgorilla-0.5.2 | Rakefile |