Sha256: 808c67a4fe81d42927daf07ca8ba259f382476bc02bc165d74436f26c682f676

Contents?: true

Size: 531 Bytes

Versions: 3

Compression:

Stored size: 531 Bytes

Contents

# -*- ruby -*-

require 'rubygems'
require 'hoe'

Hoe.plugin :minitest
Hoe.plugin :git

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

3 entries across 3 versions & 1 rubygems

Version Path
benchmark-ips-2.4.0 Rakefile
benchmark-ips-2.3.0 Rakefile
benchmark-ips-2.2.0 Rakefile