payoneer 0.1.10 → 0.1.11

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,3 @@
1
+ module Payoneer
2
+ VERSION = '0.1.' + (ENV['BUILD_VERSION'] || '0')
3
+ end
@@ -1,6 +1,11 @@
1
+ lib = File.expand_path('../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+
4
+ require 'payoneer/version'
5
+
1
6
  Gem::Specification.new do |s|
2
7
  s.name = 'payoneer'
3
- s.version = '0.1.' + (ENV['BUILD_VERSION'] || '0')
8
+ s.version = Payoneer::VERSION
4
9
  s.date = '2014-04-23'
5
10
  s.summary = "Payoneer API"
6
11
  s.description = "Interface to the Payoneer API"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: payoneer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.10
4
+ version: 0.1.11
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -154,6 +154,7 @@ files:
154
154
  - lib/payoneer/perform_payout_payment_request.rb
155
155
  - lib/payoneer/perform_payout_payment_response.rb
156
156
  - lib/payoneer/request.rb
157
+ - lib/payoneer/version.rb
157
158
  - payoneer.gemspec
158
159
  - spec/integration/payoneer/perform_payout_payment_request_spec.rb
159
160
  - spec/spec_helper.rb