Sha256: 8a008694a3d750ba999c76711a1a14cb0854eca668c75d38f3988d2968ce85d9
Contents?: true
Size: 799 Bytes
Versions: 1
Compression:
Stored size: 799 Bytes
Contents
# -*- ruby -*- require 'rubygems' require 'hoe' require './lib/acts_as_runnable_code.rb' Hoe.new('acts_as_runnable_code', ActsAsRunnableCode::VERSION) do |p| p.rubyforge_name = 'acts_as_runnable_code' p.author = 'David Stevenson' p.email = 'ds@elctech.com' p.summary = 'Mark a class as containing a method which returns sandbox runnable code. Helps by building the sandbox and setting up the eval for you.' p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n") p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1] p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n") p.rubyforge_name = "runnable-code" p.remote_rdoc_dir = "" p.rsync_args << ' --exclude=statsvn/' p.extra_deps << ['acts_as_wrapped_class', '>= 1.0.1'] end # vim: syntax=Ruby
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
acts_as_runnable_code-1.0.2 | Rakefile |