mpayer_ruby 0.0.1 → 0.0.04

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ff3b1dc5a85b2cd5f27f7f46f0c69c6211de3cea
4
- data.tar.gz: c71a7cfd33f5c045638edad4742b52a5712324c3
3
+ metadata.gz: ea9bb8820c06537cc923fe169233d551952d3db9
4
+ data.tar.gz: cdd851883dc3058e47b1f118edc4c3e7ccbfc943
5
5
  SHA512:
6
- metadata.gz: dae9eb16c3bb90e017469c391782e1a25cb521ea493c97a668d8627f7e8cac60b1fbd4874b7e04bd055f4a043952a6730b3ab0c4148fc717bdbf1688d8e5f5c9
7
- data.tar.gz: 66b5c9747ce9f8b49b084670333c92a678d5e368649b7653de63bb2846288511b4b82cd0ed33897cf64cd7e707c2c5830918b9568191f47136414aa323093233
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
- [![Build Status](https://travis-ci.org/kgathi2/mpayer_ruby.svg)](https://travis-ci.org/kgathi2/mpayer_ruby)
3
+ [![Build Status](https://travis-ci.org/kgathi2/mpayer_ruby.svg)](https://travis-ci.org/kgathi2/mpayer_ruby) [![Gem Version](https://badge.fury.io/rb/mpayer_ruby.svg)](http://badge.fury.io/rb/mpayer_ruby) [![Coverage Status](https://coveralls.io/repos/kgathi2/mpayer_ruby/badge.svg)](https://coveralls.io/r/kgathi2/mpayer_ruby)
4
4
 
5
- [![Gem Version](https://badge.fury.io/rb/sinderella.png)](http://badge.fury.io/rb/mpayer_ruby)
6
-
7
- [![Coverage Status](https://coveralls.io/repos/kgathi2/mpayer_ruby/badge.svg)](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
  ```
@@ -1,3 +1,3 @@
1
1
  module Mpayer
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.04"
3
3
  end
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.1
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: []