Sha256: b624adf9b564c15587d12499fa3aca23f07508ac133c8f29fdb2819fe3ffd52f

Contents?: true

Size: 1.04 KB

Versions: 1

Compression:

Stored size: 1.04 KB

Contents

task :clean do |task|
  if system "gem list -i mirage"
    puts "cleaning"
    system "gem uninstall -x mirage"
  end
  Dir['*.gem'].each { |gem| FileUtils.rm_f(gem) }
  task.reenable
end

Jeweler::Tasks.new do |gem|
  gem.name = "mirage-on-thin"
  gem.homepage = "https://github.com/lashd/mirage"
  gem.license = "MIT"
  gem.summary = "Mirage is a easy mock server for testing your applications"
  gem.description = 'Mirage aids testing of your applications by hosting mock responses so that your applications do not have to talk to real endpoints. Its accessible via HTTP and has a RESTful interface.'
  gem.authors = ["Leon Davis"]
  gem.executables = ['mirage']
  gem.post_install_message = %{
===============================================================================
Mirage v3:

Mirage has just gone up a major version from 2 to 3. If your project uses
a previous version take a look at https://github.com/lashd/mirage to see
what's changed
===============================================================================
}
end
Jeweler::RubygemsDotOrgTasks.new

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mirage-on-thin-3.0.8 tasks/packaging.rake