Sha256: 2c2c6142780b8281564470cec74f9da003d2052bde3a53d7e8eba3d7565b9b71
Contents?: true
Size: 1.04 KB
Versions: 8
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" 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
8 entries across 8 versions & 1 rubygems