xeroizer 0.3.3 → 0.3.4
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.
- data/VERSION +1 -1
- data/lib/xeroizer/models/credit_note.rb +1 -1
- data/lib/xeroizer/models/invoice.rb +1 -1
- data/xeroizer.gemspec +2 -2
- metadata +4 -4
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.4
|
|
@@ -30,7 +30,7 @@ module Xeroizer
|
|
|
30
30
|
'DRAFT' => 'CreditNotes saved as draft or entered via API',
|
|
31
31
|
'PAID' => 'CreditNotes approved and fully paid',
|
|
32
32
|
'SUBMITTED' => 'CreditNotes entered by an employee awaiting approval',
|
|
33
|
-
'
|
|
33
|
+
'VOIDED' => 'Approved credit_notes that are voided'
|
|
34
34
|
} unless defined?(CREDIT_NOTE_STATUS)
|
|
35
35
|
CREDIT_NOTE_STATUSES = CREDIT_NOTE_STATUS.keys.sort
|
|
36
36
|
|
|
@@ -36,7 +36,7 @@ module Xeroizer
|
|
|
36
36
|
'DRAFT' => 'Invoices saved as draft or entered via API',
|
|
37
37
|
'PAID' => 'Invoices approved and fully paid',
|
|
38
38
|
'SUBMITTED' => 'Invoices entered by an employee awaiting approval',
|
|
39
|
-
'
|
|
39
|
+
'VOIDED' => 'Approved invoices that are voided'
|
|
40
40
|
} unless defined?(INVOICE_STATUS)
|
|
41
41
|
INVOICE_STATUSES = INVOICE_STATUS.keys.sort
|
|
42
42
|
|
data/xeroizer.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{xeroizer}
|
|
8
|
-
s.version = "0.3.
|
|
8
|
+
s.version = "0.3.4"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Wayne Robinson"]
|
|
12
|
-
s.date = %q{2011-06-
|
|
12
|
+
s.date = %q{2011-06-15}
|
|
13
13
|
s.description = %q{Ruby library for the Xero accounting system API.}
|
|
14
14
|
s.email = %q{wayne.robinson@gmail.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xeroizer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 27
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 3
|
|
9
|
-
-
|
|
10
|
-
version: 0.3.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.3.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Wayne Robinson
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-06-
|
|
18
|
+
date: 2011-06-15 00:00:00 +10:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|