Sha256: 9c7b6c6641a91431f2cec949d621f0e25e1c54ba2bcc4e24a61e09f067f202eb
Contents?: true
Size: 1.16 KB
Versions: 6
Compression:
Stored size: 1.16 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@rubiii.com" spec.homepage = "http://github.com/rubiii/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
6 entries across 6 versions & 2 rubygems