productive 0.6.31 → 0.6.36

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 8764a71b078b52774527ec17e337c2dc813b55d8
4
- data.tar.gz: 3ebc24031714dff664e4c8f58c0fa7de8889826b
2
+ SHA256:
3
+ metadata.gz: 4e09a0fc506650c3459039f22c3f2f973980b51b00642ddfb52eaa0d84dc88f8
4
+ data.tar.gz: 7fc7067462a3f23c822e4f87f34cec9bd64e0ad377695f2042391ba9de53fe6d
5
5
  SHA512:
6
- metadata.gz: d324724d7a6f853ef7f701c3d820906fa775561b1cb859e250cc381ad17800d57571fba7676e91995a732c48e9968de7abc701f50aa1ac51377dd17a35d21dc1
7
- data.tar.gz: 43587416a52cab9389b870956e4c5777c4a5350e13682355a8e60bb87b019d43b3e15c2e145af918b4c9b38a8ac14776146eb73f48dcdd5412a130788326afb0
6
+ metadata.gz: 784e9abec62e521a7ced6ec47de8ae04ea6f626b2445da4882dde351e30b67b9ae7d43937c20ab3d2414bef0d868ebbe9acd050ca1991e86b65a47b28f642e2f
7
+ data.tar.gz: 2c4334acec2d815b895eed17ec04a4cbea9d290877f1dff248b440794cff2b399480f4fdae9490b40bdeb4c71f347adc567ad9f383e4ef84278a9d1817c2bfec
data/lib/productive.rb CHANGED
@@ -42,6 +42,8 @@ require 'productive/resources/person'
42
42
  require 'productive/resources/profitability_report'
43
43
  require 'productive/resources/project'
44
44
  require 'productive/resources/project_assignment'
45
+ require 'productive/resources/pulse'
46
+ require 'productive/resources/report_category'
45
47
  require 'productive/resources/reports/budget_report'
46
48
  require 'productive/resources/reports/company_report'
47
49
  require 'productive/resources/reports/deal_report'
@@ -53,11 +55,14 @@ require 'productive/resources/reports/booking_report'
53
55
  require 'productive/resources/reports/payment_report'
54
56
  require 'productive/resources/reports/person_report'
55
57
  require 'productive/resources/reports/project_report'
58
+ require 'productive/resources/reports/service_report'
56
59
  require 'productive/resources/reports/task_report'
57
60
  require 'productive/resources/reports/time_entry_report'
61
+ require 'productive/resources/reports/engagement_item_report'
58
62
  require 'productive/resources/salary'
59
63
  require 'productive/resources/salary_report'
60
64
  require 'productive/resources/sales_report'
65
+ require 'productive/resources/section'
61
66
  require 'productive/resources/service'
62
67
  require 'productive/resources/subsidiary'
63
68
  require 'productive/resources/service_type'
@@ -1,5 +1,6 @@
1
1
  module Productive
2
2
  class Filter < BaseAccount
3
3
  has_one :organization
4
+ has_one :report_category
4
5
  end
5
6
  end
@@ -0,0 +1,6 @@
1
+ module Productive
2
+ class Pulse < BaseAccount
3
+ has_one :creator, class_name: :person
4
+ has_one :filter
5
+ end
6
+ end
@@ -0,0 +1,4 @@
1
+ module Productive
2
+ class ReportCategory < BaseAccount
3
+ end
4
+ end
@@ -0,0 +1,9 @@
1
+ module Productive
2
+ module Reports
3
+ class EngagementItemReport < BaseAccount
4
+ def self.table_name
5
+ "reports/engagement_item_reports"
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ module Productive
2
+ module Reports
3
+ class ServiceReport < BaseAccount
4
+ def self.table_name
5
+ "reports/service_reports"
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,5 @@
1
+ module Productive
2
+ class Section < BaseAccount
3
+ has_one :deal
4
+ end
5
+ end
@@ -1,3 +1,3 @@
1
1
  module Productive
2
- VERSION = '0.6.31'.freeze
2
+ VERSION = '0.6.36'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: productive
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.31
4
+ version: 0.6.36
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josip Bišćan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-27 00:00:00.000000000 Z
11
+ date: 2021-04-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rack
@@ -108,10 +108,13 @@ files:
108
108
  - lib/productive/resources/profitability_report.rb
109
109
  - lib/productive/resources/project.rb
110
110
  - lib/productive/resources/project_assignment.rb
111
+ - lib/productive/resources/pulse.rb
112
+ - lib/productive/resources/report_category.rb
111
113
  - lib/productive/resources/reports/booking_report.rb
112
114
  - lib/productive/resources/reports/budget_report.rb
113
115
  - lib/productive/resources/reports/company_report.rb
114
116
  - lib/productive/resources/reports/deal_report.rb
117
+ - lib/productive/resources/reports/engagement_item_report.rb
115
118
  - lib/productive/resources/reports/expense_report.rb
116
119
  - lib/productive/resources/reports/financial_item_report.rb
117
120
  - lib/productive/resources/reports/invoice_report.rb
@@ -119,11 +122,13 @@ files:
119
122
  - lib/productive/resources/reports/payment_report.rb
120
123
  - lib/productive/resources/reports/person_report.rb
121
124
  - lib/productive/resources/reports/project_report.rb
125
+ - lib/productive/resources/reports/service_report.rb
122
126
  - lib/productive/resources/reports/task_report.rb
123
127
  - lib/productive/resources/reports/time_entry_report.rb
124
128
  - lib/productive/resources/salary.rb
125
129
  - lib/productive/resources/salary_report.rb
126
130
  - lib/productive/resources/sales_report.rb
131
+ - lib/productive/resources/section.rb
127
132
  - lib/productive/resources/service.rb
128
133
  - lib/productive/resources/service_type.rb
129
134
  - lib/productive/resources/subsidiary.rb
@@ -155,7 +160,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
155
160
  version: '0'
156
161
  requirements: []
157
162
  rubyforge_project:
158
- rubygems_version: 2.5.2.3
163
+ rubygems_version: 2.7.6.2
159
164
  signing_key:
160
165
  specification_version: 4
161
166
  summary: A JSONAPI-based client to consume Productive API