plaid-kilt 0.7.5 → 0.7.6

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: 7eda93b0e1155c074b5dbd01f5b5bf585dd5adce
4
- data.tar.gz: ec5336ce92e2fdf330f2c989e66b033f12a5efed
3
+ metadata.gz: f31b6852c393616b51c815fc3d4fcf64cd165e23
4
+ data.tar.gz: 0f63028c81bff018e99f6c18c087a2c8741a240d
5
5
  SHA512:
6
- metadata.gz: b24febb4180c906c2628ed84d01fe02e782c03d76da7db4606d0417a8c835a617f37e39e09f8861b5a10f1af84d66eb4859b62cfc7a2e51654deaf2d6432e89b
7
- data.tar.gz: bd1d247ee916359addcf0454dac111fe5fc3d61e01bf30bbf8741fdcb6488081b266b42159bd31b1f504b31b5d0bebe8cccc07c0176c14eafdba6e4280fb77f1
6
+ metadata.gz: 44dc735cd03f32acebfb170327856ac03a6a5249c06aec5ea20ee0385432bc66282b730729f3185e5febd76d8c90724111419b734be26e64b1894a2c1471f99c
7
+ data.tar.gz: c22437b676cd71df5598cf3b160f53e658b0609ca8d20b38b0a03b5351dde6f87c6599a1d346f7291f2aa9eb9103550a7545c5cbd3776bcf668691edbed7a33b
data/Rakefile CHANGED
@@ -18,7 +18,7 @@ Jeweler::Tasks.new do |gem|
18
18
  gem.homepage = "http://github.com/jkoisch/plaid"
19
19
  gem.license = "MIT"
20
20
  gem.summary = %Q{Access the Plaid API using Ruby}
21
- gem.description = %Q{Access the Plaid API using Rubyre}
21
+ gem.description = %Q{Access the Plaid API using Ruby}
22
22
  gem.email = "jk@cloudsway.com"
23
23
  gem.authors = ["John Koisch"]
24
24
  # dependencies defined in Gemfile
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.7.5
1
+ 0.7.6
@@ -29,6 +29,9 @@ module Plaid
29
29
  self.institution = institution
30
30
  self.access_token = access_token unless access_token.blank?
31
31
  self.mfa_response ||= []
32
+
33
+ puts "Plaid-kilt being raised"
34
+
32
35
  end
33
36
 
34
37
  def settings
@@ -23,8 +23,8 @@ class PlaidResponse
23
23
  end
24
24
 
25
25
  unless message.eql?("MFA")
26
- @accounts = zed.accounts
27
- @transactions = zed.transactions
26
+ @accounts = zed.accounts if zed.class.method_defined? :accounts
27
+ @transactions = zed.transactions if zed.class.method_defined? :transactions
28
28
  @is_mfa_initialized = false
29
29
  else
30
30
  manage_mfa_type(zed)
@@ -0,0 +1,84 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+ # stub: plaid-kilt 0.7.6 ruby lib
6
+
7
+ Gem::Specification.new do |s|
8
+ s.name = "plaid-kilt"
9
+ s.version = "0.7.6"
10
+
11
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
+ s.authors = ["John Koisch"]
13
+ s.date = "2014-05-05"
14
+ s.description = "Access the Plaid API using Ruby"
15
+ s.email = "jk@cloudsway.com"
16
+ s.extra_rdoc_files = [
17
+ "LICENSE.txt",
18
+ "README.rdoc"
19
+ ]
20
+ s.files = [
21
+ ".DS_Store",
22
+ ".document",
23
+ "Gemfile",
24
+ "Gemfile.lock",
25
+ "LICENSE.txt",
26
+ "README.rdoc",
27
+ "Rakefile",
28
+ "VERSION",
29
+ "design/plaid_flows_connect.png",
30
+ "design/plaid_user_set_up.png",
31
+ "lib/plaid.rb",
32
+ "lib/plaid/client/balance.rb",
33
+ "lib/plaid/client/body.rb",
34
+ "lib/plaid/client/client.rb",
35
+ "lib/plaid/client/configuration.rb",
36
+ "lib/plaid/client/connect.rb",
37
+ "lib/plaid/client/entity.rb",
38
+ "lib/plaid/client/followup.rb",
39
+ "lib/plaid/client/thin_client.rb",
40
+ "lib/plaid/plaid_error.rb",
41
+ "lib/plaid/plaid_object.rb",
42
+ "lib/plaid/plaid_response.rb",
43
+ "lib/plaid/scaffold/category.rb",
44
+ "lib/plaid/scaffold/institution.rb",
45
+ "lib/plaid/scaffold/scaffold.rb",
46
+ "lib/plaid/text/exposition.rb",
47
+ "plaid-kilt.gemspec",
48
+ "test/helper.rb",
49
+ "test/test_plaid.rb"
50
+ ]
51
+ s.homepage = "http://github.com/jkoisch/plaid"
52
+ s.licenses = ["MIT"]
53
+ s.require_paths = ["lib"]
54
+ s.rubygems_version = "2.1.11"
55
+ s.summary = "Access the Plaid API using Ruby"
56
+
57
+ if s.respond_to? :specification_version then
58
+ s.specification_version = 4
59
+
60
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
61
+ s.add_runtime_dependency(%q<httparty>, [">= 0"])
62
+ s.add_runtime_dependency(%q<yard>, [">= 0"])
63
+ s.add_development_dependency(%q<shoulda>, [">= 0"])
64
+ s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
65
+ s.add_development_dependency(%q<bundler>, ["~> 1.0"])
66
+ s.add_development_dependency(%q<jeweler>, ["~> 1.8.7"])
67
+ else
68
+ s.add_dependency(%q<httparty>, [">= 0"])
69
+ s.add_dependency(%q<yard>, [">= 0"])
70
+ s.add_dependency(%q<shoulda>, [">= 0"])
71
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
72
+ s.add_dependency(%q<bundler>, ["~> 1.0"])
73
+ s.add_dependency(%q<jeweler>, ["~> 1.8.7"])
74
+ end
75
+ else
76
+ s.add_dependency(%q<httparty>, [">= 0"])
77
+ s.add_dependency(%q<yard>, [">= 0"])
78
+ s.add_dependency(%q<shoulda>, [">= 0"])
79
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
80
+ s.add_dependency(%q<bundler>, ["~> 1.0"])
81
+ s.add_dependency(%q<jeweler>, ["~> 1.8.7"])
82
+ end
83
+ end
84
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: plaid-kilt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.5
4
+ version: 0.7.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Koisch
@@ -94,7 +94,7 @@ dependencies:
94
94
  - - ~>
95
95
  - !ruby/object:Gem::Version
96
96
  version: 1.8.7
97
- description: Access the Plaid API using Rubyre
97
+ description: Access the Plaid API using Ruby
98
98
  email: jk@cloudsway.com
99
99
  executables: []
100
100
  extensions: []
@@ -128,6 +128,7 @@ files:
128
128
  - lib/plaid/scaffold/institution.rb
129
129
  - lib/plaid/scaffold/scaffold.rb
130
130
  - lib/plaid/text/exposition.rb
131
+ - plaid-kilt.gemspec
131
132
  - test/helper.rb
132
133
  - test/test_plaid.rb
133
134
  homepage: http://github.com/jkoisch/plaid