From 69df1cd6d359a4b11463dc5bb29372675125b34b Mon Sep 17 00:00:00 2001 From: Max Chernyak Date: Thu, 3 Aug 2023 22:54:45 -0400 Subject: [PATCH] Fix personal info and links --- LICENSE | 2 +- README.md | 2 +- wordmap.gemspec | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/LICENSE b/LICENSE index 261eeb9..fd162f4 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2023 Max Chernyak Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/README.md b/README.md index 3b2aac0..53779c3 100644 --- a/README.md +++ b/README.md @@ -191,7 +191,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To ## Contributing -Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/wordmap. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/wordmap/blob/main/CODE_OF_CONDUCT.md). +Bug reports and pull requests are welcome on GitHub at https://github.com/maxim/wordmap. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/wordmap/blob/main/CODE_OF_CONDUCT.md). ## Code of Conduct diff --git a/wordmap.gemspec b/wordmap.gemspec index 4526b0b..13fd640 100644 --- a/wordmap.gemspec +++ b/wordmap.gemspec @@ -3,17 +3,17 @@ require_relative 'lib/wordmap/version' Gem::Specification.new do |spec| spec.name = 'wordmap' spec.version = Wordmap::VERSION - spec.authors = ['Maxim Chernyak'] - spec.email = ['madfancier@gmail.com'] + spec.authors = ['Max Chernyak'] + spec.email = ['hello@max.engineer'] spec.summary = 'Look up data from disk without using your RAM.' spec.description = 'Wordmap is a simple way to lookup data directly from disk, bypassing RAM. It uses pread (no buffering), and takes advantage of SSD\'s constant seek time. The data is stored in equal size "cells" making it easy to calculate where things are located based on vectors.' - spec.homepage = 'https://github.com/scottscheapflights/wordmap' + spec.homepage = 'https://github.com/maxim/wordmap' spec.license = 'Apache-2.0' spec.metadata['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = spec.homepage - spec.metadata['changelog_uri'] = 'https://github.com/scottscheapflights/wordmap/blob/master/CHANGELOG.md' + spec.metadata['changelog_uri'] = 'https://github.com/maxim/wordmap/blob/master/CHANGELOG.md' spec.required_ruby_version = Gem::Requirement.new('>= 2.4.0') spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do