Sha256: 22696e132fba7ed241d4c5107844530f326601badd59e3993bcc4d8265306c0e

Contents?: true

Size: 550 Bytes

Versions: 14

Compression:

Stored size: 550 Bytes

Contents

# -*- ruby -*-

require 'rubygems'
require 'hoe'

Hoe.plugin :minitest
Hoe.plugin :git
Hoe.plugin :ignore

hoe = Hoe.spec 'benchmark-ips' do
  developer('Evan Phoenix', 'evan@phx.io')

  self.readme_file = 'README.md'

  license "MIT"
end

file "#{hoe.spec.name}.gemspec" => ['Rakefile', "lib/benchmark/ips.rb"] do |t|
  puts "Generating #{t.name}"
  File.open(t.name, 'wb') { |f| f.write hoe.spec.to_ruby }
end

desc "Generate or update the standalone gemspec file for the project"
task :gemspec => ["#{hoe.spec.name}.gemspec"]


# vim: syntax=ruby

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
benchmark-ips-2.9.2 Rakefile
benchmark-ips-2.9.1 Rakefile
benchmark-ips-2.9.0 Rakefile
benchmark-ips-2.8.4 Rakefile
benchmark-ips-2.8.3 Rakefile
benchmark-ips-2.8.2 Rakefile
benchmark-ips-2.8.0 Rakefile
benchmark-ips-2.7.2 Rakefile
benchmark-ips-2.7.1 Rakefile
benchmark-ips-2.7.0 Rakefile
benchmark-ips-2.6.1 Rakefile
benchmark-ips-2.6.0 Rakefile
benchmark-ips-2.5.0 Rakefile
benchmark-ips-2.4.1 Rakefile