Skip to content

Commit

Permalink
Use standard delimiters
Browse files Browse the repository at this point in the history
  • Loading branch information
weppos committed Nov 8, 2023
1 parent 5c5cc4b commit 6961e81
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# frozen_string_literal: true

source 'https://rubygems.org'
source "https://rubygems.org"

gemspec

gem "rubocop", "1.12.1", require: false
gem 'rubocop-rspec', require: false
gem "rubocop", require: false
gem "rubocop-rspec", require: false
20 changes: 10 additions & 10 deletions whois.gemspec
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'whois/version'
$:.push File.expand_path("../lib", __FILE__)
require "whois/version"

Gem::Specification.new do |s|
s.name = 'whois'
s.name = "whois"
s.version = Whois::VERSION
s.authors = ['Simone Carletti']
s.email = ['[email protected]']
s.homepage = 'https://whoisrb.org/'
s.summary = 'An intelligent pure Ruby WHOIS client and parser.'
s.description = 'Whois is an intelligent WHOIS client and parser written in pure Ruby. It can query registry data for IPv4, IPv6 and top level domains, and parse the responses into easy-to-use Ruby objects via the whois-parser library.'
s.license = 'MIT'
s.authors = ["Simone Carletti"]
s.email = ["[email protected]"]
s.homepage = "https://whoisrb.org/"
s.summary = "An intelligent pure Ruby WHOIS client and parser."
s.description = "Whois is an intelligent WHOIS client and parser written in pure Ruby. It can query registry data for IPv4, IPv6 and top level domains, and parse the responses into easy-to-use Ruby objects via the whois-parser library."
s.license = "MIT"

s.required_ruby_version = '>= 2.4'
s.required_ruby_version = ">= 2.4"

s.require_paths = %w( lib )
s.executables =%w( whoisrb )
Expand Down

0 comments on commit 6961e81

Please sign in to comment.