xero_gateway 2.0.3 → 2.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.textile +9 -3
- data/xero_gateway.gemspec +1 -3
- metadata +5 -36
data/CHANGELOG.textile
CHANGED
@@ -1,8 +1,14 @@
|
|
1
|
-
h2.
|
1
|
+
h2. 2.0.4, released 29/09/2010
|
2
|
+
|
3
|
+
* Use bundler for dependency management
|
4
|
+
|
5
|
+
h2. 2.0.3, released 29/09/2010
|
6
|
+
|
7
|
+
* Fix issue caused by Xero updating the Tracking Category XML structure
|
8
|
+
|
9
|
+
h2. 2.0.2, released 23/08/2010
|
2
10
|
|
3
11
|
* Xero Api version 2.0
|
4
|
-
* As get_invoices doesn't download the attached line items, add code to automatically request line items from Xero the first time XeroGateway::Invoice#line_items is accessed. *
|
5
|
-
* Populate XeroGateway::Payment class with results from invoice/s including new invoice fields for payment status. *
|
6
12
|
|
7
13
|
h2. 1.0.5, released 25/09/2009
|
8
14
|
|
data/xero_gateway.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "xero_gateway"
|
3
|
-
s.version = "2.0.
|
3
|
+
s.version = "2.0.4"
|
4
4
|
s.date = "2010-09-30"
|
5
5
|
s.summary = "Enables ruby based applications to communicate with the Xero API"
|
6
6
|
s.email = "tim@connorsoftware.com"
|
@@ -8,8 +8,6 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.description = "Enables ruby based applications to communicate with the Xero API"
|
9
9
|
s.has_rdoc = false
|
10
10
|
s.authors = ["Tim Connor", "Nik Wakelin"]
|
11
|
-
s.add_dependency('builder', '>= 2.1.2')
|
12
|
-
s.add_dependency('oauth', '>= 0.3.6')
|
13
11
|
s.files = ["CHANGELOG.textile",
|
14
12
|
"init.rb",
|
15
13
|
"LICENSE",
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xero_gateway
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 7
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 2.0.
|
9
|
+
- 4
|
10
|
+
version: 2.0.4
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Tim Connor
|
@@ -18,39 +18,8 @@ cert_chain: []
|
|
18
18
|
|
19
19
|
date: 2010-09-30 00:00:00 +13:00
|
20
20
|
default_executable:
|
21
|
-
dependencies:
|
22
|
-
|
23
|
-
name: builder
|
24
|
-
prerelease: false
|
25
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
26
|
-
none: false
|
27
|
-
requirements:
|
28
|
-
- - ">="
|
29
|
-
- !ruby/object:Gem::Version
|
30
|
-
hash: 15
|
31
|
-
segments:
|
32
|
-
- 2
|
33
|
-
- 1
|
34
|
-
- 2
|
35
|
-
version: 2.1.2
|
36
|
-
type: :runtime
|
37
|
-
version_requirements: *id001
|
38
|
-
- !ruby/object:Gem::Dependency
|
39
|
-
name: oauth
|
40
|
-
prerelease: false
|
41
|
-
requirement: &id002 !ruby/object:Gem::Requirement
|
42
|
-
none: false
|
43
|
-
requirements:
|
44
|
-
- - ">="
|
45
|
-
- !ruby/object:Gem::Version
|
46
|
-
hash: 31
|
47
|
-
segments:
|
48
|
-
- 0
|
49
|
-
- 3
|
50
|
-
- 6
|
51
|
-
version: 0.3.6
|
52
|
-
type: :runtime
|
53
|
-
version_requirements: *id002
|
21
|
+
dependencies: []
|
22
|
+
|
54
23
|
description: Enables ruby based applications to communicate with the Xero API
|
55
24
|
email: tim@connorsoftware.com
|
56
25
|
executables: []
|