productive 0.6.17 → 0.6.18

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
2
  SHA1:
3
- metadata.gz: 30219ac8fc0dce0446073429af914180d374924a
4
- data.tar.gz: 479a0c3294bb0d7ce3374a549eadf7ae0306e3f5
3
+ metadata.gz: c791a2c174dea3537b489c2ea18098a6829e2622
4
+ data.tar.gz: 0b8ceffc0de3550af2e37376feabc7a1a92194f0
5
5
  SHA512:
6
- metadata.gz: 5958f903e2e44eb12afacf79be2d62ebc0f24b16ce188650c22819da099b6ed4d84fc114a952bdb4bc26ea7ad6679c9e8b99c8706ee8e069e67f4b66a7fa4af5
7
- data.tar.gz: c2fd80241553230148bc4162f1c8b8261240341526559b72e5c20f1ca3880eef8d66fc3cd7967ac01fc6215757c108728dc7b9ebdded694561dd69ff9b43fe1a
6
+ metadata.gz: 151e7426f599e61c50ba1e431dc13fe22ab7394b40b6dd123d466562013255b2b282af800eb60566a6409c6003d0009873f9f39faa0f4a23404d5ceb2dc62ddf
7
+ data.tar.gz: 8b553e89f33a0c477d77209fb7cad97b388a4dee1552c2c15c0b9d3af42c20ebb73df2c429c89cede6a149576799c2ac4f2b60258dbb173425ae1aa647bf7d5b
@@ -39,6 +39,17 @@ require 'productive/resources/person'
39
39
  require 'productive/resources/profitability_report'
40
40
  require 'productive/resources/project'
41
41
  require 'productive/resources/project_assignment'
42
+ require 'productive/resources/reports/budget_report'
43
+ require 'productive/resources/reports/company_report'
44
+ require 'productive/resources/reports/deal_report'
45
+ require 'productive/resources/reports/expense_report'
46
+ require 'productive/resources/reports/invoice_report'
47
+ require 'productive/resources/reports/payment_report'
48
+ require 'productive/resources/reports/person_report'
49
+ require 'productive/resources/reports/project_report'
50
+ require 'productive/resources/reports/task_report'
51
+ require 'productive/resources/reports/time_report'
52
+ require 'productive/resources/reports/time_entry_report'
42
53
  require 'productive/resources/salary'
43
54
  require 'productive/resources/salary_report'
44
55
  require 'productive/resources/sales_report'
@@ -0,0 +1,9 @@
1
+ module Productive
2
+ module Reports
3
+ class BudgetReport < BaseAccount
4
+ def self.table_name
5
+ "reports/budget_reports"
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ module Productive
2
+ module Reports
3
+ class CompanyReport < BaseAccount
4
+ def self.table_name
5
+ "reports/company_reports"
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ module Productive
2
+ module Reports
3
+ class DealReport < BaseAccount
4
+ def self.table_name
5
+ "reports/deal_reports"
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ module Productive
2
+ module Reports
3
+ class ExpenseReport < BaseAccount
4
+ def self.table_name
5
+ "reports/expense_reports"
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ module Productive
2
+ module Reports
3
+ class InvoiceReport < BaseAccount
4
+ def self.table_name
5
+ "reports/invoice_reports"
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ module Productive
2
+ module Reports
3
+ class PaymentReport < BaseAccount
4
+ def self.table_name
5
+ "reports/payment_reports"
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ module Productive
2
+ module Reports
3
+ class PersonReport < BaseAccount
4
+ def self.table_name
5
+ "reports/person_reports"
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ module Productive
2
+ module Reports
3
+ class ProjectReport < BaseAccount
4
+ def self.table_name
5
+ "reports/project_reports"
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ module Productive
2
+ module Reports
3
+ class TaskReport < BaseAccount
4
+ def self.table_name
5
+ "reports/task_reports"
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ module Productive
2
+ module Reports
3
+ class TimeEntryReport < BaseAccount
4
+ def self.table_name
5
+ "reports/time_entry_reports"
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ module Productive
2
+ module Reports
3
+ class TimeReport < BaseAccount
4
+ def self.table_name
5
+ "reports/time_reports"
6
+ end
7
+ end
8
+ end
9
+ end
@@ -1,3 +1,3 @@
1
1
  module Productive
2
- VERSION = '0.6.17'.freeze
2
+ VERSION = '0.6.18'.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.17
4
+ version: 0.6.18
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: 2019-08-14 00:00:00.000000000 Z
11
+ date: 2019-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rack
@@ -105,6 +105,17 @@ files:
105
105
  - lib/productive/resources/profitability_report.rb
106
106
  - lib/productive/resources/project.rb
107
107
  - lib/productive/resources/project_assignment.rb
108
+ - lib/productive/resources/reports/budget_report.rb
109
+ - lib/productive/resources/reports/company_report.rb
110
+ - lib/productive/resources/reports/deal_report.rb
111
+ - lib/productive/resources/reports/expense_report.rb
112
+ - lib/productive/resources/reports/invoice_report.rb
113
+ - lib/productive/resources/reports/payment_report.rb
114
+ - lib/productive/resources/reports/person_report.rb
115
+ - lib/productive/resources/reports/project_report.rb
116
+ - lib/productive/resources/reports/task_report.rb
117
+ - lib/productive/resources/reports/time_entry_report.rb
118
+ - lib/productive/resources/reports/time_report.rb
108
119
  - lib/productive/resources/salary.rb
109
120
  - lib/productive/resources/salary_report.rb
110
121
  - lib/productive/resources/sales_report.rb