Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions fixy.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,22 @@ require 'fixy/version'
Gem::Specification.new do |spec|
spec.name = 'fixy'
spec.version = Fixy::VERSION
spec.authors = ['Omar Skalli']
spec.email = ['omar@zenpayroll.com']
spec.authors = ['Gusto']
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is fine as it's current/more accurate about who and how to contact about this fork, but I would suggest moving info about the Fork into either the Description or Summary.

Alternatively, since it's an array, you could use both entries

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, Omar isn't here anymore so this gives more accurate

spec.email = ['gusto-opensource-buildkite@gusto.com']
spec.description = %q{Library for generating fixed width flat files.}
spec.summary = %q{Provides a DSL for defining, generating, and debugging fixed width documents.}
spec.homepage = 'https://github.com/chetane/fixy'
spec.homepage = 'https://github.com/gusto/fixy'
spec.license = 'MIT'

spec.files = `git ls-files`.split($/)
spec.files = Dir.chdir(__dir__) do
Dir.glob([
'*.gemspec',
'LICENSE.txt',
'README.md',
'CHANGELOG.md',
'lib/**/*'
])
Comment thread
ahaverbuch marked this conversation as resolved.
Outdated
end
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
Expand Down
2 changes: 1 addition & 1 deletion lib/fixy/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Fixy
VERSION = '0.6.1'
VERSION = '0.6.2'
end