teamleader 0.17.0 → 0.17.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e19b86af8da9c3bb702b39d9d7a237756a633040
4
- data.tar.gz: 6922099520faa620154c4c56f490b1ca19d53733
3
+ metadata.gz: 4d595019098080c64b328d1bf318b2aec8da59c3
4
+ data.tar.gz: 150e9a0c17b5a6a98bb6ec013589bd2e74178693
5
5
  SHA512:
6
- metadata.gz: 9118e9d7cbf51857b42eb42f523a08c5e2294d67c5dceb9eedadb9e66aa2a284bd89721a95b68df13c9f0496c402dfa7203b435082367b1d15df5e677f06c856
7
- data.tar.gz: a89b64ee641eb1133c6886496040e45cd6a4ae83cb6760c8c3a81cf9a1a18a1667b54e4ced25d9e999b5a1116c659d6f72ddaa3e31633dfc976cd34c69da00c3
6
+ metadata.gz: 6ebf21f23eba5f11ea00bec83a2860849ddd8f7d9b19922eb4627d81bba8c8aacb255eaec8ade9f5d93b0bb47851c75523e3e2a0523350208374ceb533b54dea
7
+ data.tar.gz: d379f85fba97cc4ece68b989f234c50df99f9b4f69c0d971344dcb5b9ec611a6a6632af1dc20d110c36ea455ed4d9938cfe9adabe2124bd24beb356655f26f95
@@ -1,6 +1,9 @@
1
1
  # Changelog
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
+ ## [0.17.1] - 2020-04-09
5
+ - Fix include
6
+
4
7
  ## [0.17.0] - 2020-04-09
5
8
  - `get_all_subscriptions` method accepts optional parameters (like `selected_customfields` or `searchby`)
6
9
  - New methods related to subscriptions: `add_subscription`, `update_subscription`, `delete_subscription`, `get_subscription`, `get_invoices_by_subscription`, `get_related_subscriptions_by_invoice`, `get_subscriptions_by_deal`, `get_subscriptions_by_contact_or_company`
@@ -3,6 +3,7 @@ require File.expand_path(File.join(File.dirname(__FILE__), 'teamleader/api/calls
3
3
  require File.expand_path(File.join(File.dirname(__FILE__), 'teamleader/api/custom_fields'))
4
4
  require File.expand_path(File.join(File.dirname(__FILE__), 'teamleader/api/files'))
5
5
  require File.expand_path(File.join(File.dirname(__FILE__), 'teamleader/api/projects'))
6
+ require File.expand_path(File.join(File.dirname(__FILE__), 'teamleader/api/subscriptions'))
6
7
  require File.expand_path(File.join(File.dirname(__FILE__), 'teamleader/api'))
7
8
  require File.expand_path(File.join(File.dirname(__FILE__), 'teamleader/extended_api'))
8
9
  require File.expand_path(File.join(File.dirname(__FILE__), 'teamleader/version'))
@@ -11,6 +11,7 @@ module Teamleader
11
11
  include Teamleader::Files
12
12
  include Teamleader::Projects
13
13
  include Teamleader::Calls
14
+ include Teamleader::Subscriptions
14
15
 
15
16
  def initialize(group, secret)
16
17
  @api_group = group
@@ -1,3 +1,3 @@
1
1
  module Teamleader
2
- VERSION = "0.17.0"
2
+ VERSION = "0.17.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: teamleader
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0
4
+ version: 0.17.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pierre-Yves Orban