Sha256: 9c209e8358d2c8f91cd6ff6484f4e4bc1aea70f9d602969e1f537482ab1c10cf

Contents?: true

Size: 877 Bytes

Versions: 1

Compression:

Stored size: 877 Bytes

Contents

require 'rake'
require 'rake/clean'
require 'rubygems/package_task'
require 'time'
require 'date'

PROJECT_SPECS = Dir['spec/**/*.rb']
PROJECT_MODULE = 'Makura'
PROJECT_VERSION = (ENV['VERSION'] || Date.today.strftime("%Y.%m.%d")).dup

GEMSPEC = Gem::Specification.new{|s|
  s.name         = 'makura'
  s.author       = "Michael 'manveru' Fellinger"
  s.summary      = "Ruby wrapper around the CouchDB REST API."
  s.email        = 'm.fellinger@gmail.com'
  s.homepage     = 'http://github.com/manveru/makura'
  s.platform     = Gem::Platform::RUBY
  s.version      = PROJECT_VERSION
  s.files        = `git ls-files`.split("\n").sort
  s.has_rdoc     = true
  s.require_path = 'lib'
  s.executables = ['makura']
  s.bindir = "bin"

  s.add_runtime_dependency('rest-client', '>= 0.8.1')
}

Dir['tasks/*.rake'].each{|f| import(f) }

task :default => [:bacon]

CLEAN.include('')

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
makura-2012.01 Rakefile