koho 0.0.1 → 0.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.
- data/koho.gemspec +2 -0
- data/lib/koho/version.rb +1 -1
- data/lib/koho.rb +49 -53
- metadata +17 -1
data/koho.gemspec
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
4
|
require 'koho/version'
|
5
|
+
require 'httparty'
|
5
6
|
|
6
7
|
Gem::Specification.new do |spec|
|
7
8
|
spec.name = "koho"
|
@@ -20,4 +21,5 @@ Gem::Specification.new do |spec|
|
|
20
21
|
|
21
22
|
spec.add_development_dependency "bundler", "~> 1.3"
|
22
23
|
spec.add_development_dependency "rake"
|
24
|
+
spec.add_dependency "httparty"
|
23
25
|
end
|
data/lib/koho/version.rb
CHANGED
data/lib/koho.rb
CHANGED
@@ -2,83 +2,79 @@ require "koho/version"
|
|
2
2
|
|
3
3
|
module Koho
|
4
4
|
|
5
|
-
|
5
|
+
class Client
|
6
|
+
include HTTParty
|
7
|
+
base_uri 'https://koho-online.com/api'
|
8
|
+
|
9
|
+
attr_accessor :company_id,
|
10
|
+
:token
|
11
|
+
|
12
|
+
def initialize company_id, token
|
13
|
+
@company_id = company_id
|
14
|
+
@token = token
|
15
|
+
end
|
6
16
|
|
7
17
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
attr_accessor :company_id,
|
13
|
-
:token
|
18
|
+
def get action, data = {}
|
19
|
+
JSON.parse(self.class.get action, query: data.merge(company_id: @company_id, token: @token))
|
20
|
+
end
|
14
21
|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
end
|
22
|
+
def post action, data = {}
|
23
|
+
self.class.post action, query: data.merge(company_id: @company_id, token: @token)
|
24
|
+
end
|
19
25
|
|
26
|
+
##########################3
|
20
27
|
|
21
|
-
|
22
|
-
JSON.parse(self.class.get action, query: data.merge(company_id: @company_id, token: @token))
|
23
|
-
end
|
28
|
+
def info #token info
|
24
29
|
|
25
|
-
|
26
|
-
self.class.post action, query: data.merge(company_id: @company_id, token: @token)
|
27
|
-
end
|
30
|
+
end
|
28
31
|
|
29
|
-
|
32
|
+
class Invoices < Koho::Client
|
33
|
+
|
34
|
+
base_uri 'dev.koho-online.com/api/invoices'
|
30
35
|
|
31
|
-
def info #token info
|
32
36
|
|
37
|
+
def list
|
38
|
+
get '/'
|
33
39
|
end
|
34
40
|
|
35
|
-
|
36
|
-
|
37
|
-
base_uri 'dev.koho-online.com/api/invoices'
|
38
|
-
|
39
|
-
|
40
|
-
def list
|
41
|
-
get '/'
|
42
|
-
end
|
43
|
-
|
44
|
-
def find id
|
45
|
-
get "/#{id}"
|
46
|
-
end
|
47
|
-
|
48
|
-
|
41
|
+
def find id
|
42
|
+
get "/#{id}"
|
49
43
|
end
|
44
|
+
|
50
45
|
|
51
|
-
|
52
|
-
|
53
|
-
base_uri 'dev.koho-online.com/api/customers'
|
46
|
+
end
|
54
47
|
|
48
|
+
class Customers < Koho::Client
|
49
|
+
|
50
|
+
base_uri 'dev.koho-online.com/api/customers'
|
55
51
|
|
56
|
-
def list
|
57
|
-
get '/'
|
58
|
-
end
|
59
52
|
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
53
|
+
def list
|
54
|
+
get '/'
|
55
|
+
end
|
64
56
|
|
57
|
+
def find id
|
58
|
+
get "/#{id}"
|
65
59
|
end
|
60
|
+
|
66
61
|
|
67
|
-
|
68
|
-
|
69
|
-
base_uri 'dev.koho-online.com/api/contracts'
|
62
|
+
end
|
70
63
|
|
64
|
+
class Contracts < Koho::Client
|
65
|
+
|
66
|
+
base_uri 'dev.koho-online.com/api/contracts'
|
71
67
|
|
72
|
-
def list
|
73
|
-
get '/'
|
74
|
-
end
|
75
68
|
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
69
|
+
def list
|
70
|
+
get '/'
|
71
|
+
end
|
80
72
|
|
73
|
+
def find id
|
74
|
+
get "/#{id}"
|
81
75
|
end
|
76
|
+
|
77
|
+
|
82
78
|
end
|
83
79
|
end
|
84
80
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: koho
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -43,6 +43,22 @@ dependencies:
|
|
43
43
|
none: false
|
44
44
|
prerelease: false
|
45
45
|
name: rake
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
type: :runtime
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - ! '>='
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '0'
|
53
|
+
none: false
|
54
|
+
version_requirements: !ruby/object:Gem::Requirement
|
55
|
+
requirements:
|
56
|
+
- - ! '>='
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: '0'
|
59
|
+
none: false
|
60
|
+
prerelease: false
|
61
|
+
name: httparty
|
46
62
|
description: Koho API client for REST interface. Requires authentication token.
|
47
63
|
email:
|
48
64
|
- hemilae@gmail.com
|