saasu2 0.1.4 → 0.1.5

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: 1a8d35ea5e24cb6fe01ec9f88b9b46fb34a373d3
4
- data.tar.gz: 3d71d23be75c004dee22405fd70ee1f1a9b54624
3
+ metadata.gz: 2d7ae7a3d34fb88e93a4817f524e88ac5ff5c9e2
4
+ data.tar.gz: f3b2bc10f93d0538e07f5ca13801b37dad7f7a26
5
5
  SHA512:
6
- metadata.gz: 9ac5b6e2b2c049042a34eef4d7d670ddd1d038bc77ab8dabdf9b5be3599766bccab348f51b39581c695d53c75a75f79088ffd8d6642a2187bc411ef1f2b7bd57
7
- data.tar.gz: 35981f4eb95688dd6d94d65477e142312baab4d51245d44f061794a022d8e105f9c9e5c8249111a2b189d9d2faac0629a7c85ce4d4628ff940757a5d02865686
6
+ metadata.gz: a58bf86cf294c0f245dbe0283b7121f4542acd20586ca080b48c21f8e886b0f9ebcb4c72bdb26e487c18ef922c095217416a1c8cddddf9efe6e369a7166de2a5
7
+ data.tar.gz: f703942bff27fc16ac5ebcadf2037b9d016fd34054f986a83b7f02ed94cb53dc8d22b896830348c82bef75d177ff0963a76fc13750b626fc5773b0231ba84a46
data/.gitignore CHANGED
@@ -8,3 +8,4 @@
8
8
  /spec/reports/
9
9
  /tmp/
10
10
  *.gem
11
+ .ruby-version
@@ -1,5 +1,5 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.0.0
4
- - 2.1.6
5
- - 2.2.2
3
+ - 2.2.7
4
+ - 2.3.4
5
+ - 2.4.1
@@ -1,3 +1,6 @@
1
+ ==== Version 0.1.5
2
+ * Allow setting of PageSize and Page
3
+
1
4
  ==== Version 0.1.4
2
5
  Features:
3
6
  * Saasu::User.reset_password – Allows a user to request that a password reset email be generated and sent to them.
@@ -1,4 +1,4 @@
1
1
  class Saasu::Account < Saasu::Base
2
2
  allowed_methods :show, :index, :destroy, :update, :create
3
- filter_by %W(IsActive IsBankAccount AccountType IncludeBuiltIn)
3
+ filter_by %W(IsActive IsBankAccount AccountType IncludeBuiltIn PageSize Page)
4
4
  end
@@ -1,4 +1,4 @@
1
1
  class Saasu::Company < Saasu::Base
2
2
  allowed_methods :show, :index, :destroy, :update, :create
3
- filter_by %W(LastModifiedFromDate LastModifiedToDate CompanyName=)
3
+ filter_by %W(LastModifiedFromDate LastModifiedToDate CompanyName PageSize Page)
4
4
  end
@@ -1,4 +1,4 @@
1
1
  class Saasu::Contact < Saasu::Base
2
2
  allowed_methods :show, :index, :destroy, :update, :create
3
- filter_by %W(LastModifiedFromDate LastModifiedToDate GivenName FamilyName IsActive IsCustomer IsSupplier IsContractor IsPartner Tags TagSelection Email ContactId)
3
+ filter_by %W(LastModifiedFromDate LastModifiedToDate GivenName FamilyName IsActive IsCustomer IsSupplier IsContractor IsPartner Tags TagSelection Email ContactId PageSize Page)
4
4
  end
@@ -1,6 +1,6 @@
1
1
  class Saasu::Invoice < Saasu::Base
2
2
  allowed_methods :show, :index, :destroy, :update, :create
3
- filter_by %W(InvoiceNumber LastModifiedFromDate LastModifiedToDate TransactionType Tags TagSelection InvoiceFromDate InvoiceToDate InvoiceStatus PaymentStatus ContactId)
3
+ filter_by %W(InvoiceNumber LastModifiedFromDate LastModifiedToDate TransactionType Tags TagSelection InvoiceFromDate InvoiceToDate InvoiceStatus PaymentStatus ContactId PageSize Page)
4
4
 
5
5
  def email(email_address = nil)
6
6
  if email_address.present?
@@ -1,4 +1,4 @@
1
1
  class Saasu::Payment < Saasu::Base
2
2
  allowed_methods :show, :index, :destroy, :update, :create
3
- filter_by %W(LastModifiedFromDate LastModifiedToDate ForInvoiceId ClearedFromDate ClearedToDate TransactionType PaymentFromDate PaymentToDate PaymentAccountId)
3
+ filter_by %W(LastModifiedFromDate LastModifiedToDate ForInvoiceId ClearedFromDate ClearedToDate TransactionType PaymentFromDate PaymentToDate PaymentAccountId PageSize Page)
4
4
  end
@@ -1,3 +1,3 @@
1
1
  module Saasu
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: saasu2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Sinenko
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-11-19 00:00:00.000000000 Z
11
+ date: 2017-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -159,7 +159,6 @@ extra_rdoc_files: []
159
159
  files:
160
160
  - ".gitignore"
161
161
  - ".rspec"
162
- - ".ruby-version"
163
162
  - ".travis.yml"
164
163
  - CHANGELOG.rdoc
165
164
  - CODE_OF_CONDUCT.md
@@ -208,9 +207,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
208
207
  version: '0'
209
208
  requirements: []
210
209
  rubyforge_project:
211
- rubygems_version: 2.4.8
210
+ rubygems_version: 2.6.8
212
211
  signing_key:
213
212
  specification_version: 4
214
213
  summary: Ruby wrapper for Saasu API.
215
214
  test_files: []
216
- has_rdoc:
@@ -1 +0,0 @@
1
- 2.1.5