Sha256: 4eb1aa815f52a8288452c47b624662bed5e23684e237968c6c9ee224103e15fc

Contents?: true

Size: 1.36 KB

Versions: 22

Compression:

Stored size: 1.36 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.name = "all_seeing_eye"
  gem.homepage = "http://github.com/Veraticus/all_seeing_eye"
  gem.license = "MIT"
  gem.summary = 'Log requests to Redis, then view them with pretty graphs'
  gem.description = %Q{AllSeeingEye observes all requests, with parameters that you specify, to Redis. Then it composes them into graphs for you to see.}
  gem.email = "veraticus@gmail.com"
  gem.authors = ["Josh Symonds"]
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

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "all_seeing_eye #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
all_seeing_eye-0.1.1 Rakefile
all_seeing_eye-0.1.0 Rakefile
all_seeing_eye-0.0.20 Rakefile
all_seeing_eye-0.0.19 Rakefile
all_seeing_eye-0.0.18 Rakefile
all_seeing_eye-0.0.17 Rakefile
all_seeing_eye-0.0.16 Rakefile
all_seeing_eye-0.0.15 Rakefile
all_seeing_eye-0.0.14 Rakefile
all_seeing_eye-0.0.13 Rakefile
all_seeing_eye-0.0.12 Rakefile
all_seeing_eye-0.0.11 Rakefile
all_seeing_eye-0.0.10 Rakefile
all_seeing_eye-0.0.9 Rakefile
all_seeing_eye-0.0.8 Rakefile
all_seeing_eye-0.0.7 Rakefile
all_seeing_eye-0.0.6 Rakefile
all_seeing_eye-0.0.5 Rakefile
all_seeing_eye-0.0.4 Rakefile
all_seeing_eye-0.0.3 Rakefile