Sha256: 2d9c591a266327d2656c106a1e628fb38ed6a8d65e5197b6d084d7413f4627c3

Contents?: true

Size: 1.17 KB

Versions: 7

Compression:

Stored size: 1.17 KB

Contents

require 'rubygems'
require 'rake'
require "rspec/core/rake_task"

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.6.0"
    gem.add_development_dependency "actionpack", ">= 3.0.0"
    gem.add_dependency "json_pure", ">= 1.4.6"
    gem.licenses = ["MIT"]
    # 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


RSpec::Core::RakeTask.new(:spec)

task :default => :spec


require 'rdoc/task'
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

7 entries across 7 versions & 1 rubygems

Version Path
on_the_spot-1.1.3 Rakefile
on_the_spot-1.1.2 Rakefile
on_the_spot-1.1.0 Rakefile
on_the_spot-1.0.6 Rakefile
on_the_spot-1.0.5 Rakefile
on_the_spot-1.0.4 Rakefile
on_the_spot-1.0.3 Rakefile