Sha256: 63324b4e49904fd4a39734f50bb84af4cff9224b9ae5111ef4d46444987b8d1d

Contents?: true

Size: 1.23 KB

Versions: 10

Compression:

Stored size: 1.23 KB

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 is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "gmpoint"
  gem.homepage = "http://github.com/dangluan/gmpoint"
  gem.license = "MIT"
  gem.summary = %Q{Help to point on Google Map}
  gem.description = %Q{Help to point on Goolge Map Description}
  gem.email = "peter@rubify.com"
  gem.authors = ["Peter Dang"]
  gem.version = File.exist?('VERSION') ? File.read('VERSION') : ""
  # dependencies defined in Gemfile
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

task :default => :test

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

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

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
gmpoint-0.1.3 Rakefile
gmpoint-0.1.0 Rakefile
gmpoint-0.0.9 Rakefile
gmpoint-0.0.8 Rakefile
gmpoint-0.0.7 Rakefile
gmpoint-0.0.6 Rakefile
gmpoint-0.0.5 Rakefile
gmpoint-0.0.4 Rakefile
gmpoint-0.0.3 Rakefile
gmpoint-0.0.2 Rakefile