mpayer_ruby 0.0.1 → 0.0.04
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 +4 -4
- data/CODE_OF_CONDUCT.md +6 -0
- data/README.md +4 -10
- data/lib/mpayer/version.rb +1 -1
- data/mpayer_ruby.gemspec +2 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ea9bb8820c06537cc923fe169233d551952d3db9
|
|
4
|
+
data.tar.gz: cdd851883dc3058e47b1f118edc4c3e7ccbfc943
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 98f072c5aeb76066c98f87dd753ad36c39b004e81c41e15375cea54c33c633bd686d3fcd90b17c3df5f763008385fc68288627593f3203bbc273671deeebd7ed
|
|
7
|
+
data.tar.gz: 890fc024d35204ee7e78560d67ed9a06d8e89843c04958dcc35c4bb058004a79dceb9e56e9fb6358f1d6482fa69cdb8d4fc12b236ea590a0edf35e5d847f6495
|
data/CODE_OF_CONDUCT.md
CHANGED
|
@@ -11,3 +11,9 @@ Project maintainers have the right and responsibility to remove, edit, or reject
|
|
|
11
11
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
|
|
12
12
|
|
|
13
13
|
This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
|
|
14
|
+
|
|
15
|
+
## NOTES
|
|
16
|
+
http://www.smashingmagazine.com/2014/04/08/how-to-build-a-ruby-gem-with-bundler-test-driven-development-travis-ci-and-coveralls-oh-my/
|
|
17
|
+
|
|
18
|
+
http://blakewilliams.me/blog/developing-gems-with-tdd-and-minitest-pt-1
|
|
19
|
+
|
data/README.md
CHANGED
|
@@ -1,21 +1,15 @@
|
|
|
1
1
|
# Mpayer
|
|
2
2
|
|
|
3
|
-
[](https://travis-ci.org/kgathi2/mpayer_ruby)
|
|
3
|
+
[](https://travis-ci.org/kgathi2/mpayer_ruby) [](http://badge.fury.io/rb/mpayer_ruby) [](https://coveralls.io/r/kgathi2/mpayer_ruby)
|
|
4
4
|
|
|
5
|
-
[
|
|
6
|
-
|
|
7
|
-
[](https://coveralls.io/r/kgathi2/mpayer_ruby)
|
|
8
|
-
|
|
9
|
-
http://www.smashingmagazine.com/2014/04/08/how-to-build-a-ruby-gem-with-bundler-test-driven-development-travis-ci-and-coveralls-oh-my/
|
|
10
|
-
|
|
11
|
-
http://blakewilliams.me/blog/developing-gems-with-tdd-and-minitest-pt-1
|
|
12
|
-
|
|
13
|
-
Mpayer Ruby is a gem that makes it easy to integrate to [Mpayer payment gateway](http://mpayer.co.ke). It allows for railsesque way of interacting with Mpayer objects.
|
|
5
|
+
A ruby client that makes it easy to integrate to [Mpayer payment gateway](http://mpayer.co.ke). It allows for railsesque way of interacting with Mpayer objects. Is compatible currently with Mpayer version 1
|
|
14
6
|
|
|
15
7
|
## Installation
|
|
16
8
|
|
|
17
9
|
Add this line to your application's Gemfile:
|
|
18
10
|
|
|
11
|
+
gem requires `ruby ~>2.0`
|
|
12
|
+
|
|
19
13
|
```ruby
|
|
20
14
|
gem 'mpayer_ruby'
|
|
21
15
|
```
|
data/lib/mpayer/version.rb
CHANGED
data/mpayer_ruby.gemspec
CHANGED
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["Kariuki Gathitu"]
|
|
10
10
|
spec.email = ["kgathi2@gmail.com"]
|
|
11
11
|
|
|
12
|
-
spec.summary = %q{Ruby client for interfacing with http://app.mpayer.co.ke
|
|
12
|
+
spec.summary = %q{Ruby client for interfacing with http://app.mpayer.co.ke/api }
|
|
13
13
|
spec.description = %q{Interfaces with Mpayer payment gateway api }
|
|
14
14
|
spec.homepage = "https://github.com/kgathi2/mpayer_ruby"
|
|
15
15
|
spec.license = "MIT"
|
|
@@ -26,6 +26,7 @@ Gem::Specification.new do |spec|
|
|
|
26
26
|
spec.bindir = "exe"
|
|
27
27
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
28
28
|
spec.require_paths = ["lib"]
|
|
29
|
+
spec.required_ruby_version = '~> 2.0'
|
|
29
30
|
|
|
30
31
|
spec.add_development_dependency "bundler", "~> 1.9"
|
|
31
32
|
spec.add_development_dependency "rake", "~> 10.0"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mpayer_ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.04
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kariuki Gathitu
|
|
@@ -231,9 +231,9 @@ require_paths:
|
|
|
231
231
|
- lib
|
|
232
232
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
233
233
|
requirements:
|
|
234
|
-
- - "
|
|
234
|
+
- - "~>"
|
|
235
235
|
- !ruby/object:Gem::Version
|
|
236
|
-
version: '0'
|
|
236
|
+
version: '2.0'
|
|
237
237
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
238
238
|
requirements:
|
|
239
239
|
- - ">="
|
|
@@ -244,5 +244,5 @@ rubyforge_project:
|
|
|
244
244
|
rubygems_version: 2.4.5
|
|
245
245
|
signing_key:
|
|
246
246
|
specification_version: 4
|
|
247
|
-
summary: Ruby client for interfacing with http://app.mpayer.co.ke
|
|
247
|
+
summary: Ruby client for interfacing with http://app.mpayer.co.ke/api
|
|
248
248
|
test_files: []
|