Sha256: ec04f37c85a456b2e73b20048ee25cf48d0c903c3f416845095a0153e5c062d6

Contents?: true

Size: 916 Bytes

Versions: 10

Compression:

Stored size: 916 Bytes

Contents

require 'rubygems'
require 'rake'

task :gem => :build

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "rcstorable"
    gem.summary = "Ruby C implementation of perl Storable's thaw"
    gem.description = "Super-fast Ruby C implementation of perl Storable's thaw"
    gem.email = "burke.libbey@canadadrugs.com"
    gem.homepage = "http://canadadrugs.com"
    gem.authors = ["Burke Libbey"]
    gem.files.include '{spec,lib,ext}/**/*'
    gem.extensions = ["ext/extconf.rb"]
  end
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end

begin
  require 'rcov/rcovtask'
  Rcov::RcovTask.new do |test|
    test.libs << 'spec'
    test.pattern = 'spec/**/*_spec.rb'
    test.verbose = true
  end
rescue LoadError
  task :rcov do
    abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
rcstorable-0.3.1 Rakefile
rcstorable-0.3.0 Rakefile
rcstorable-0.2.4 Rakefile
rcstorable-0.2.3 Rakefile
rcstorable-0.2.1 Rakefile
rcstorable-0.2.0 Rakefile
rcstorable-0.1.4 Rakefile
rcstorable-0.1.3 Rakefile
rcstorable-0.1.2 Rakefile
rcstorable-0.1.1 Rakefile