Sha256: 0ff6412b90ee3f727ed1b933d5dcfd30a52d0e7aedbe2bbbb1b724f685562be3

Contents?: true

Size: 1.08 KB

Versions: 19

Compression:

Stored size: 1.08 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "gatoroid"
    gem.summary = %Q{Gatoroid is an easy scalable analytics plugin using MongoDB and Mongoid}
    gem.description = %Q{Gatoroid is a way to store analytics using the poweful features of MongoDB for scalability}
    gem.email = "kevinjhaight@gmail.com"
    gem.homepage = "http://github.com/alayho/gatoroid"
    gem.authors = ["Kevin Haight"]
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
end

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task :default => :spec

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "gatoroid #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
gatoroid-0.2.17 Rakefile
gatoroid-0.2.16 Rakefile
gatoroid-0.2.15 Rakefile
gatoroid-0.2.14 Rakefile
gatoroid-0.2.13 Rakefile
gatoroid-0.2.12 Rakefile
gatoroid-0.2.11 Rakefile
gatoroid-0.2.10 Rakefile
gatoroid-0.2.9 Rakefile
gatoroid-0.2.8 Rakefile
gatoroid-0.2.7 Rakefile
gatoroid-0.2.6 Rakefile
gatoroid-0.2.5 Rakefile
gatoroid-0.2.4 Rakefile
gatoroid-0.2.3 Rakefile
gatoroid-0.2.2 Rakefile
gatoroid-0.2.1 Rakefile
gatoroid-0.2.0 Rakefile
gatoroid-0.1.0 Rakefile