suretax 1.0.1 → 1.0.2
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 +4 -4
- data/README.md +1 -2
- data/lib/suretax/constants/tax_exemption_codes.rb +50 -0
- data/lib/suretax/version.rb +1 -1
- metadata +3 -3
- data/Gemfile.travis +0 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b5d53ab784021867bfd2f58a97c7e2f419fc4198
|
|
4
|
+
data.tar.gz: f540f107cc97af0d594dda3e7bcdc93b0ff88878
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d96a1068aac2f733470687d58bff68bd27bed67f7a5e8fcc48b23a834f6e85113a9a92a9698aa3d5603087809b6da9915d21d21d440e88371c6ddbf8b6c09353
|
|
7
|
+
data.tar.gz: 7438dd784baecae802d71d563ebd7f6f5e4d824328e42b1c70a9e6866b407aaaba5371d070bee568b52b28cf184686ed3cc63d72904700e02d3250d1d725f7e1
|
data/README.md
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
[](https://codeclimate.com/github/bqsoft/suretax)
|
|
2
|
-
[](https://travis-ci.org/bqsoft/suretax)
|
|
3
1
|
# Suretax
|
|
2
|
+
[](https://codeclimate.com/github/bqsoft/suretax)
|
|
4
3
|
|
|
5
4
|
|
|
6
5
|
## Synopsis
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
module Suretax
|
|
2
|
+
TAX_EXEMPTION_CODES = {
|
|
3
|
+
"00" => "No Exemptions",
|
|
4
|
+
"01" => "Federal Excise Tax Exempt",
|
|
5
|
+
"02" => "State Taxes Exempt",
|
|
6
|
+
"03" => "Federal Excise Tax and State Taxes Exempt",
|
|
7
|
+
"04" => "Local Taxes Exempt",
|
|
8
|
+
"05" => "Federal Excise Tax and Local Taxes Exempt",
|
|
9
|
+
"06" => "State and Local Taxes Exempt",
|
|
10
|
+
"07" => "Federal Excise Tax and State and Local Taxes Exempt",
|
|
11
|
+
"09" => "All Federal Level Taxes Exempt",
|
|
12
|
+
"10" => "All Unit Based Taxes Exempt",
|
|
13
|
+
"11" => "Unit based E911 Exempt",
|
|
14
|
+
"12" => "Only apply Unit Based Fees",
|
|
15
|
+
"13" => "Local Right of Way Fees (ROW) Exempt",
|
|
16
|
+
"14" => "All State and Local E911s Exempt",
|
|
17
|
+
"19" => "Only Apply Federal Universal Service Fund (USF)",
|
|
18
|
+
"20" => "All PUC Fees Exempt",
|
|
19
|
+
"21" => "All State and Local Gross Receipts Tax (GRT) Exempt",
|
|
20
|
+
"22" => "All State Universal Service Fund (USF) Fees Exempt",
|
|
21
|
+
"23" => "State Gross Receipts Tax and Universal Service Fund Exempt",
|
|
22
|
+
"24" => "Federal Universal Service Fund (USF) Exempt",
|
|
23
|
+
"25" => "Federal Excise, Federal Universal Service Fund (USF) and State Sales Tax Exempt",
|
|
24
|
+
"26" => "State Excise Tax Exempt (includes FL CST)",
|
|
25
|
+
"27" => "Federal Excise, Federal USF and Local Sales Tax Exempt",
|
|
26
|
+
"28" => "Federal USF and State Local Sales Tax Exempt",
|
|
27
|
+
"29" => "Federal USF and Local Sales Tax Exempt",
|
|
28
|
+
"30" => "State Excise and Local Telecommunications Tax Exempt",
|
|
29
|
+
"31" => "State Level Sales Tax Exempt",
|
|
30
|
+
"32" => "State and Local Sales Tax Exempt",
|
|
31
|
+
"33" => "Federal Excise, Federal USF, State and Local Sales Tax Exempt",
|
|
32
|
+
"35" => "Federal TRS (Federal Regulatory Assessment Fee) Exempt",
|
|
33
|
+
"36" => "Value Added Tax (VAT)",
|
|
34
|
+
"37" => "Canadian Provincial Service Taxes (PST) Exempt",
|
|
35
|
+
"38" => "Canadian Harmonized Service Taxes (HST) Exempt",
|
|
36
|
+
"39" => "Canadian Goods and Services Taxes (GST) Exempt",
|
|
37
|
+
"41" => "Local Utility Users Tax Exempt",
|
|
38
|
+
"42" => "State Excise Tax Exempt and Local Surcharge Exempt",
|
|
39
|
+
"43" => "Universal Lifeline Telephone Service Surcharge (ULTS) exempt",
|
|
40
|
+
"44" => "City Level Taxes Exempt",
|
|
41
|
+
"45" => "State Franchise Fee",
|
|
42
|
+
"46" => "Local Franchise Fee",
|
|
43
|
+
"47" => "County Level Taxes Exempt",
|
|
44
|
+
"61" => "Los Angeles Communications Users Tax Exempt",
|
|
45
|
+
"62" => "Non-unit taxes exempt except for E911",
|
|
46
|
+
"97" => "Reserved",
|
|
47
|
+
"98" => "Reserved",
|
|
48
|
+
"99" => "All Taxes Exempt – Apply no tax or fees"
|
|
49
|
+
}.freeze
|
|
50
|
+
end
|
data/lib/suretax/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: suretax
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Damon Davison
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-12-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: excon
|
|
@@ -178,7 +178,6 @@ files:
|
|
|
178
178
|
- ".ruby-version"
|
|
179
179
|
- Gemfile
|
|
180
180
|
- Gemfile.lock
|
|
181
|
-
- Gemfile.travis
|
|
182
181
|
- LICENSE.txt
|
|
183
182
|
- NOTES.md
|
|
184
183
|
- README.md
|
|
@@ -202,6 +201,7 @@ files:
|
|
|
202
201
|
- lib/suretax/constants/regulatory_codes.rb
|
|
203
202
|
- lib/suretax/constants/response_groups.rb
|
|
204
203
|
- lib/suretax/constants/sales_type_codes.rb
|
|
204
|
+
- lib/suretax/constants/tax_exemption_codes.rb
|
|
205
205
|
- lib/suretax/constants/tax_situs_codes.rb
|
|
206
206
|
- lib/suretax/constants/transaction_type_codes.rb
|
|
207
207
|
- lib/suretax/response.rb
|
data/Gemfile.travis
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
# Special Travis Gemfile for Rubinius
|
|
2
|
-
source 'https://rubygems.org'
|
|
3
|
-
|
|
4
|
-
platforms :rbx do
|
|
5
|
-
gem 'rubysl', '~> 2.0'
|
|
6
|
-
gem 'rubysl-openssl', '~> 2.1.0'
|
|
7
|
-
gem 'psych'
|
|
8
|
-
gem 'rubinius-coverage'
|
|
9
|
-
gem 'json', '~> 1.8'
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
eval_gemfile File.expand_path('../Gemfile', __FILE__)
|