Sha256: 7f253393744f3eaaba0c99a5eb5aa8fc5e6cab59465ef030b8a353e64b7dc4f7

Contents?: true

Size: 471 Bytes

Versions: 1

Compression:

Stored size: 471 Bytes

Contents

begin
  require "#{dir = File.dirname(__FILE__)}/task/gemgem"
rescue LoadError
  sh 'git submodule update --init --recursive'
  exec Gem.ruby, '-S', $PROGRAM_NAME, *ARGV
end

%w[lib pork/lib].each do |path|
  $LOAD_PATH.unshift(File.expand_path("#{dir}/#{path}"))
end

Gemgem.init(dir) do |s|
  s.name    = 'pork-rspec'
  s.version = '0.5.0'

  %w[pork muack].each{ |g| s.add_runtime_dependency(g) }

  # exclude pork
  s.files.reject!{ |f| f.start_with?('pork/') }
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pork-rspec-0.5.0 Rakefile