Sha256: 8bce26175b846149c36b203ab77dc71664d7ff94ef875f0856bd4b96dee616d8

Contents?: true

Size: 1.16 KB

Versions: 14

Compression:

Stored size: 1.16 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "zephyr"
  gem.homepage = "http://github.com/mhat/zephyr"
  gem.license = "MIT"
  gem.summary = %Q{Simple HTTP client using Typheous, derived from the Riak client}
  gem.description = %Q{Simple HTTP client using Typheous, derived from the Riak client}
  gem.email = "matt.knopp@gmail.com"
  gem.authors = ["Matt Knopp"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

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

##require 'rcov/rcovtask'
##Rcov::RcovTask.new do |test|
##  test.libs << 'test'
##  test.pattern = 'test/**/test_*.rb'
##  test.verbose = true
##  test.rcov_opts << '--exclude "gems/*"'
##end

task :default => :test

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
zephyr-1.1.7 Rakefile
zephyr-1.1.6 Rakefile
zephyr-1.1.5 Rakefile
zephyr-1.1.3 Rakefile
zephyr-1.1.2 Rakefile
zephyr-1.1.1 Rakefile
zephyr-1.1.0 Rakefile
zephyr-1.0.9 Rakefile
zephyr-1.0.8 Rakefile
zephyr-1.0.6 Rakefile
zephyr-1.0.5 Rakefile
zephyr-1.0.4 Rakefile
zephyr-1.0.3 Rakefile
zephyr-1.0.2 Rakefile