Sha256: 15bb577e0aee0d4e591b455fc3f5792c0ed7800645b8d5da710ff382034f96c6

Contents?: true

Size: 1.37 KB

Versions: 1

Compression:

Stored size: 1.37 KB

Contents

# -*- ruby -*-

require 'rubygems'
require 'hoe'
$: << File.dirname(__FILE__) + '/lib'
require './lib/facebooker.rb'

Hoe.new('facebooker', Facebooker::VERSION) do |p|
  p.rubyforge_name = 'facebooker'
  p.author = ['Chad Fowler', 'Patrick Ewing','Mike Mangino','Shane Vitarana']
  p.email = 'mmangino@elevatedrails.com'
  p.summary = 'Pure, idiomatic Ruby wrapper for the Facebook REST API.'
  p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
  p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
  p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
  p.remote_rdoc_dir = '' # Release to root
end

# vim: syntax=Ruby
# 
# 
# require File.dirname(__FILE__) + '/vendor/gardener/lib/gardener'
# 
# require 'facebooker'
# 
# Gardener.configure do
#   gem_spec do |spec|
#     spec.name              = 'facebooker'
#     spec.version           = Gem::Version.new(Facebooker::VERSION::STRING)
#     spec.summary           = "Pure, idiomatic Ruby wrapper for the Facebook REST API."
#     spec.email             = 'chad@infoether.com'
#     spec.author            = ['Chad Fowler', 'Patrick Ewing','Mike Mangino','Shane Vitarana']
#     spec.extra_rdoc_files  = %w(COPYING)
#     spec.rdoc_options      = ['--title', "Gardener",
#                               '--main',  'README',
#                               '--line-numbers', '--inline-source']
#   end
# end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
facebooker-0.9.5 Rakefile