summaryrefslogtreecommitdiff
path: root/nickserver.gemspec
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2017-09-23 13:43:29 +0200
committerAzul <azul@riseup.net>2017-09-23 16:53:27 +0200
commitf40ef14010af08c49810c0a6a2349072948170e6 (patch)
tree19a2b13d35bb45b7d36c0c6f84fd483efbf55ece /nickserver.gemspec
parent40916407517f4bdb75a295caf29e02d4f403349b (diff)
style: more rubocop fixes
Diffstat (limited to 'nickserver.gemspec')
-rw-r--r--nickserver.gemspec8
1 files changed, 7 insertions, 1 deletions
diff --git a/nickserver.gemspec b/nickserver.gemspec
index 035efe5..aa4b3b8 100644
--- a/nickserver.gemspec
+++ b/nickserver.gemspec
@@ -1,5 +1,7 @@
# -*- encoding: utf-8 -*-
+require 'English'
+
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'nickserver/version'
@@ -10,8 +12,12 @@ Gem::Specification.new do |gem|
gem.authors = ['elijah']
gem.email = ['elijah@riseup.net']
gem.description = 'Provides a directory service to map uid to public key.'
- gem.summary = 'Nickserver provides the ability to map a uid (user@domain.org) to a public key. This is the opposite of a key server, whose job it is to map public key to uid. Nickserver is lightweight and asynchronous.'
gem.homepage = 'https://leap.se'
+ gem.summary = <<-EOSUM
+Nickserver provides the ability to map a uid (user@domain.org) to a public key.
+This is the opposite of a key server, whose job it is to map public key to uid.
+Nickserver is lightweight and asynchronous.
+ EOSUM
gem.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }