Sha256: 9e10850ce09e30c30b641e555b40c0605f84b5bc85cf996e69b55050292af8e9

Contents?: true

Size: 676 Bytes

Versions: 2

Compression:

Stored size: 676 Bytes

Contents

require 'echoe'
e = Echoe.new('rubyfb', '0.5.2') do |p|
  p.description    = "Firebird SQL access library"
  p.url            = "http://rubyforge.org/projects/rubyfb"
  p.author         = "George Georgiev"
  p.email          = "georgiev@heatbs.com"
  p.rdoc_pattern   = ["{examples,ext,lib}/*.rb", "CHANGELOG", "README", "LICENSE"]

  unless (ARGV & ["binpkg", "binrelease"]).empty?
    p.platform=Gem::Platform::CURRENT
    p.eval = Proc.new {
      self.extensions=nil
      self.platform=Gem::Platform::CURRENT
    }
  end
end
e.clean_pattern = e.clean_pattern - e.clean_pattern.grep(/^lib/)

task :binpkg => [:compile, :repackage]
task :binrelease => [:compile, :release]

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rubyfb-0.5.2-x86-linux Rakefile
rubyfb-0.5.2 Rakefile