Sha256: b86cc05cdf5460dd94779b64d1e9b73cbd32467a88d0314335b3eb4c9d456063
Contents?: true
Size: 1.47 KB
Versions: 5
Compression:
Stored size: 1.47 KB
Contents
require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "restbox" gem.summary = "Simple restful ajax overlay to work with jQuery and Rails" gem.description = "Simple restful ajax overlay to work with jQuery and Rails" gem.email = "richardiux@gmail.com" gem.homepage = "http://github.com/richardiux/restbox" gem.authors = ["Richard Millan"] gem.add_development_dependency "thoughtbot-shoulda", ">= 0" # 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: sudo 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 = "restbox #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
restbox-0.2.0 | Rakefile |
restbox-0.1.2 | Rakefile |
restbox-0.1.1 | Rakefile |
restbox-0.1.0 | Rakefile |
restbox-0.0.1 | Rakefile |