summaryrefslogtreecommitdiff
path: root/tasks/jeweler.rake
diff options
context:
space:
mode:
authorFrancis Luong (Franco) <fluong@fx-mbp-13.local>2016-05-15 08:16:53 -0400
committerFrancis Luong (Franco) <fluong@fx-mbp-13.local>2016-05-15 08:16:53 -0400
commit6cfff22eee8be26c68d75379e4306905023dd0dc (patch)
treecf915b7e7013780fc4998bda4f09461eeb03a832 /tasks/jeweler.rake
parent82d0d705f2acccfb3ce0bdf62ebfb9a2e710ca1d (diff)
parent2a10d48ca4b4e42bcbac708473ce73c6dd4e5b15 (diff)
downloadipaddress-6cfff22eee8be26c68d75379e4306905023dd0dc.tar.gz
Merge branch 'master' into lumean_51lumean_51
Diffstat (limited to 'tasks/jeweler.rake')
-rw-r--r--tasks/jeweler.rake15
1 files changed, 15 insertions, 0 deletions
diff --git a/tasks/jeweler.rake b/tasks/jeweler.rake
new file mode 100644
index 0000000..34d27ed
--- /dev/null
+++ b/tasks/jeweler.rake
@@ -0,0 +1,15 @@
+require 'jeweler'
+Jeweler::Tasks.new do |gem|
+ # gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
+ gem.name = "ipaddress"
+ gem.summary = %q{IPv4/IPv6 address manipulation library}
+ gem.description = %q{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.}
+ gem.email = "ceresa@gmail.com"
+ gem.homepage = "https://github.com/bluemonk/ipaddress"
+ gem.authors = ["bluemonk", "mikemackintosh"]
+ gem.license = "MIT"
+end
+Jeweler::RubygemsDotOrgTasks.new