diff --git a/fixy.gemspec b/fixy.gemspec index 287bd79..388d5b5 100644 --- a/fixy.gemspec +++ b/fixy.gemspec @@ -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'] + 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/**/*' + ]).select { |f| File.file?(f) } + 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'] diff --git a/lib/fixy/version.rb b/lib/fixy/version.rb index 125157b..f2a4dcd 100644 --- a/lib/fixy/version.rb +++ b/lib/fixy/version.rb @@ -1,3 +1,3 @@ module Fixy - VERSION = '0.6.1' + VERSION = '0.6.2' end