Sha256: 44b9c6493be11fab06863cc5cdeb62586cf84142d211ba34b7e947f1d3dbf961
Contents?: true
Size: 982 Bytes
Versions: 2
Compression:
Stored size: 982 Bytes
Contents
require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "on_the_spot" gem.summary = %Q{unobtrusive in place editing} gem.description = %Q{Unobtrusive in place editing, using jEditable; only works in Rails 3} gem.email = "nathan@dixis.com" gem.homepage = "http://github.com/nathanvda/on_the_spot" gem.authors = ["Nathan Van der Auwera"] gem.add_development_dependency "rspec", ">= 2.0.0.beta20" # 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/rdoctask' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.rdoc_dir = 'rdoc' rdoc.title = "on_the_spot #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
on_the_spot-0.0.1 | Rakefile |
on_the_spot-0.0.0.beta2 | Rakefile |