payfort_start 0.0.1 → 0.0.2

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: 21a5936818d47f37354f17ab24a9844da1456fd2
4
- data.tar.gz: 7af678b629882d5d4be4c9528c1a17a50a41da9b
3
+ metadata.gz: e07b14222462e5d347b0c583fbb63e25e3c0f4b1
4
+ data.tar.gz: 35e4d5c88d29b40555a236f6009660f220bdaed1
5
5
  SHA512:
6
- metadata.gz: 56f81f4e54b67e62b2f8e132cc3478cc6cac42672419133080e076b335812a2c0c444ef5d04d6e6c00fb8ac9da8145a189c324fa20a65d76b9d490b3ecea9638
7
- data.tar.gz: 35421f2a412b24dd33e9e65a0fe857a48eb0e70e9fd612d4d47fca081208539e4ea485a46c8b521ac2a923d886d4627feb974166878bbd4b101f7831c8109e74
6
+ metadata.gz: 2ffdf6ef659e58f6636f26a2f128034716ea3af0887a3901fc275d3cd0c1219bd3f23c9bde3dc49fbcfe6e7bd4ebcbe25f6b1efe827ae267447eb9407a3b3189
7
+ data.tar.gz: 0144cbb3cb0dbf29dc79ded94d5c31136564f0ef31dcd7dfd7d176e92bb71b0836f66b1cfa76237e44838cf969dfcad29a9fb21087ba97bc53d2e5cab3a58723
data/.gitignore CHANGED
@@ -32,3 +32,4 @@ build/
32
32
 
33
33
  # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
34
34
  .rvmrc
35
+ tags
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- payfort (0.1)
4
+ payfort_start (0.0.1)
5
5
  httparty (~> 0.13)
6
6
  json (~> 1.8)
7
7
 
@@ -40,5 +40,5 @@ PLATFORMS
40
40
 
41
41
  DEPENDENCIES
42
42
  byebug
43
- payfort!
43
+ payfort_start!
44
44
  rspec
data/lib/start/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Start
2
- VERSION = '0.0.1'
2
+ VERSION = '0.0.2'
3
3
  end
data/lib/start.rb CHANGED
@@ -2,7 +2,7 @@ require "httparty"
2
2
  require "start/base_resource"
3
3
  require "start/customer"
4
4
  require "start/charge"
5
- require "start/errors/payfort_error"
5
+ require "start/errors/start_error"
6
6
  require "start/errors/authentication_error"
7
7
  require "start/errors/banking_error"
8
8
  require "start/errors/request_error"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: payfort_start
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pavel Gabriel
@@ -61,9 +61,9 @@ files:
61
61
  - lib/start/customer.rb
62
62
  - lib/start/errors/authentication_error.rb
63
63
  - lib/start/errors/banking_error.rb
64
- - lib/start/errors/payfort_error.rb
65
64
  - lib/start/errors/processing_error.rb
66
65
  - lib/start/errors/request_error.rb
66
+ - lib/start/errors/start_error.rb
67
67
  - lib/start/version.rb
68
68
  - payfort_start.gemspec
69
69
  - spec/lib/start/charge_spec.rb