Skip to content

Commit 6115c85

Browse files
authored
Merge pull request #19 from sparkplug/develop
Update dependencies
2 parents dad91db + a65041d commit 6115c85

4 files changed

Lines changed: 12 additions & 8 deletions

File tree

Gemfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
PATH
22
remote: .
33
specs:
4-
momoapi-ruby (1.0.0)
4+
momoapi-ruby (1.0.1)
5+
faraday (~> 1.0)
56

67
GEM
78
remote: https://rubygems.org/
@@ -29,7 +30,7 @@ GEM
2930
coderay (~> 1.1.0)
3031
method_source (~> 0.9.0)
3132
public_suffix (4.0.3)
32-
rake (10.5.0)
33+
rake (13.0.1)
3334
rspec (3.9.0)
3435
rspec-core (~> 3.9.0)
3536
rspec-expectations (~> 3.9.0)
@@ -67,10 +68,9 @@ PLATFORMS
6768
DEPENDENCIES
6869
bundler (~> 2.0)
6970
coveralls (~> 0.8.15)
70-
faraday
7171
momoapi-ruby!
7272
pry (~> 0.12)
73-
rake (~> 10.0)
73+
rake (~> 13.0)
7474
rspec (~> 3.0)
7575
vcr (~> 5.1)
7676
webmock (~> 2.1)

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# MTN MoMo API Ruby Gem
22

3+
[![Gem Version](https://badge.fury.io/rb/momoapi-ruby.svg)](https://badge.fury.io/rb/momoapi-ruby)
34
[![Build Status](https://travis-ci.com/sparkplug/momoapi-ruby.svg?branch=master)](https://travis-ci.com/sparkplug/momoapi-ruby)
45
[![Coverage Status](https://coveralls.io/repos/github/sparkplug/momoapi-ruby/badge.svg?branch=master)](https://coveralls.io/github/sparkplug/momoapi-ruby?branch=master)
56
[![Join the community on Spectrum](https://withspectrum.github.io/badge/badge.svg)](https://spectrum.chat/momo-api-developers/)
@@ -16,7 +17,7 @@ gem 'momoapi-ruby'
1617

1718
And then execute:
1819

19-
$ bundle
20+
$ bundle install
2021

2122
Or install it yourself as:
2223

@@ -164,6 +165,8 @@ The 'transfer' method for Disbursements and Remittances follows the same format
164165

165166
An extra argument, `callback_url`, can be passed to the 'request_to_pay' and 'transfer' methods, denoting the URL to the server where the callback should be sent.
166167

168+
## Additional documentation
169+
For additional documentation, please refer to this link: https://www.rubydoc.info/gems/momoapi-ruby/1.0.1
167170

168171
## Contributing
169172

lib/momoapi-ruby/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Momoapi
4-
VERSION = '1.0.0'
4+
VERSION = '1.0.1'
55
end

momoapi-ruby.gemspec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,13 @@ Gem::Specification.new do |spec|
2323
spec.bindir = 'bin'
2424
spec.executables = 'momoapi-ruby'
2525
spec.require_paths = ['lib']
26+
spec.required_ruby_version = '>= 2.3'
2627

28+
spec.add_dependency 'faraday', '~> 1.0'
2729
spec.add_development_dependency 'bundler', '~> 2.0'
2830
spec.add_development_dependency 'coveralls', '~> 0.8.15'
29-
spec.add_development_dependency 'faraday'
3031
spec.add_development_dependency 'pry', '~> 0.12'
31-
spec.add_development_dependency 'rake', '~> 10.0'
32+
spec.add_development_dependency 'rake', '~> 13.0'
3233
spec.add_development_dependency 'rspec', '~> 3.0'
3334
spec.add_development_dependency 'vcr', '~> 5.1'
3435
spec.add_development_dependency 'webmock', '~> 2.1'

0 commit comments

Comments
 (0)