Sha256: d3ad67ccd1bc47ec0935b7d3a36ebaf5451cb89457f396ebeda5516fb9d2b101

Contents?: true

Size: 567 Bytes

Versions: 17

Compression:

Stored size: 567 Bytes

Contents

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

desc 'Default: run unit tests.'
task :default => :test

desc 'Test the google_analytics plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end

desc 'Generate documentation for the google_analytics plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'GoogleAnalytics'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
markcatley-google_analytics-1.0.1 Rakefile
markcatley-google_analytics-1.0.20080710 Rakefile
markcatley-google_analytics-1.0.20080714 Rakefile
markcatley-google_analytics-1.0.20080715 Rakefile
markcatley-google_analytics-1.0.20080717 Rakefile
markcatley-google_analytics-1.0.20080720 Rakefile
markcatley-google_analytics-1.0.20080822 Rakefile
parlement-0.10 vendor/plugins/google_analytics/Rakefile
parlement-0.14 vendor/plugins/google_analytics/Rakefile
parlement-0.11 vendor/plugins/google_analytics/Rakefile
parlement-0.12 vendor/plugins/google_analytics/Rakefile
parlement-0.13 vendor/plugins/google_analytics/Rakefile
parlement-0.17 vendor/plugins/google_analytics/Rakefile
parlement-0.8 vendor/plugins/google_analytics/Rakefile
parlement-0.6 vendor/plugins/google_analytics/Rakefile
parlement-0.7 vendor/plugins/google_analytics/Rakefile
parlement-0.9 vendor/plugins/google_analytics/Rakefile