require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gemspec| gemspec.name = "turbo-generators" gemspec.summary = "Generator scripts for adding very simple crud resources to rails apps" gemspec.description = "Some basic scripts for automating the process of creating simple crud resources. Presently there are two generators, turbo_layout and turbo_blog. Guess what they do? Nothing special, then just automate a process that I seem to repeat often." gemspec.email = "stephen@stephenmurdoch.eu" gemspec.homepage = "http://github.com/murdoch/turbo-generators" gemspec.authors = ["Stephen Murdoch"] end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com" end Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }