ruby_bancbox 0.0.3 → 0.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d02a599205764773e13f89a5b1b52dee6f44939a
4
- data.tar.gz: 3537337dc1aca6dda62d7b698b15c8fb022a88e1
3
+ metadata.gz: 2ba9fc571cb2ac986aebb9762ca319d077611231
4
+ data.tar.gz: 39534e08ed083dda0de9a906997f587a9e1cfe39
5
5
  SHA512:
6
- metadata.gz: 350fe832237e9c7d2c1e8d8bfe4ec560f5bf355a97f70ab26688b4bf4a366b91b4692d5d2b3070ce6d19b8c9b25e98f952e3a51ea7cbf2d56b2b90c4e8adb1c6
7
- data.tar.gz: 520007986a6c354eb5cf4d8255c8d6242d36931fc1d3271f270b57859997686790fda5e2bdde42edbb2912826ff12d461b3bdb9e1cc17fab2d25b19b0a013014
6
+ metadata.gz: b3fbcd1204811838395bbe465d89286a837138a89739fd962712bb57b4c9096c0036095742c36832ff5738784720ce69c77caf1c1b4eefc71559ed9a04cbb623
7
+ data.tar.gz: 8b4c2a44469a315fc885285252982bc2df148b200ec291642896efe2fd3d3fea69e1773447d183998f35856d99e98e79a5a6bbfb80a236f3ba6cad96935976b0
@@ -3,6 +3,7 @@ require "ruby_bancbox/version"
3
3
  require 'ruby_bancbox/configuration'
4
4
  require 'ruby_bancbox/cfp'
5
5
  require 'ruby_bancbox/errors'
6
+ require 'rest_client'
6
7
 
7
8
  module RubyBancbox
8
9
  class << self
@@ -3,7 +3,6 @@ module RubyBancbox
3
3
 
4
4
  class << self
5
5
 
6
-
7
6
  def create_investor(options = {})
8
7
  # reference_id
9
8
  # first_name
@@ -0,0 +1,5 @@
1
+ module RubyBancbox
2
+ module Errors
3
+ ACCOUNT_ALREADY_EXISTS = "E-L-096"
4
+ end
5
+ end
@@ -1,3 +1,3 @@
1
1
  module RubyBancbox
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
17
17
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
20
- spec.add_dependency "rest_client"
20
+ spec.add_runtime_dependency "rest-client"
21
21
  spec.add_development_dependency "bundler", "~> 1.5"
22
22
  spec.add_development_dependency "rake"
23
23
  spec.add_development_dependency "rspec"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_bancbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Parsons
@@ -11,7 +11,7 @@ cert_chain: []
11
11
  date: 2014-06-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: rest_client
14
+ name: rest-client
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - ">="
@@ -165,6 +165,7 @@ files:
165
165
  - lib/ruby_bancbox.rb
166
166
  - lib/ruby_bancbox/cfp.rb
167
167
  - lib/ruby_bancbox/configuration.rb
168
+ - lib/ruby_bancbox/errors.rb
168
169
  - lib/ruby_bancbox/version.rb
169
170
  - ruby_bancbox.gemspec
170
171
  - spec/ruby_bancbox_spec.rb