Sha256: 5ed9e75e267b9fee23636000dd72169255cc1c2a871353313b2e0c4bc2318b16

Contents?: true

Size: 813 Bytes

Versions: 9

Compression:

Stored size: 813 Bytes

Contents

require 'rubygems'
require 'hoe'
require File.join(File.dirname(__FILE__), 'lib', 'tinder', 'version')

# RDOC_OPTS = ['--quiet', '--title', "Tinder",
#     "--opname", "index.html",
#     "--line-numbers", 
#     "--main", "README",
#     "--inline-source"]
# 
# Generate all the Rake tasks

hoe = Hoe.new('tinder', ENV['VERSION'] || Tinder::VERSION::STRING) do |p|
  p.rubyforge_name = 'tinder'
  p.summary = "An (unofficial) Campfire API"
  p.description = "An API for interfacing with Campfire, the 37Signals chat application."
  p.author = 'Brandon Keepers'
  p.email = 'brandon@opensoul.org'
  p.url = 'http://tinder.rubyforge.org'
  p.test_globs = ["test/**/*_test.rb"]
  p.changes = p.paragraphs_of('CHANGELOG.txt', 0..1).join("\n\n")
  p.extra_deps << ['activesupport']
  p.extra_deps << ['hpricot']
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
timriley-tinder-1.1.9 Rakefile
tinder-0.1.2 Rakefile
tinder-0.1.0 Rakefile
tinder-0.1.1 Rakefile
tinder-1.1.7 Rakefile
tinder-0.1.4 Rakefile
tinder-0.1.5 Rakefile
tinder-0.1.3 Rakefile
tinder-0.1.6 Rakefile