Sha256: 72fc2b415c7336cc6ef87c0f0853a2f5a900017896a2ed2015f89c992869f3a3
Contents?: true
Size: 1.51 KB
Versions: 8
Compression:
Stored size: 1.51 KB
Contents
require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "grafico" gem.summary = %Q{Rails view helpers for the Grafico javascript graphing library} gem.description = %Q{Rails (2.x - 3.x) view helpers for graphs using Grafico, a javascript graphic library built on Raphael.} gem.email = "andy@brighterplanet.com" gem.homepage = "http://github.com/rossmeissl/grafico" gem.authors = ["Andy Rossmeissl"] # 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: gem install jeweler" end require 'rake/testtask' Rake::TestTask.new(:test) do |test| test.libs << 'lib' << 'test' test.pattern = 'test/**/test_*.rb' test.verbose = true end begin require 'rcov/rcovtask' Rcov::RcovTask.new do |test| test.libs << 'test' test.pattern = 'test/**/test_*.rb' test.verbose = true end rescue LoadError task :rcov do abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov" end end task :test => :check_dependencies task :default => :test require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.rdoc_dir = 'rdoc' rdoc.title = "grafico #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
8 entries across 8 versions & 1 rubygems
Version | Path |
---|---|
grafico-0.2.5 | Rakefile |
grafico-0.2.4 | Rakefile |
grafico-0.2.3 | Rakefile |
grafico-0.2.2 | Rakefile |
grafico-0.2.1 | Rakefile |
grafico-0.2.0 | Rakefile |
grafico-0.1.1 | Rakefile |
grafico-0.1.0 | Rakefile |