koho 0.0.11 → 0.0.12

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.
Files changed (3) hide show
  1. data/lib/koho.rb +8 -1
  2. data/lib/koho/version.rb +1 -1
  3. metadata +2 -2
data/lib/koho.rb CHANGED
@@ -2,12 +2,19 @@ require "koho/version"
2
2
  require 'httparty'
3
3
  require 'json'
4
4
 
5
+ KOHO_API_CLIENT_ENVIRONMENT ||= :production
6
+
5
7
  module Koho
6
8
 
7
9
  class Client
8
10
  include HTTParty
9
11
 
10
- API_BASE_URL = 'https://stg.koho-online.com/api'
12
+ if KOHO_API_CLIENT_ENVIRONMENT == :production
13
+ API_BASE_URL = 'https://stg.koho-online.com/api'
14
+ else
15
+ API_BASE_URL = 'https://dev.koho-online.com/api'
16
+ end
17
+
11
18
  base_uri API_BASE_URL
12
19
 
13
20
  attr_accessor :company_id,
data/lib/koho/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Koho
2
- VERSION = "0.0.11"
2
+ VERSION = "0.0.12"
3
3
  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.11
4
+ version: 0.0.12
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-10-21 00:00:00.000000000 Z
12
+ date: 2013-10-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  type: :development