blackbaud-client 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 12695917de7f3915a96826ef491809d3ba093663
4
- data.tar.gz: d0aa30063b6bd33b69527a387afb0bb3e7abecf8
3
+ metadata.gz: 631c752d0154a233be0dced206e8a25f4d339f59
4
+ data.tar.gz: cf6b78ac100ad91fd7e79a998389172540f0b737
5
5
  SHA512:
6
- metadata.gz: c912dc1d2832264dcd09728959c7987716c72872fcee4e9d325b1d06b5a99244e370b6c813b6bdfd3480d8c1d6eb4aa55568ce995c7f3b4f56e2c66dc919d3a8
7
- data.tar.gz: 69cc974311e518e237c6b061cf1944a41eb9abc5bf2074f5f72fc008840f29436c4d889fff6ac59b74ac917ef0fa281ffd55346169e73375e1501740d4d6aa25
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
+ [![Gem Version](https://badge.fury.io/rb/blackbaud-client.svg)](http://badge.fury.io/rb/blackbaud-client)
2
+ [![Code Climate](https://codeclimate.com/github/haikulearning/blackbaud-client/badges/gpa.svg)](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
- ### 0.1.0
30
- - Initial Release
23
+ [See the change log](CHANGELOG.md)
data/Rakefile ADDED
@@ -0,0 +1,7 @@
1
+ begin
2
+ require "bundler/gem_tasks"
3
+ rescue LoadError
4
+ puts "Bundler not available. Install it with: gem install bundler"
5
+ end
6
+
7
+ Dir[File.join(File.dirname(__FILE__), "lib/tasks/*.rake")].sort.each { |ext| load ext }
@@ -17,4 +17,6 @@ Gem::Specification.new do |gem|
17
17
 
18
18
  gem.add_runtime_dependency 'ruby-hmac', '~>0.4'
19
19
  gem.add_runtime_dependency 'rest-client', '~>1.6'
20
+
21
+ gem.add_development_dependency 'rake'
20
22
  end
@@ -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,
@@ -3,7 +3,7 @@ module Blackbaud
3
3
  class Version
4
4
  MAJOR = 0
5
5
  MINOR = 1
6
- PATCH = 3
6
+ PATCH = 4
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.1.3
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-04-22 00:00:00.000000000 Z
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