blackbaud-client 0.1.3 → 0.1.4
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 +4 -4
- data/CHANGELOG.md +24 -0
- data/README.md +4 -11
- data/Rakefile +7 -0
- data/blackbaud-client.gemspec +2 -0
- data/lib/blackbaud-client/api/person.rb +1 -1
- data/lib/blackbaud-client/version.rb +1 -1
- metadata +18 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 631c752d0154a233be0dced206e8a25f4d339f59
|
|
4
|
+
data.tar.gz: cf6b78ac100ad91fd7e79a998389172540f0b737
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 19e17a3ab89fe833b422dc2f36e284b430875f5b34f703bb849c6f17342d467b935537b81867e5993be7114854cb45faaa92462df984a4e4294edb62f4e2a4a2
|
|
7
|
+
data.tar.gz: 1a9793df98ce432240f2e491ec953447479e7793182891f9c1863d7612de39544e28def1749676019a0a883e0a86c22e3269070ff865ab6abdd0f0dd66b65c38
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
## 0.1.4 - 2015-07-14
|
|
4
|
+
### Changed
|
|
5
|
+
- Added deceased attribute to Person.
|
|
6
|
+
|
|
7
|
+
## 0.1.3 - 2015-04-22
|
|
8
|
+
### Changed
|
|
9
|
+
- Added emergency_contact attribute to Relation.
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- Various fixes and cleanup.
|
|
13
|
+
|
|
14
|
+
## 0.1.2 - 2014-08-27
|
|
15
|
+
### Changed
|
|
16
|
+
- Format JSON output for readability.
|
|
17
|
+
|
|
18
|
+
## 0.1.1 - 2014-08-06
|
|
19
|
+
### New
|
|
20
|
+
- Option to store raw JSON response data
|
|
21
|
+
|
|
22
|
+
## 0.1.0 - 2014-06-06
|
|
23
|
+
### New
|
|
24
|
+
- Initial Release
|
data/README.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
[](http://badge.fury.io/rb/blackbaud-client)
|
|
2
|
+
[](https://codeclimate.com/github/haikulearning/blackbaud-client)
|
|
3
|
+
|
|
1
4
|
# Blackbaud Client
|
|
2
5
|
Ruby client for the Blackbaud API.
|
|
3
6
|
|
|
@@ -16,15 +19,5 @@ Create a Blackbaud API Client
|
|
|
16
19
|
@client = Blackbaud::Client.new(options)
|
|
17
20
|
|
|
18
21
|
## Version History
|
|
19
|
-
### 0.1.3
|
|
20
|
-
- Added emergency_contact attribute to Relation.
|
|
21
|
-
- Various fixes and cleanup.
|
|
22
|
-
|
|
23
|
-
### 0.1.2
|
|
24
|
-
- Format JSON output for readability.
|
|
25
|
-
|
|
26
|
-
### 0.1.1
|
|
27
|
-
- Option to store raw JSON response data
|
|
28
22
|
|
|
29
|
-
|
|
30
|
-
- Initial Release
|
|
23
|
+
[See the change log](CHANGELOG.md)
|
data/Rakefile
ADDED
data/blackbaud-client.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
module Blackbaud
|
|
2
2
|
class Person < BlackbaudObject
|
|
3
|
-
attr_accessor(:ea7_record_id, :name_for_display, :type, :birth_date, :first_name, :import_id, :last_name, :record_type, :title, :suffix, :middle_name, :user_defined_id, :nickname, :contacts, :relations, :online_user_id)
|
|
3
|
+
attr_accessor(:ea7_record_id, :name_for_display, :type, :birth_date, :first_name, :import_id, :last_name, :record_type, :title, :suffix, :middle_name, :user_defined_id, :nickname, :contacts, :relations, :online_user_id, :deceased)
|
|
4
4
|
|
|
5
5
|
USER_TYPE = {
|
|
6
6
|
:faculty => 1,
|
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.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex Dugger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-07-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ruby-hmac
|
|
@@ -38,6 +38,20 @@ dependencies:
|
|
|
38
38
|
- - ~>
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '1.6'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: rake
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - '>='
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - '>='
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
41
55
|
description: A client for the Blackbaud API.
|
|
42
56
|
email: alexd@haikulearning.com
|
|
43
57
|
executables: []
|
|
@@ -45,9 +59,11 @@ extensions: []
|
|
|
45
59
|
extra_rdoc_files: []
|
|
46
60
|
files:
|
|
47
61
|
- .gitignore
|
|
62
|
+
- CHANGELOG.md
|
|
48
63
|
- Gemfile
|
|
49
64
|
- LICENSE.txt
|
|
50
65
|
- README.md
|
|
66
|
+
- Rakefile
|
|
51
67
|
- blackbaud-client.gemspec
|
|
52
68
|
- lib/blackbaud-client.rb
|
|
53
69
|
- lib/blackbaud-client/api/academic_year.rb
|