From db70fb47c09f16f51a14fe50a78c93e7bc2dbafc Mon Sep 17 00:00:00 2001 From: Ryan Duguid <152749594+ryanduguid@users.noreply.github.com> Date: Thu, 13 Aug 2026 02:34:48 +1000 Subject: [PATCH] fix: declare the packaged MIT licence --- xero-ruby.gemspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xero-ruby.gemspec b/xero-ruby.gemspec index 2662de90..f12b3a4b 100644 --- a/xero-ruby.gemspec +++ b/xero-ruby.gemspec @@ -23,7 +23,7 @@ Gem::Specification.new do |s| s.homepage = "https://developer.xero.com" s.summary = "Xero Accounting API Ruby Gem" s.description = "Xero API OAuth2.0 SDK - Ruby Gem" - s.license = "Unlicense" + s.license = "MIT" s.required_ruby_version = ">= 2.3" s.add_runtime_dependency 'faraday', '>= 2.0', '< 3.0' @@ -31,7 +31,7 @@ Gem::Specification.new do |s| s.add_runtime_dependency 'json-jwt', '~> 1.16', '>= 1.16.3' s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0' - s.files = Dir.glob("{lib}/**/*") + %w(README.md) + s.files = Dir.glob("{lib}/**/*") + %w(LICENSE README.md) s.test_files = `find spec/*`.split("\n") s.executables = [] s.require_paths = ["lib"]