killbill-avatax 4.0.2 → 4.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cdbdfc313c128a86835be16793cb54e9bc6f25a0f243e05454281cc828480457
4
- data.tar.gz: d05a886280fcf3811cfeaeca822ee1d73d0337ff8e1b44be71a10b46093973d3
3
+ metadata.gz: 3f493b9c2fb5737a4588cf84e614906bf3ad1e447e18d9170c650b6998a5282d
4
+ data.tar.gz: 7f19d8bae83e72861291a3a38e157f615f6ce5982315bcf603447a597df30b25
5
5
  SHA512:
6
- metadata.gz: 709389016cc1b4e1d6f54434fc96568494e932c02b31ad742a8e92e07a9b37eec880507caff05e60562a6a8eaa685c946580f9c6df3801af2a48dbf37e459b98
7
- data.tar.gz: 87c798a51593d91335fcf2b86c8ad82fd5b0a7da0dedd90b78154fe8fbcd5bece4cc6a86d36676c04049b542c480c2eb4455741d477e1604d09a23e16da1fe8d
6
+ metadata.gz: 9ac0ab49600de3219ef377e949e0863cb2bb0f69e61252259798fa7ebbb6d6878c843c245dfb9fb81505e019583c0a411c068ed1752b0de9d32dde42ce6850df
7
+ data.tar.gz: 50c02addbb10d467ab80f4b49e04fa3784242453130cf044a6ff90067705460f1c9f14cdd62091b73c235cb89ace548b280449333fe1ad53388125a206b11454
@@ -99,7 +99,7 @@ module Avatax
99
99
  plugin_config = "org.killbill.billing.plugin.avatax.accountId=#{params.require(:account_id)}
100
100
  org.killbill.billing.plugin.avatax.licenseKey=#{params.require(:license_key)}\n"
101
101
  plugin_config << "org.killbill.billing.plugin.avatax.commitDocuments=#{params[:commit_documents] == '1'}\n"
102
- plugin_config << "org.killbill.billing.plugin.avatax.companyCode=#{params[:company_code]}\n" unless params[:company_code].blank?
102
+ plugin_config << "org.killbill.billing.plugin.avatax.companyCode=#{params[:company_code]}\n" if params[:company_code].present?
103
103
 
104
104
  # Merge the new values with the current config. The config will likely contain additional fields that we don't want to clobber.
105
105
  # The user should really use the more powerful /admin_tenants screen - this plugin screen was just created
data/config/routes.rb CHANGED
@@ -6,15 +6,15 @@ Avatax::Engine.routes.draw do
6
6
  resources :configuration, only: [:index]
7
7
 
8
8
  scope '/configuration' do
9
- match '/tax_code' => 'configuration#set_tax_code', :via => :get, :as => 'set_tax_code_configuration'
10
- match '/tax_code' => 'configuration#do_set_tax_code', :via => :post, :as => 'do_set_tax_code_configuration'
11
- match '/tax_code' => 'configuration#remove_tax_code', :via => :delete, :as => 'remove_tax_code_configuration'
9
+ get '/tax_code' => 'configuration#set_tax_code', :as => 'set_tax_code_configuration'
10
+ post '/tax_code' => 'configuration#do_set_tax_code', :as => 'do_set_tax_code_configuration'
11
+ delete '/tax_code' => 'configuration#remove_tax_code', :as => 'remove_tax_code_configuration'
12
12
 
13
- match '/exemption' => 'configuration#set_exemption', :via => :get, :as => 'set_exemption_configuration'
14
- match '/exemption' => 'configuration#do_set_exemption', :via => :post, :as => 'do_set_exemption_configuration'
15
- match '/exemption' => 'configuration#remove_exemption', :via => :delete, :as => 'remove_exemption_configuration'
13
+ get '/exemption' => 'configuration#set_exemption', :as => 'set_exemption_configuration'
14
+ post '/exemption' => 'configuration#do_set_exemption', :as => 'do_set_exemption_configuration'
15
+ delete '/exemption' => 'configuration#remove_exemption', :as => 'remove_exemption_configuration'
16
16
 
17
- match '/plugin' => 'configuration#plugin_configuration', :via => :get, :as => 'plugin_configuration'
18
- match '/plugin' => 'configuration#update_plugin_configuration', :via => :post, :as => 'update_plugin_configuration'
17
+ get '/plugin' => 'configuration#plugin_configuration', :as => 'plugin_configuration'
18
+ post '/plugin' => 'configuration#update_plugin_configuration', :as => 'update_plugin_configuration'
19
19
  end
20
20
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Avatax
4
- VERSION = '4.0.2'
4
+ VERSION = '4.0.3'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: killbill-avatax
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.2
4
+ version: 4.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kill Bill core team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-03-25 00:00:00.000000000 Z
11
+ date: 2026-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: killbill-assets-ui
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '7.0'
47
+ version: '7.2'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '7.0'
54
+ version: '7.2'
55
55
  description: Rails UI plugin for the Avatax plugin.
56
56
  email: killbilling-users@googlegroups.com
57
57
  executables: []
@@ -103,7 +103,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
103
103
  requirements:
104
104
  - - ">="
105
105
  - !ruby/object:Gem::Version
106
- version: '0'
106
+ version: 3.1.0
107
107
  required_rubygems_version: !ruby/object:Gem::Requirement
108
108
  requirements:
109
109
  - - ">="