Sha256: b8050851edcc67a44ba190dadc884e0f8225659e86014d7d18160413f2e17b93

Contents?: true

Size: 1.06 KB

Versions: 18

Compression:

Stored size: 1.06 KB

Contents

require 'rubygems'
require 'rake'

begin
  # http://github.com/technicalpickles/jeweler
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "imw"
    gem.summary = "The Infinite Monkeywrench (IMW) makes acquiring, extracting, transforming, loading, and packaging data easy."
    gem.description = "The Infinite Monkeywrench (IMW) is a Ruby frameworks to simplify the tasks of acquiring, extracting, transforming, loading, and packaging data. It minimizes programmer time by encapsulating common data workflows and patterns and creating interfaces to many other useful Ruby libraries."
    gem.email = "coders@infochimps.org"
    gem.homepage = "http://github.com/infochimps/imw"
    gem.authors = ["Dhruv Bansal", "Philip (flip) Kromer"]
    
    gem.files.exclude "old/**/*"
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available.  Install it with: sudo gem install jeweler"
end

desc "Build tags"
task :tags do
  system "etags -R README.rdoc bin etc examples lib spec"
end

desc "Build docs"
task :docs do
  system "yardoc"
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
imw-0.2.18 Rakefile
imw-0.2.17 Rakefile
imw-0.2.16 Rakefile
imw-0.2.15 Rakefile
imw-0.2.14 Rakefile
imw-0.2.13 Rakefile
imw-0.2.12 Rakefile
imw-0.2.11 Rakefile
imw-0.2.10 Rakefile
imw-0.2.9 Rakefile
imw-0.2.8 Rakefile
imw-0.2.7 Rakefile
imw-0.2.6 Rakefile
imw-0.2.5 Rakefile
imw-0.2.4 Rakefile
imw-0.2.3 Rakefile
imw-0.2.2 Rakefile
imw-0.2.1 Rakefile