Sha256: 38a066845baed83c8c213826d3471d04e93cdb522d1fa07b0b1e61667d38f5a6
Contents?: true
Size: 1.29 KB
Versions: 4
Compression:
Stored size: 1.29 KB
Contents
namespace :specs do require 'spec/rake/spectask' @spec_opts = '--colour --format specdoc' desc "Run functional specs for Albacore" Spec::Rake::SpecTask.new :all do |t| t.spec_files = FileList['specs/*_spec.rb'] t.spec_opts << @spec_opts end end namespace :jeweler do begin require 'jeweler' Jeweler::Tasks.new do |gs| gs.name = "seabass" gs.summary = "Seabass-Safe Rake Tasks For The Deployment Of .NET Systems" gs.description = "Easily deploy your .NET solutions with Ruby and Rake, using this suite of Rake tasks." gs.email = "jamiehollingworth@gmail.com" gs.homepage = "http://github.com/jhollingworth/seabass" gs.authors = ["James Hollingworth"] gs.has_rdoc = false gs.files.exclude("seabass.gemspec", ".gitignore") gs.add_dependency('rake', '>= 0.8.7') gs.add_dependency('albacore', '>= 0.1.5') gs.add_development_dependency('rspec', '>= 1.2.8') gs.add_development_dependency('jeweler', '>= 1.2.1') gs.add_development_dependency('mocha', '>= 0.9.8') end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com" end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
seabass-0.2.4 | rakefile.rb |
seabass-0.2.2 | rakefile.rb |
seabass-0.2.1 | rakefile.rb |
seabass-0.2.0 | rakefile.rb |