Sha256: e2b5faf9b0f6b6750d27df0bda7dfc943873ff92585907b2eb7ba309fda7cfa8

Contents?: true

Size: 864 Bytes

Versions: 9

Compression:

Stored size: 864 Bytes

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  gem.name = "hotseat"
  gem.homepage = "http://github.com/eladkehat/hotseat"
  gem.license = "MIT"
  gem.summary = %Q{Add work queue functionality to an existing CouchDB database}
  #gem.description = %Q{longer description of the gem}
  gem.email = "eladkehat@gmail.com"
  gem.authors = ["Elad Kehat"]
end
Jeweler::RubygemsDotOrgTasks.new

require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end

task :default => :spec

require 'yard'
YARD::Rake::YardocTask.new

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
hotseat-0.7.0 Rakefile
hotseat-0.6.0 Rakefile
hotseat-0.5.1 Rakefile
hotseat-0.5.0 Rakefile
hotseat-0.4.0 Rakefile
hotseat-0.3.0 Rakefile
hotseat-0.2.0 Rakefile
hotseat-0.1.2 Rakefile
hotseat-0.1.1 Rakefile