summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorMike Mackintosh <m@zyp.io>2015-03-23 16:07:04 -0400
committerMike Mackintosh <m@zyp.io>2015-03-23 16:07:04 -0400
commit3b81b3e38c36e7c29e50a2e2acaf465b6f944d9a (patch)
treee0e64c3893d402d0d7f32490f68bd7da32a6288d /Rakefile
parenta8dc5aaae6cf823fa8d9eb82e1aeebd87085cb91 (diff)
parent069ff36f87a20c4261f0e7cc0f4147d7d446da4a (diff)
downloadipaddress-3b81b3e38c36e7c29e50a2e2acaf465b6f944d9a.tar.gz
merging in bundler, because it's 2015
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|