paytm 0.1.3 → 0.1.4

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: f8cdadc2cab60dfc95586e4177adddd97814745b
4
- data.tar.gz: e6570f18a75e99296fb545e5193731446fd391a7
3
+ metadata.gz: 878f342d335b6782bf413f3cd45444ca192b7448
4
+ data.tar.gz: 8abef751f85d6041b238acbc1807b34762d901aa
5
5
  SHA512:
6
- metadata.gz: f86301a4d439ff96e5d4d5e275edfb193ba36be40918e9857bfee915f0739051b4cd4a43693072507f1ad1cef7552383acf3b15a4d2d6f334f7a02bb8bf096c2
7
- data.tar.gz: 2b4d5c6924eb816d0c89dcd6ff66c7b916b2a47159bed3c4d4a557cea100c85e74a3a6466892c5705f6f0e1286b8145bb36741827e625d10c347a8e674002894
6
+ metadata.gz: 2ad44e9af87b3a2ecb27fc1a83e204e012e51e04405ef23337f8a8500b331aa91170f665d865e8d11514dd4c25a7704acb3853b5592f389778f0c827b242c25b
7
+ data.tar.gz: 5ee486e5bd0f3f2202ffe3fb9ac30b5a79d6f8860eea6737e2e36eefc774f346375400aa27dbb3a3d592ddfcf7003c42cd32cc66be75a7ed82e35ca4b2121f3a
data/README.md CHANGED
@@ -52,10 +52,6 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
52
52
 
53
53
  Bug reports and pull requests are welcome on GitHub at https://github.com/ronakjain90/paytm. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
54
54
 
55
- ##Commercial license
56
-
57
- If you want to use this gem for a commercial application, commercial license is the appropriate license. With this option, your source code is kept proprietary. This will definitely helps you to save hours worth of effort.
58
-
59
55
  ## Open-source license
60
56
 
61
57
  > Copyright (C) 2016 Ronak Jain (ronakjain90@gmail.com)
@@ -22,7 +22,8 @@ module Paytm
22
22
  request_params.merge!(params)
23
23
  platform.merge!(opts)
24
24
  request_params.merge!(Paytm.guid)
25
- send_request(:post, merchant_to_wallet_url, request_params, platform)
25
+ response = send_request(:post, merchant_to_wallet_url, request_params, platform)
26
+ response
26
27
  end
27
28
 
28
29
  def check_status(params = {}, opts = {})
data/lib/paytm/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Paytm
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
data/lib/paytm.rb CHANGED
@@ -79,10 +79,8 @@ module Paytm
79
79
  :method => method, :open_timeout => open_timeout,
80
80
  :payload => payload, :url => url, :timeout => read_timeout)
81
81
 
82
- puts request_opts
83
82
  response = execute_request(request_opts)
84
-
85
- puts response
83
+ response
86
84
  end
87
85
 
88
86
  def self.execute_request(opts)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paytm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ronak Jain