blackbaud-client 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MjI4YjQ0ZjBlZmM2MDJiMmQ5YTc1YTA0Y2EzYjY2YWI3ZjhkOGMxYQ==
4
+ NTk5ZDliMTc0YmY4OTkxZTRhOGU2MzFjNjU5YTg3YjViOGUzMzBjNg==
5
5
  data.tar.gz: !binary |-
6
- YmQ2YTFkOTJhYTkxMWFiMjZhODgwNjNmMTIwYTFlNDM3OTcwMmY2ZQ==
6
+ NDg5ZDljMTY4MmIzOTcyZTQxZjI4MTNhYzEwMDcxZjY4YmJlMDk5MQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YjY4MDdkZDJkYzQ5NDljN2E5MzEzYjc5ZWUxN2IyOGU4MmRmMjZiYTQxOTZi
10
- ZWNiNmVkMjUwMmNiYWRlMjQyYTA0NDQ4YjkxYjQ4YjgxOTNhZWE4Njk0NTM3
11
- ZDJkNGVkM2Y5YTc1Y2YxYzFlZDJiNGUwMTRhNmY5MmMwYzc2Mzc=
9
+ OWM4ZWU0M2IzMTMwNWQwMWY2MDFjYTQwOWIxZTZlM2NlYzNiMmY5MzBhMGNm
10
+ MjYwY2VlMTJiNzUyYTk4MGI3NDNhNDQ1ODA2NzZhOWM1MzliMzNmOTMyYTUw
11
+ ZWQ1OWYzMWQ0MmQ2ZWEwOWU5Yzc5NDU3Yzg0Y2UxZmFhNjZjYWE=
12
12
  data.tar.gz: !binary |-
13
- ZWQwMDc1NDdlY2IzZWEwZmRlMjM5NWYwNzk2NDZiMDNiODAxYWI1NWRlODEz
14
- YzRjMzIyZGNhMWM3YWMyMmM5NzdiNGNiNWUyZWM2N2FmMjJhMTIyZjZhZDkx
15
- NThhNjI4MDMyOWZkOTllNzRiOTgzODhjZDc3MGJiOGI0MmQ3ODk=
13
+ YTMxYWFiNmZlYjQ4NWQyMDE4NWJiNDRlNjVlNDJjZDMyNzA1MWJjY2YyODhl
14
+ YmFlZWUxZmVlNDZjM2EyYjVlNTdjYWYyNjY2NjRiNmI4YzQzZmFkYWE3Mjky
15
+ YWFhNzAzYWRmNjJhMWU3NGM4ODRkMTE5OGZmYjc5MzU4M2E3YzA=
data/CHANGELOG.md CHANGED
@@ -1,10 +1,14 @@
1
1
  # Change Log
2
2
 
3
- ## 0.1.5 - 2015-09-30
3
+ ## 0.2.1 - 2016-01-07
4
4
  ### Changed
5
- - Major refactor to support Post reuqests
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 TransalationTable, TranslationTableEntry, Grades, and MarkingColumn
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
@@ -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-api-client"
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'
@@ -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)
@@ -3,7 +3,7 @@ module Blackbaud
3
3
  class Version
4
4
  MAJOR = 0
5
5
  MINOR = 2
6
- PATCH = 0
6
+ PATCH = 1
7
7
  STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
8
8
 
9
9
  class << self
@@ -17,4 +17,4 @@ module Blackbaud
17
17
 
18
18
  VERSION = Version::STRING
19
19
  end
20
- end
20
+ end
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.0
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: 2015-10-30 00:00:00.000000000 Z
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-api-client
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.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.