blackbaud-client 0.2.3 → 1.0.0

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NzgyODYwYjIxMzY2M2FjNWZlZWRlNGRhNzQ0Y2M0YWNlMDE1YmQwZQ==
4
+ MGNlYWQ3MjcyYTA3OWY5NDAwNWQ0YTY2ODkxNmMyNjU1MjczYTFmYw==
5
5
  data.tar.gz: !binary |-
6
- Mzg5Zjc1MzczYTc5MzBiMTMxYTMzYWIwODk4NmI5ZTYyNjY1N2Y0ZA==
6
+ MTlmODQ1ZDhkNDE5N2UzMTJmNjQ3NDc1OWZkNmQ1NDY5YjMwOWNlNw==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZmY0ZmJjODBhMzNjZWYzYmZjNzc3ZTYxOWI2NzNjZmU4NTgxN2ZlNTZlM2U3
10
- MGM1ZTIzNGI3NjFlOTdkN2Q1ZGNmYzlkOGUyZWU5MmVmYjY3MmQ0MWVmNzhk
11
- OGUzZmRjNmM4OWQwY2M2YmQ1Y2U4YmQ0NDNkYzUzY2UwNWE0Y2I=
9
+ N2Q2YTE4OGQ0MGQzMjFhOGRmMjk5NGUzZTAwOWIzMjg2NWE0M2E5YzBkMWE5
10
+ MzZiNjFjMDcyYmY0OTI3ZGNjMWM5MDk3OTNhMDNkZTc1N2Y5NTNmN2E2NzQ4
11
+ YjEwODJiNGU2YWJiYWU3YmM3MDBmYTZlZTA1NjY4ZTQxMzA4NjY=
12
12
  data.tar.gz: !binary |-
13
- OTIyZDliNzc4NzI0ODgzN2U2ZDRiMTk2NTA5ODM0YjAwMjEwNzM0OWM2MGVm
14
- NmZjZjhiNmRkZjQ5MDY4ZmM2YzVkNGIzYzhmZWM5MWY0Yjg4ODcwMzk0YmFj
15
- OTI4MWI4ZGY0MmNjNmYyNTlmODRmNThlNjdmZmVjOTU0YmVlMzI=
13
+ MzNjYmM3NjNlNWQxMTNkYzQ3OWIzMmNkMTUyNjc2OWQzM2NiOTMxNjJlODE0
14
+ ZDlhMjBjNGYyZjMzMmI0NDY3MTQ0NDNmZTIzMGY1NGI4Zjg4YWY4Nzc1ZTIw
15
+ MTk1ODBiNmNhMWQ3ZWE4ZmYwMDU5MGZiNTA2ZDA1MjJkYTE4ZjQ=
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Change Log
2
2
 
3
+ ## 1.0.0 - 2016-04-12
4
+ ### Changed
5
+ - Add three new attributes to Relation Model.
6
+ - It's about time we make this version 1.0
7
+
3
8
  ## 0.2.3 - 2016-02-15
4
9
  ### Changed
5
10
  - Add grade attribute to Grade Model to_hash params.
@@ -1,6 +1,6 @@
1
1
  module Blackbaud
2
2
  class Relation < BlackbaudObject
3
- attr_accessor(:relationship_code_id, :relationship_code_value, :reciprocal_code_id, :reciprocal_code_value, :person, :emergency_contact)
3
+ attr_accessor(:relationship_code_id, :relationship_code_value, :reciprocal_code_id, :reciprocal_code_value, :person, :emergency_contact, :allow_netclassroom_view, :can_view_report_cards, :lives_with)
4
4
 
5
5
  def initialize(options)
6
6
  options.fetch(:values)["person"] = Blackbaud::Person.new(values: options.fetch(:values)["person"]) if options.fetch(:values)["person"]
@@ -1,9 +1,9 @@
1
1
  module Blackbaud
2
2
  class Client
3
3
  class Version
4
- MAJOR = 0
5
- MINOR = 2
6
- PATCH = 3
4
+ MAJOR = 1
5
+ MINOR = 0
6
+ PATCH = 0
7
7
  STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
8
8
 
9
9
  class << self
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blackbaud-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Dugger
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-15 00:00:00.000000000 Z
11
+ date: 2016-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ruby-hmac
@@ -155,7 +155,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
155
155
  version: '0'
156
156
  requirements: []
157
157
  rubyforge_project:
158
- rubygems_version: 2.4.3
158
+ rubygems_version: 2.4.8
159
159
  signing_key:
160
160
  specification_version: 4
161
161
  summary: A client for the Blackbaud API.