Sha256: f1633eeb5aa22f67f2c1e6c3851d6679ec4357f45a6492f6163f0fea4e0bd61c

Contents?: true

Size: 1.22 KB

Versions: 20

Compression:

Stored size: 1.22 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = 'vertica'
    gem.summary = 'Pure ruby library for interacting with Vertica'
    gem.description = 'Query Vertica with ruby'

    gem.email = 'sprsquish@gmail.com'
    gem.homepage = 'http://github.com/sprsquish/vertica'
    gem.authors = ['Jeff Smick', 'Matt Bauer', 'Willem van Bergen']

    gem.files = FileList["[A-Z]*", 'lib/**/*.rb'].to_a

    gem.test_files = FileList['test/**/*.rb']
    
    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end

  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'test' << 'lib'
  test.pattern = 'test/**/*_test.rb'
  test.verbose = true
end

begin
  require 'yard'
  YARD::Rake::YardocTask.new do |t|
    t.options = ['--no-private', '-m', 'markdown', '-o', './doc']
  end
rescue LoadError
  task :yardoc do
    abort "YARD is not available. In order to run yardoc, you must: sudo gem install yard"
  end
end

desc 'Generate documentation'
task :doc => :yard
task :default => :test

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
vertica-0.11.0 Rakefile
vertica-0.10.5 Rakefile
vertica-0.10.4 Rakefile
vertica-0.10.3 Rakefile
vertica-0.10.2 Rakefile
vertica-0.10.1 Rakefile
vertica-0.10.0 Rakefile
vertica-0.9.6 Rakefile
vertica-0.9.5 Rakefile
vertica-0.9.4 Rakefile
vertica-0.9.3 Rakefile
vertica-0.9.2 Rakefile
vertica-0.9.1 Rakefile
vertica-0.9.0 Rakefile
vertica-0.9.0.beta9 Rakefile
vertica-0.9.0.beta8 Rakefile
vertica-0.9.0.beta7 Rakefile
vertica-0.9.0.beta6 Rakefile
vertica-0.9.0.beta5 Rakefile
vertica-0.9.0.beta4 Rakefile