Sha256: 0bc036418a076781460e82a3a63b26a08838ca4cc333378d74f62dc2256d637e

Contents?: true

Size: 588 Bytes

Versions: 3

Compression:

Stored size: 588 Bytes

Contents

# -*- ruby -*-

require 'rubygems'
require 'hoe'

Hoe.plugin :git
Hoe.plugin :isolate
Hoe.plugin :minitest

Hoe.spec 'marshal-structure' do
  developer 'Eric Hodel', 'drbrain@segment7.net'

  rdoc_locations << 'docs.seattlerb.org:/data/www/docs.seattlerb.org/marshal-structure/'

  self.readme_file = 'README.rdoc'
  self.extra_rdoc_files << 'README.rdoc' # HACK fix in Hoe

  if respond_to? :isolate_dir= then # HACK Hoe issue #7
    self.isolate_dir = 'tmp/isolate'
  else
    warn 'please: gem install isolate'
  end

  extra_dev_deps << ['ben_string', '~> 1']
end

# vim: syntax=ruby

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
marshal-structure-1.1.1 Rakefile
marshal-structure-1.1 Rakefile
marshal-structure-1.0 Rakefile