blackbaud-client 0.2.0 → 0.2.1
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 +8 -8
- data/CHANGELOG.md +7 -3
- data/blackbaud-client.gemspec +1 -1
- data/lib/blackbaud-client.rb +1 -1
- data/lib/blackbaud-client/version.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NTk5ZDliMTc0YmY4OTkxZTRhOGU2MzFjNjU5YTg3YjViOGUzMzBjNg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NDg5ZDljMTY4MmIzOTcyZTQxZjI4MTNhYzEwMDcxZjY4YmJlMDk5MQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
OWM4ZWU0M2IzMTMwNWQwMWY2MDFjYTQwOWIxZTZlM2NlYzNiMmY5MzBhMGNm
|
|
10
|
+
MjYwY2VlMTJiNzUyYTk4MGI3NDNhNDQ1ODA2NzZhOWM1MzliMzNmOTMyYTUw
|
|
11
|
+
ZWQ1OWYzMWQ0MmQ2ZWEwOWU5Yzc5NDU3Yzg0Y2UxZmFhNjZjYWE=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
YTMxYWFiNmZlYjQ4NWQyMDE4NWJiNDRlNjVlNDJjZDMyNzA1MWJjY2YyODhl
|
|
14
|
+
YmFlZWUxZmVlNDZjM2EyYjVlNTdjYWYyNjY2NjRiNmI4YzQzZmFkYWE3Mjky
|
|
15
|
+
YWFhNzAzYWRmNjJhMWU3NGM4ODRkMTE5OGZmYjc5MzU4M2E3YzA=
|
data/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## 0.1
|
|
3
|
+
## 0.2.1 - 2016-01-07
|
|
4
4
|
### Changed
|
|
5
|
-
-
|
|
5
|
+
- Fix handling of empty Teacher or Student arrays in get_people
|
|
6
|
+
|
|
7
|
+
## 0.2.0 - 2015-10-30
|
|
8
|
+
### Changed
|
|
9
|
+
- Major refactor to support Post requests
|
|
6
10
|
- Rename client methods to reflect their request type
|
|
7
|
-
- Add get objects and methods for
|
|
11
|
+
- Add get objects and methods for TranslationTable, TranslationTableEntry, Grades, and MarkingColumn
|
|
8
12
|
|
|
9
13
|
## 0.1.4 - 2015-07-14
|
|
10
14
|
### Changed
|
data/blackbaud-client.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |gem|
|
|
|
10
10
|
gem.authors = "Alex Dugger"
|
|
11
11
|
gem.email = "alexd@haikulearning.com"
|
|
12
12
|
gem.description = "A client for the Blackbaud API."
|
|
13
|
-
gem.homepage = "https://github.com/haikulearning/blackbaud-
|
|
13
|
+
gem.homepage = "https://github.com/haikulearning/blackbaud-client"
|
|
14
14
|
gem.summary = "A client for the Blackbaud API."
|
|
15
15
|
gem.files = `git ls-files`.split($/)
|
|
16
16
|
gem.require_path = 'lib'
|
data/lib/blackbaud-client.rb
CHANGED
|
@@ -88,7 +88,7 @@ module Blackbaud
|
|
|
88
88
|
results[response_key].each{|person| person['type'] = type_id}
|
|
89
89
|
end
|
|
90
90
|
end
|
|
91
|
-
create_blackbaud_objects(Blackbaud::Person, results['faculty'] + results['students'])
|
|
91
|
+
create_blackbaud_objects(Blackbaud::Person, results['faculty'].to_a + results['students'].to_a)
|
|
92
92
|
end
|
|
93
93
|
|
|
94
94
|
def get_classes(scope)
|
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.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex Dugger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-01-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ruby-hmac
|
|
@@ -136,7 +136,7 @@ files:
|
|
|
136
136
|
- spec/response_data/post/grade/class.json
|
|
137
137
|
- spec/response_data/post/security/access_token.json
|
|
138
138
|
- spec/spec_helper.rb
|
|
139
|
-
homepage: https://github.com/haikulearning/blackbaud-
|
|
139
|
+
homepage: https://github.com/haikulearning/blackbaud-client
|
|
140
140
|
licenses: []
|
|
141
141
|
metadata: {}
|
|
142
142
|
post_install_message:
|
|
@@ -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.
|
|
158
|
+
rubygems_version: 2.4.8
|
|
159
159
|
signing_key:
|
|
160
160
|
specification_version: 4
|
|
161
161
|
summary: A client for the Blackbaud API.
|