paysto-rails 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MDc3NzBiMTNmOGFjNjgxNTZhMmRjODM2MTAzNzBmYmYwZGM1ZmNiYQ==
4
+ ZDZmN2Q3NWUxMmMwYzY0Njg0NzBkYzQxYTI5YmRkYTdmZjY3ZDUwZA==
5
5
  data.tar.gz: !binary |-
6
- MGUwYjY1M2RmZTY0OGFjZWRkMmFjNjE5ZWE3ODg5MDI1MjdlMGNmNA==
6
+ YjFhYzZiMjFlOWJkMDNmOGI5Zjk0MTk5YTU5MmY0MTUxNmUxOGQwNw==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZjNjYTVhODgyZDJlNThiMDU2M2EwODYxMzAzNzkyNmFmZmQ3MTQ5NmI4OTA4
10
- NmRlMDk0YmZhYTdkNDg3NTZmZTg3MTk2OWNjZjAxMzFjNmNjOGJlYjY3MWNm
11
- ZGFhMzFkZjRjMTM5N2I4YjI4ZTYxY2U4ZTc3NWNlNjUwYTIxOTU=
9
+ ZGU3YTliYzMwMmZhNTIyMmI3YzEyNWFhNzBkZTdjNTA5YTAzMmNiZDgwNGUw
10
+ YjhhZTM0MTZjZWNlNWJiNmNlMTQwMTgzZGEzYTE4OTg4NDUyNGY3ODk3YjVj
11
+ MWNhZTM3YjVkY2NkNDVhMjJmZjRlODBkODU2ODg3MzI3Yjc5ZWI=
12
12
  data.tar.gz: !binary |-
13
- MzFmNzY3NzZmYWM5YzFkNGZmNDc4YzZhNWYwMTc4NDg1MTk2NzFkZDg3OWFk
14
- OWI1YWQxMzY4OGMzYjZhNWYyMzU4ODY2MzMxZTEzYjYzNzc1YjQ2YjZmNjA2
15
- OGYwOGI2OWE0NGQ3NWVlYjcyNTQwNGJjMzU5NTc0Y2RkZWU1MWI=
13
+ YjE4ZmI5NDY2MGNkNTBlYTY3NjBmOGQ1YjA2YzYwZWVhNDgyYjMzOGZhNDBl
14
+ MTQxOTJkMmMwNDliOWZkNmQ0NzU4YjY5ZmNhYjZlZDQwMzExMzgwZmMyMjMy
15
+ ODY4NDQxNzUzZjliZWQ5MjVkNWM3OWI1NTYyMTE1NTBjOTlkZDc=
data/README.md CHANGED
@@ -1,8 +1,9 @@
1
1
  # «paysto-rails»
2
- [![GitHub version](https://badge.fury.io/gh/fbandrey%2Fpaysto-rails.svg)](http://badge.fury.io/gh/fbandrey%2Fpaysto-rails)
2
+ [![Gem Version](https://badge.fury.io/rb/paysto-rails.svg)](http://badge.fury.io/rb/paysto-rails)
3
3
  [![Code Climate](https://codeclimate.com/github/fbandrey/paysto-rails/badges/gpa.svg)](https://codeclimate.com/github/fbandrey/paysto-rails)
4
+ [![Dependency Status](https://gemnasium.com/fbandrey/paysto-rails.svg)](https://gemnasium.com/fbandrey/paysto-rails)
4
5
 
5
- This is first implementation of gateway for passing payments through [Paysto](https://paysto.com).
6
+ This is first implementation for passing payments through [Paysto](https://paysto.com) gateway.
6
7
 
7
8
  It works only with «[onlineMerchant](https://paysto.com/ru/products/onlineMerchant)», if you know what I mean. :)
8
9
 
@@ -42,7 +43,7 @@ and extend your routes with:
42
43
  end
43
44
  ```
44
45
 
45
- Right now you may to configure model names in ```config/initializers/paysto.rb``` file for payments, invoices and their notifications. By default they are ```Payment```, ```Invoice``` and ```InvoiceNotification``` respectively.
46
+ Right now you may configure model names in ```config/initializers/paysto.rb``` file for payments, invoices and their notifications. By default they are ```Payment```, ```Invoice``` and ```InvoiceNotification``` respectively.
46
47
 
47
48
  Then run this command:
48
49
  ```
@@ -64,7 +65,7 @@ In the simple case only what you should to do:
64
65
 
65
66
  That's all.
66
67
 
67
- Now you may to customize models as you want, associate it with users or anything else...
68
+ Now you may customize models as you want, associate it with users or anything else...
68
69
 
69
70
  For more information check [payment workflow](https://github.com/fbandrey/paysto-rails/wiki/Payment-workflow) wiki.
70
71
 
@@ -1,3 +1,3 @@
1
1
  module Paysto
2
- VERSION = '1.0.0'
3
- end
2
+ VERSION = '1.0.1'
3
+ end
data/paysto-rails.gemspec CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.version = Paysto::VERSION
9
9
  spec.authors = ['Andrey Baiburin']
10
10
  spec.email = ['fbandrey@gmail.com']
11
- spec.description = %q{Payments gateway for Paysto.com}
12
- spec.summary = %q{Payments gateway for Paysto.com}
11
+ spec.description = %q{Paysto.com implementation for Ruby on Rails applications}
12
+ spec.summary = %q{Paysto.com implementation for Ruby on Rails applications}
13
13
  spec.homepage = ''
14
14
  spec.license = 'MIT'
15
15
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paysto-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrey Baiburin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-17 00:00:00.000000000 Z
11
+ date: 2014-09-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -52,7 +52,7 @@ dependencies:
52
52
  - - ! '>='
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
- description: Payments gateway for Paysto.com
55
+ description: Paysto.com implementation for Ruby on Rails applications
56
56
  email:
57
57
  - fbandrey@gmail.com
58
58
  executables: []
@@ -102,5 +102,5 @@ rubyforge_project:
102
102
  rubygems_version: 2.2.2
103
103
  signing_key:
104
104
  specification_version: 4
105
- summary: Payments gateway for Paysto.com
105
+ summary: Paysto.com implementation for Ruby on Rails applications
106
106
  test_files: []