summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorbluemonk <ceresa@gmail.com>2014-07-27 13:54:02 +0200
committerbluemonk <ceresa@gmail.com>2014-07-27 13:54:02 +0200
commit5a7a601b32bf47b56db28f4bac3fbfc15d810b01 (patch)
treec4abae997636b49a505b63e14247ab35cd103b60 /Rakefile
parent9444c09ed7af17403df4a0c0abbd7b42538dadc7 (diff)
downloadipaddress-5a7a601b32bf47b56db28f4bac3fbfc15d810b01.tar.gz
clean up Rakefile from jeweler
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile19
1 files changed, 1 insertions, 18 deletions
diff --git a/Rakefile b/Rakefile
index b7dbf64..792f86f 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,25 +1,8 @@
require 'rubygems'
require 'rake'
require 'rake/clean'
+require "bundler/gem_tasks"
-begin
- require 'jeweler'
- Jeweler::Tasks.new do |gem|
- gem.name = "ipaddress"
- gem.summary = %Q{IPv4/IPv6 addresses manipulation library}
- gem.email = "ceresa@gmail.com"
- gem.homepage = "http://github.com/bluemonk/ipaddress"
- gem.authors = ["Marco Ceresa"]
- gem.description = <<-EOD
- IPAddress is a Ruby library designed to make manipulation
- of IPv4 and IPv6 addresses both powerful and simple. It mantains
- a layer of compatibility with Ruby's own IPAddr, while
- addressing many of its issues.
- EOD
- end
-rescue LoadError
- puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
-end
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|