Skip to content

Commit

Permalink
Fix personal info and links
Browse files Browse the repository at this point in the history
  • Loading branch information
maxim committed Aug 4, 2023
1 parent 6b2f458 commit 69df1cd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions wordmap.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 69df1cd

Please sign in to comment.