Sha256: ce90ecbefab22a7691b9ddd47ebed396cafff986816d0fff769704377d37c35a
Contents?: true
Size: 620 Bytes
Versions: 1
Compression:
Stored size: 620 Bytes
Contents
desc "Run all specs in spec directory" task :test do |t| require 'spec' options = "--colour --format progress --loadby --reverse" files = FileList['spec/**/*_spec.rb'] system("spec #{options} #{files}") end #Gemspec require 'echoe' porject_name = 'smusher' Echoe.new(porject_name , '0.3') do |p| p.description = "Automatic Lossless Reduction Of All Your Images" p.url = "http://github.com/grosser/#{porject_name}" p.author = "Michael Grosser" p.email = "grosser.michael@gmail.com" p.dependencies = %w[rake json] end task :update_gemspec => [:manifest, :build_gemspec]
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
grosser-smusher-0.3 | Rakefile |