bambora-batch_upload 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: acb069dcdbfe02b49c8349cb4d01467e025cbcfc
4
+ data.tar.gz: e10a43dca939849439d38ccb9cabd1285a43970b
5
+ SHA512:
6
+ metadata.gz: bd175d85e4b2029b272901e657fb0cdd7a00b55a8d1f5510f661990dc112cb3c978f9b8f416d1f2a86d9e7d96bcc2c0f7c8377adcb343a821f6ca12aca442d91
7
+ data.tar.gz: 99048ba19f2e18b55ae3b5b1dda97ada5c43d6eb1f21a1f5e636b9b1c9a619fc2f1b0e998310ba29f0f87fa1a85db23c3ae1bc11bcfb5f4a2120b4c6d446dcee
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.3
5
+ before_install: gem install bundler -v 1.16.0
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at alwesam@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in bambora-batch_upload.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,39 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ bambora-batch_upload (0.1.0)
5
+ curb (= 0.9.3)
6
+ holidays
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ curb (0.9.3)
12
+ diff-lcs (1.3)
13
+ holidays (6.2.0)
14
+ rake (10.5.0)
15
+ rspec (3.7.0)
16
+ rspec-core (~> 3.7.0)
17
+ rspec-expectations (~> 3.7.0)
18
+ rspec-mocks (~> 3.7.0)
19
+ rspec-core (3.7.0)
20
+ rspec-support (~> 3.7.0)
21
+ rspec-expectations (3.7.0)
22
+ diff-lcs (>= 1.2.0, < 2.0)
23
+ rspec-support (~> 3.7.0)
24
+ rspec-mocks (3.7.0)
25
+ diff-lcs (>= 1.2.0, < 2.0)
26
+ rspec-support (~> 3.7.0)
27
+ rspec-support (3.7.0)
28
+
29
+ PLATFORMS
30
+ ruby
31
+
32
+ DEPENDENCIES
33
+ bambora-batch_upload!
34
+ bundler (~> 1.16)
35
+ rake (~> 10.0)
36
+ rspec (~> 3.0)
37
+
38
+ BUNDLED WITH
39
+ 1.16.0
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 alwesam
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,72 @@
1
+ # Bambora::BatchUpload
2
+
3
+ Unofficial ruby wrapper for EFT batch uploads to Bambora.
4
+
5
+ Under development
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'bambora-batch_upload'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install bambora-batch_upload
22
+
23
+ ## Usage
24
+
25
+ To configure the upload, you must provide your merchant ID as well as Batch
26
+ Upload API Key. The default location for batch files (before uploading) is /tmp.
27
+
28
+ ```ruby
29
+ Bambora::BatchUpload.configure do |config|
30
+ config.merchant_id = "111111111" #9 digits
31
+ config.batch_upload_api_key = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
32
+ #optional
33
+ config.batch_file_path = "/tmp" #default
34
+ config.batch_upload_api_url = "https://api.na.bambora.com/v1/batchpayments" #default
35
+ end
36
+ ```
37
+
38
+ To create a batch file and then upload:
39
+
40
+ ```ruby
41
+ #payment type has to be D (debit) or C (credit)
42
+ #amount must be specified in pennies
43
+ Bambora::BatchUpload.create_file do |reader|
44
+ reader.push_into_file(payment_type: "D", amount: 100, reference: 33, customer_code: "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")
45
+ ##more lines
46
+ #reader.push_into_file(...)
47
+ end
48
+
49
+ #by default process date is next business day
50
+ Bambora::BatchUpload.do_upload(process_date) do |batch_id|
51
+ #callback here
52
+ puts "Upload is successful and batch id is #{batch_id}"
53
+ end
54
+ ```
55
+
56
+ ## Development
57
+
58
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
59
+
60
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
61
+
62
+ ## Contributing
63
+
64
+ Bug reports and pull requests are welcome on GitHub at https://github.com/alwesam/bambora-batch_upload. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
65
+
66
+ ## License
67
+
68
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
69
+
70
+ ## Code of Conduct
71
+
72
+ Everyone interacting in the Bambora::BatchUpload project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/alwesam/bambora-batch_upload/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,28 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "bambora/batch_upload/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "bambora-batch_upload"
8
+ spec.version = Bambora::BatchUpload::VERSION
9
+ spec.authors = ["alwesam"]
10
+ spec.email = ["alwesam@gmail.com"]
11
+
12
+ spec.summary = %q{Ruby wrapper to upload ETF batch files.}
13
+ spec.description = %q{Ruby wrapper to upload ETF batch files to Bambora.}
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
17
+ f.match(%r{^(test|spec|features)/})
18
+ end
19
+ spec.bindir = "exe"
20
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_dependency "curb", "0.9.3"
24
+ spec.add_dependency "holidays"
25
+ spec.add_development_dependency "bundler", "~> 1.16"
26
+ spec.add_development_dependency "rake", "~> 10.0"
27
+ spec.add_development_dependency "rspec", "~> 3.0"
28
+ end
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "bambora/batch_upload"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,68 @@
1
+ require 'base64'
2
+ require 'json'
3
+ require 'curb'
4
+
5
+ module Bambora::BatchUpload
6
+ class BeanstreamSendBatch
7
+
8
+ attr_accessor :file_path
9
+ attr_accessor :process_date
10
+ attr_accessor :process_now
11
+ attr_accessor :failure_message
12
+
13
+ def initialize(file_path, process_date, process_now)
14
+ @file_path = file_path
15
+ @process_date = process_date
16
+ @process_now = process_now
17
+ end
18
+
19
+ BATCH_PROCESS_SUCCESS = 1
20
+
21
+ def send
22
+ c = Curl::Easy.new(batch_uploads_api_url) do |curl|
23
+ curl.headers["Authorization"] = "Passcode #{encoded_pass_code}"
24
+ end
25
+ c.multipart_form_post = true
26
+ c.http_post(criteria_content,file_content)
27
+ response = JSON.parse(c.body)
28
+ if response["code"] == BATCH_PROCESS_SUCCESS
29
+ response["batch_id"]
30
+ else
31
+ @failure_message = "Message: #{response["message"]}, Date: #{process_date}"
32
+ nil
33
+ end
34
+ end
35
+
36
+ def criteria_content
37
+ criteria_content = Curl::PostField.content("criteria",
38
+ "{'process_date':#{process_date_formatted},'process_now':#{process_now} }",
39
+ "application/json")
40
+ end
41
+
42
+ def file_content
43
+ file_content = Curl::PostField.file("file1",file_path)
44
+ end
45
+
46
+
47
+ def process_date_formatted
48
+ process_date.to_s.gsub("-","")
49
+ end
50
+
51
+ def encoded_pass_code
52
+ Base64.strict_encode64("#{merchant_id}:#{batch_uploads_api_key}")
53
+ end
54
+
55
+ def merchant_id
56
+ Bambora::BatchUpload.merchant_id
57
+ end
58
+
59
+ def batch_uploads_api_key
60
+ Bambora::BatchUpload.batch_upload_api_key
61
+ end
62
+
63
+ def batch_uploads_api_url
64
+ Bambora::BatchUpload.get_batch_upload_api_url
65
+ end
66
+
67
+ end
68
+ end
@@ -0,0 +1,55 @@
1
+ require 'securerandom'
2
+ require 'date'
3
+
4
+ module Bambora::BatchUpload
5
+ class CreateBatchFile
6
+
7
+ attr_accessor :txn_array
8
+
9
+ def initialize(txn_array)
10
+ @txn_array = txn_array
11
+ end
12
+
13
+ def call
14
+ create_file
15
+ end
16
+
17
+ private
18
+
19
+ def create_file
20
+ string = file_content
21
+ begin
22
+ path = "#{Bambora::BatchUpload.get_batch_file_path}/#{batch_file_name}"
23
+ file = File.open(path, "w")
24
+ file.write(string)
25
+ rescue IOError => e
26
+ puts "Write Fail"
27
+ ensure
28
+ file.close unless file.nil?
29
+ end
30
+ path
31
+ end
32
+
33
+ def batch_file_name
34
+ file_name = "#{SecureRandom.hex(4)}_#{DateTime.now.strftime("%b_%d_%Y_%H:%M:%S:%L")}.txt"
35
+ end
36
+
37
+ def file_content
38
+ string = ""
39
+ txn_array.each do |txn|
40
+ string << "E,"
41
+ string << "#{txn.txn_type}," #C for Credit, D for Debit
42
+ string << "#{txn.transit},"
43
+ string << "#{txn.institution},"
44
+ string << "#{txn.account},"
45
+ string << "#{txn.amount},"
46
+ string << "#{txn.ref},"
47
+ string << "#{txn.recipient},"
48
+ string << "#{txn.customer_code}"
49
+ string << "\r\n"
50
+ end
51
+ string
52
+ end
53
+
54
+ end
55
+ end
@@ -0,0 +1,37 @@
1
+ require_relative 'beanstream_send_batch'
2
+
3
+ module Bambora::BatchUpload
4
+ class SendSingleBatch
5
+
6
+ attr_accessor :file_path
7
+ attr_accessor :process_date
8
+
9
+ def initialize(file_path,process_date)
10
+ @file_path = file_path
11
+ @process_date = process_date
12
+ end
13
+
14
+ def call
15
+ service = BeanstreamSendBatch.new(file_path,
16
+ process_date,
17
+ process_now)
18
+ batch_id = service.send
19
+ unless batch_id.nil?
20
+ yield(batch_id) if block_given?
21
+ else
22
+ raise "Batch Scheduling Failed: #{service.failure_message}"
23
+ end
24
+ end
25
+
26
+ private
27
+
28
+ def process_now
29
+ if process_date
30
+ 0
31
+ else
32
+ 1
33
+ end
34
+ end
35
+
36
+ end
37
+ end
@@ -0,0 +1,5 @@
1
+ module Bambora
2
+ module BatchUpload
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
@@ -0,0 +1,91 @@
1
+ require_relative "batch_upload/version"
2
+ require_relative 'batch_upload/create_batch_file'
3
+ require_relative "batch_upload/send_single_batch"
4
+ require_relative "../extensions/date"
5
+
6
+ require 'ostruct'
7
+ require 'date'
8
+
9
+ module Bambora
10
+ module BatchUpload
11
+ @default_batch_upload_api_url = "https://api.na.bambora.com/v1/batchpayments"
12
+ @default_batch_file_path = "/tmp"
13
+ class << self
14
+ #must be provided by user
15
+ attr_accessor :merchant_id
16
+ attr_accessor :batch_upload_api_key
17
+ #optional
18
+ attr_accessor :batch_file_path
19
+ attr_accessor :batch_upload_api_url
20
+ #file name
21
+ attr_accessor :file_path
22
+ end
23
+ def self.do_upload(process_date=Date.next_business_day,&block)
24
+ raise "Configure Merchant ID and Upload API key" unless config_complete
25
+ SendSingleBatch.new(file_path,process_date).call(&block)
26
+ end
27
+
28
+ def self.create_file &block
29
+ raise "provide a block" unless block_given?
30
+ @file_path = CreateBatchFile.new(create_array(&block)).call
31
+ raise "WTF, no file generated!!!" if @file_path.nil?
32
+ end
33
+
34
+ def self.get_batch_upload_api_url
35
+ batch_upload_api_url || @default_batch_upload_api_url
36
+ end
37
+
38
+ def self.get_batch_file_path
39
+ batch_file_path || @default_batch_file_path
40
+ end
41
+
42
+ def self.configure &block
43
+ raise ArgumentError unless block_given?
44
+ yield(self)
45
+ end
46
+
47
+ def self.create_array &block
48
+ reader = MakeArray.new
49
+ yield(reader)
50
+ reader.array
51
+ end
52
+
53
+ class MakeArray
54
+ attr_accessor :array
55
+ def initialize; @array=[]; end
56
+ def push_into_file(params)
57
+ validate_args params
58
+ array << OpenStruct.new(txn_type: params[:payment_type],
59
+ transit: params[:transit_number].to_s,
60
+ institution: params[:institution_number].to_s,
61
+ account: params[:account_number].to_s,
62
+ amount: params[:amount],
63
+ ref: params[:reference].to_s,
64
+ recipient: params[:recipient].to_s,
65
+ customer_code: params[:customer_code].to_s
66
+ )
67
+ end
68
+ private
69
+ def validate_args params
70
+ if params[:amount].nil?
71
+ raise ArgumentError, "Must provide amount"
72
+ end
73
+ unless params[:payment_type] == "D" || params[:payment_type] == "C"
74
+ raise ArgumentError, "Must provide payment type: C (credit) or D (debit)"
75
+ end
76
+ if params[:customer_code].nil? && (params[:transit_number] ||
77
+ params[:institution_number] ||
78
+ params[:account_number])
79
+ raise ArgumentError, "Must either provide customer code or transit, institution, and account #s"
80
+ end
81
+ end
82
+ end
83
+
84
+ private
85
+
86
+ def self.config_complete
87
+ merchant_id && batch_upload_api_key
88
+ end
89
+
90
+ end
91
+ end
@@ -0,0 +1 @@
1
+ require_relative 'bambora/batch_upload'
@@ -0,0 +1,30 @@
1
+ require 'holidays'
2
+ require 'holidays/core_extensions/date'
3
+ class Date
4
+ include Holidays::CoreExtensions::Date
5
+
6
+ def self.next_business_day buffer=0
7
+ day = Date.today+buffer
8
+ begin
9
+ day += 1
10
+ end while(day.is_bc_time_off?)
11
+ day
12
+ end
13
+
14
+ def self.monday
15
+ 1
16
+ end
17
+
18
+ def is_bc_time_off?
19
+ self.holiday?(:ca_bc) || Date.weekend.include?(self.wday) || self.sub_day?
20
+ end
21
+
22
+ def self.weekend
23
+ [0,6]
24
+ end
25
+
26
+ def sub_day?
27
+ self.wday == self.class.monday && ( (self-1.day).holiday?(:ca_bc) || (self-2.day).holiday?(:ca_bc) )
28
+ end
29
+
30
+ end
metadata ADDED
@@ -0,0 +1,133 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bambora-batch_upload
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - alwesam
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-11-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: curb
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 0.9.3
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 0.9.3
27
+ - !ruby/object:Gem::Dependency
28
+ name: holidays
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.16'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.16'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '10.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '10.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '3.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '3.0'
83
+ description: Ruby wrapper to upload ETF batch files to Bambora.
84
+ email:
85
+ - alwesam@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - ".rspec"
92
+ - ".travis.yml"
93
+ - CODE_OF_CONDUCT.md
94
+ - Gemfile
95
+ - Gemfile.lock
96
+ - LICENSE.txt
97
+ - README.md
98
+ - Rakefile
99
+ - bambora-batch_upload.gemspec
100
+ - bin/console
101
+ - bin/setup
102
+ - lib/bambora-batch_upload.rb
103
+ - lib/bambora/batch_upload.rb
104
+ - lib/bambora/batch_upload/beanstream_send_batch.rb
105
+ - lib/bambora/batch_upload/create_batch_file.rb
106
+ - lib/bambora/batch_upload/send_single_batch.rb
107
+ - lib/bambora/batch_upload/version.rb
108
+ - lib/extensions/date.rb
109
+ homepage:
110
+ licenses:
111
+ - MIT
112
+ metadata: {}
113
+ post_install_message:
114
+ rdoc_options: []
115
+ require_paths:
116
+ - lib
117
+ required_ruby_version: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - ">="
120
+ - !ruby/object:Gem::Version
121
+ version: '0'
122
+ required_rubygems_version: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - ">="
125
+ - !ruby/object:Gem::Version
126
+ version: '0'
127
+ requirements: []
128
+ rubyforge_project:
129
+ rubygems_version: 2.5.2
130
+ signing_key:
131
+ specification_version: 4
132
+ summary: Ruby wrapper to upload ETF batch files.
133
+ test_files: []