Sha256: f7fb9067ede8c09f6c666ca8ed042836063254f428e5912bc5c0e4191d8e1664

Contents?: true

Size: 600 Bytes

Versions: 1

Compression:

Stored size: 600 Bytes

Contents

# -*- ruby -*-

require 'rubygems'
require 'hoe'
require './lib/net/fs/gmail.rb'

Hoe.new('net-fs-gmail', Net::FS::Gmail::VERSION) do |p|
  p.rubyforge_name  = 'net-fs-gmail'
  p.author          = 'blair christensen'
  p.email           = 'blair@devclue.com'
  p.summary         = 'Store files on Gmail'
  p.description     = p.paragraphs_of('README.txt', 2..2).join("\n\n")
  p.url             = p.paragraphs_of('README.txt', 0).first.split(/\n/)[2..-1]
  p.changes         = p.paragraphs_of('History.txt', 0..1).join("\n\n")
  p.extra_deps      << [ 'gmailer', '>= 0.1.7' ]
end

# vim: syntax=Ruby

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
net-fs-gmail-0.0.1 Rakefile