allorails 0.5.2 → 0.5.3
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 +7 -0
- data/Gemfile +1 -1
- data/Gemfile.lock +2 -2
- data/Manifest +0 -1
- data/Rakefile +1 -1
- data/allorails.gemspec +6 -14
- data/lib/allorails/response/product_detail_response.rb +1 -1
- metadata +10 -13
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 062c8789bec118b0104014e10631c9d1cda56826
|
|
4
|
+
data.tar.gz: bb81a440ca4910b605c3471c7cbf7ffedbd90e85
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: a96bbd678296227753c67af1d9b7200e11211ab54aff4c97005a67b15528ac25425ab42e4111c7e0cb01b58e500b974697e532c0f3ccf6dd19fee1c98cd6aded
|
|
7
|
+
data.tar.gz: ac98a04ebd4d23f27e00a5e466ba4a5d1454e4f78b708b27b71b580331c88414ad0662aadd17e8b0f13c049cedf0eff85d74fd6cdebd029fcb9e56d1909f6e6f
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
data/Manifest
CHANGED
data/Rakefile
CHANGED
|
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
|
2
2
|
require 'rake'
|
|
3
3
|
require 'echoe'
|
|
4
4
|
|
|
5
|
-
Echoe.new('allorails', '0.5.
|
|
5
|
+
Echoe.new('allorails', '0.5.3') do |p|
|
|
6
6
|
p.description = "Ruby/Rails client for the Allopass online payment API"
|
|
7
7
|
p.url = "http://github.com/davb/allorails"
|
|
8
8
|
p.author = "Davide Bonapersona"
|
data/allorails.gemspec
CHANGED
|
@@ -1,29 +1,21 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
+
# stub: allorails 0.5.3 ruby lib
|
|
2
3
|
|
|
3
4
|
Gem::Specification.new do |s|
|
|
4
5
|
s.name = "allorails"
|
|
5
|
-
s.version = "0.5.
|
|
6
|
+
s.version = "0.5.3"
|
|
6
7
|
|
|
7
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
|
9
|
+
s.require_paths = ["lib"]
|
|
8
10
|
s.authors = ["Davide Bonapersona"]
|
|
9
|
-
s.date = "
|
|
11
|
+
s.date = "2014-11-11"
|
|
10
12
|
s.description = "Ruby/Rails client for the Allopass online payment API"
|
|
11
13
|
s.email = "davide@feeligo.com"
|
|
12
14
|
s.extra_rdoc_files = ["README.md", "lib/allorails.rb", "lib/allorails/api/api.rb", "lib/allorails/core.rb", "lib/allorails/errors/errors.rb", "lib/allorails/rails.rb", "lib/allorails/request/request.rb", "lib/allorails/response/api_mapping_response.rb", "lib/allorails/response/api_response.rb", "lib/allorails/response/model.rb", "lib/allorails/response/onetime_button_response.rb", "lib/allorails/response/onetime_pricing_response.rb", "lib/allorails/response/onetime_validate_codes_response.rb", "lib/allorails/response/product_detail_response.rb", "lib/allorails/response/transaction_detail_response.rb", "lib/allorails/response/transaction_prepare_response.rb"]
|
|
13
15
|
s.files = ["Gemfile", "Gemfile.lock", "Manifest", "README.md", "Rakefile", "allorails.gemspec", "init.rb", "lib/allorails.rb", "lib/allorails/api/api.rb", "lib/allorails/core.rb", "lib/allorails/errors/errors.rb", "lib/allorails/rails.rb", "lib/allorails/request/request.rb", "lib/allorails/response/api_mapping_response.rb", "lib/allorails/response/api_response.rb", "lib/allorails/response/model.rb", "lib/allorails/response/onetime_button_response.rb", "lib/allorails/response/onetime_pricing_response.rb", "lib/allorails/response/onetime_validate_codes_response.rb", "lib/allorails/response/product_detail_response.rb", "lib/allorails/response/transaction_detail_response.rb", "lib/allorails/response/transaction_prepare_response.rb"]
|
|
14
16
|
s.homepage = "http://github.com/davb/allorails"
|
|
15
|
-
s.rdoc_options = ["--line-numbers", "--
|
|
16
|
-
s.require_paths = ["lib"]
|
|
17
|
+
s.rdoc_options = ["--line-numbers", "--title", "Allorails", "--main", "README.md"]
|
|
17
18
|
s.rubyforge_project = "allorails"
|
|
18
|
-
s.rubygems_version = "
|
|
19
|
+
s.rubygems_version = "2.2.2"
|
|
19
20
|
s.summary = "Ruby/Rails client for the Allopass online payment API"
|
|
20
|
-
|
|
21
|
-
if s.respond_to? :specification_version then
|
|
22
|
-
s.specification_version = 3
|
|
23
|
-
|
|
24
|
-
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
25
|
-
else
|
|
26
|
-
end
|
|
27
|
-
else
|
|
28
|
-
end
|
|
29
21
|
end
|
|
@@ -23,7 +23,7 @@ class Allorails::Response::ProductDetailResponse < Allorails::Response::ApiMappi
|
|
|
23
23
|
|
|
24
24
|
## Provides the website
|
|
25
25
|
# @return (Website) website
|
|
26
|
-
node_reader :website, Website
|
|
26
|
+
node_reader :website, Allorails::Website
|
|
27
27
|
|
|
28
28
|
## Provides the expected number of codes
|
|
29
29
|
# @return (int) expected number of codes
|
metadata
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: allorails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.5.3
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Davide Bonapersona
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date:
|
|
11
|
+
date: 2014-11-11 00:00:00.000000000 Z
|
|
13
12
|
dependencies: []
|
|
14
13
|
description: Ruby/Rails client for the Allopass online payment API
|
|
15
14
|
email: davide@feeligo.com
|
|
@@ -57,32 +56,30 @@ files:
|
|
|
57
56
|
- lib/allorails/response/transaction_prepare_response.rb
|
|
58
57
|
homepage: http://github.com/davb/allorails
|
|
59
58
|
licenses: []
|
|
59
|
+
metadata: {}
|
|
60
60
|
post_install_message:
|
|
61
61
|
rdoc_options:
|
|
62
|
-
- --line-numbers
|
|
63
|
-
- --
|
|
64
|
-
- --title
|
|
62
|
+
- "--line-numbers"
|
|
63
|
+
- "--title"
|
|
65
64
|
- Allorails
|
|
66
|
-
- --main
|
|
65
|
+
- "--main"
|
|
67
66
|
- README.md
|
|
68
67
|
require_paths:
|
|
69
68
|
- lib
|
|
70
69
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
71
|
-
none: false
|
|
72
70
|
requirements:
|
|
73
|
-
- -
|
|
71
|
+
- - ">="
|
|
74
72
|
- !ruby/object:Gem::Version
|
|
75
73
|
version: '0'
|
|
76
74
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
77
|
-
none: false
|
|
78
75
|
requirements:
|
|
79
|
-
- -
|
|
76
|
+
- - ">="
|
|
80
77
|
- !ruby/object:Gem::Version
|
|
81
78
|
version: '1.2'
|
|
82
79
|
requirements: []
|
|
83
80
|
rubyforge_project: allorails
|
|
84
|
-
rubygems_version:
|
|
81
|
+
rubygems_version: 2.2.2
|
|
85
82
|
signing_key:
|
|
86
|
-
specification_version:
|
|
83
|
+
specification_version: 4
|
|
87
84
|
summary: Ruby/Rails client for the Allopass online payment API
|
|
88
85
|
test_files: []
|