Sha256: 5fd8de2005680b66043c9570148a1e3662f969a9f10c923c6d614a6de44ca129

Contents?: true

Size: 1.68 KB

Versions: 11

Compression:

Stored size: 1.68 KB

Contents

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 is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "mage-hand"
  gem.homepage = "http://github.com/shammond42/mage-hand"
  gem.license = "MIT"
  gem.summary = %Q{Ruby wrapper around the Obsidian Portal API}
  gem.description = %Q{mage-hand is a ghostly hand that reaches across the internet to access the Obsidian Portal API.}
  gem.email = "shammond@northpub.com"
  gem.authors = ["Steven Hammond"]
  gem.add_runtime_dependency 'oauth', '>= 0.4.4'
  # Include your dependencies below. Runtime dependencies are required when using your gem,
  # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
  #  gem.add_runtime_dependency 'jabber4r', '> 0.1'
  #  gem.add_development_dependency 'rspec', '> 1.2.3'
end
Jeweler::RubygemsDotOrgTasks.new

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end

require 'rcov/rcovtask'
Rcov::RcovTask.new do |test|
  test.libs << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end

task :default => :test

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "mage-hand #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
mage-hand-0.4.0 Rakefile
mage-hand-0.3.2 Rakefile
mage-hand-0.3.1 Rakefile
mage-hand-0.3.0 Rakefile
mage-hand-0.2.1 Rakefile
mage-hand-0.2.0 Rakefile
mage-hand-0.1.2 Rakefile
mage-hand-0.1.1 Rakefile
mage-hand-0.1.0 Rakefile
mage-hand-0.0.1 Rakefile
mage-hand-0.0.0 Rakefile