realex 0.3.0 → 0.3.1
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.
- data/Rakefile +1 -1
- data/realex.gemspec +42 -36
- metadata +53 -12
- data/.gitignore +0 -3
data/Rakefile
CHANGED
@@ -25,7 +25,7 @@ begin
|
|
25
25
|
gemspec.email = "paul@rslw.com"
|
26
26
|
gemspec.homepage = "http://github.com/paulca/realex"
|
27
27
|
gemspec.authors = ["Paul Campbell"]
|
28
|
-
gemspec.version = "0.3.
|
28
|
+
gemspec.version = "0.3.1"
|
29
29
|
gemspec.add_dependency 'nokogiri', '1.4.1'
|
30
30
|
end
|
31
31
|
rescue LoadError
|
data/realex.gemspec
CHANGED
@@ -1,71 +1,77 @@
|
|
1
1
|
# Generated by jeweler
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{realex}
|
8
|
-
s.version = "0.3.
|
8
|
+
s.version = "0.3.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Paul Campbell"]
|
12
|
-
s.date = %q{
|
12
|
+
s.date = %q{2011-01-31}
|
13
13
|
s.description = %q{A Ruby library to make use of the payments API at http://realexpayments.com}
|
14
14
|
s.email = %q{paul@rslw.com}
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"README.md"
|
17
17
|
]
|
18
18
|
s.files = [
|
19
|
-
"
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
"spec/transaction_spec.rb"
|
19
|
+
"Gemfile",
|
20
|
+
"README.md",
|
21
|
+
"Rakefile",
|
22
|
+
"lib/real_ex/address.rb",
|
23
|
+
"lib/real_ex/card.rb",
|
24
|
+
"lib/real_ex/client.rb",
|
25
|
+
"lib/real_ex/config.rb",
|
26
|
+
"lib/real_ex/initializer.rb",
|
27
|
+
"lib/real_ex/recurring.rb",
|
28
|
+
"lib/real_ex/response.rb",
|
29
|
+
"lib/real_ex/transaction.rb",
|
30
|
+
"lib/realex.rb",
|
31
|
+
"realex.gemspec",
|
32
|
+
"spec/address_spec.rb",
|
33
|
+
"spec/card_spec.rb",
|
34
|
+
"spec/config_spec.rb",
|
35
|
+
"spec/real_ex_spec.rb",
|
36
|
+
"spec/recurring_spec.rb",
|
37
|
+
"spec/response_spec.rb",
|
38
|
+
"spec/spec.opts",
|
39
|
+
"spec/spec_helper.rb",
|
40
|
+
"spec/transaction_spec.rb"
|
42
41
|
]
|
43
42
|
s.homepage = %q{http://github.com/paulca/realex}
|
44
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
45
43
|
s.require_paths = ["lib"]
|
46
|
-
s.rubygems_version = %q{1.
|
44
|
+
s.rubygems_version = %q{1.4.2}
|
47
45
|
s.summary = %q{Ruby interface to http://realexpayments.com}
|
48
46
|
s.test_files = [
|
49
47
|
"spec/address_spec.rb",
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
48
|
+
"spec/card_spec.rb",
|
49
|
+
"spec/config_spec.rb",
|
50
|
+
"spec/real_ex_spec.rb",
|
51
|
+
"spec/recurring_spec.rb",
|
52
|
+
"spec/response_spec.rb",
|
53
|
+
"spec/spec_helper.rb",
|
54
|
+
"spec/transaction_spec.rb"
|
57
55
|
]
|
58
56
|
|
59
57
|
if s.respond_to? :specification_version then
|
60
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
61
58
|
s.specification_version = 3
|
62
59
|
|
63
60
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
61
|
+
s.add_runtime_dependency(%q<nokogiri>, [">= 0"])
|
62
|
+
s.add_runtime_dependency(%q<builder>, [">= 0"])
|
63
|
+
s.add_development_dependency(%q<jeweler>, [">= 0"])
|
64
64
|
s.add_runtime_dependency(%q<nokogiri>, ["= 1.4.1"])
|
65
65
|
else
|
66
|
+
s.add_dependency(%q<nokogiri>, [">= 0"])
|
67
|
+
s.add_dependency(%q<builder>, [">= 0"])
|
68
|
+
s.add_dependency(%q<jeweler>, [">= 0"])
|
66
69
|
s.add_dependency(%q<nokogiri>, ["= 1.4.1"])
|
67
70
|
end
|
68
71
|
else
|
72
|
+
s.add_dependency(%q<nokogiri>, [">= 0"])
|
73
|
+
s.add_dependency(%q<builder>, [">= 0"])
|
74
|
+
s.add_dependency(%q<jeweler>, [">= 0"])
|
69
75
|
s.add_dependency(%q<nokogiri>, ["= 1.4.1"])
|
70
76
|
end
|
71
77
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: realex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 17
|
5
|
+
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 3
|
9
|
-
-
|
10
|
-
version: 0.3.
|
9
|
+
- 1
|
10
|
+
version: 0.3.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Paul Campbell
|
@@ -15,13 +15,56 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date:
|
18
|
+
date: 2011-01-31 00:00:00 +00:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
22
|
+
prerelease: false
|
22
23
|
name: nokogiri
|
24
|
+
type: :runtime
|
25
|
+
version_requirements: &id001 !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
27
|
+
requirements:
|
28
|
+
- - ">="
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
hash: 3
|
31
|
+
segments:
|
32
|
+
- 0
|
33
|
+
version: "0"
|
34
|
+
requirement: *id001
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
prerelease: false
|
37
|
+
name: builder
|
38
|
+
type: :runtime
|
39
|
+
version_requirements: &id002 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
hash: 3
|
45
|
+
segments:
|
46
|
+
- 0
|
47
|
+
version: "0"
|
48
|
+
requirement: *id002
|
49
|
+
- !ruby/object:Gem::Dependency
|
23
50
|
prerelease: false
|
24
|
-
|
51
|
+
name: jeweler
|
52
|
+
type: :development
|
53
|
+
version_requirements: &id003 !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
hash: 3
|
59
|
+
segments:
|
60
|
+
- 0
|
61
|
+
version: "0"
|
62
|
+
requirement: *id003
|
63
|
+
- !ruby/object:Gem::Dependency
|
64
|
+
prerelease: false
|
65
|
+
name: nokogiri
|
66
|
+
type: :runtime
|
67
|
+
version_requirements: &id004 !ruby/object:Gem::Requirement
|
25
68
|
none: false
|
26
69
|
requirements:
|
27
70
|
- - "="
|
@@ -32,8 +75,7 @@ dependencies:
|
|
32
75
|
- 4
|
33
76
|
- 1
|
34
77
|
version: 1.4.1
|
35
|
-
|
36
|
-
version_requirements: *id001
|
78
|
+
requirement: *id004
|
37
79
|
description: A Ruby library to make use of the payments API at http://realexpayments.com
|
38
80
|
email: paul@rslw.com
|
39
81
|
executables: []
|
@@ -43,7 +85,6 @@ extensions: []
|
|
43
85
|
extra_rdoc_files:
|
44
86
|
- README.md
|
45
87
|
files:
|
46
|
-
- .gitignore
|
47
88
|
- Gemfile
|
48
89
|
- README.md
|
49
90
|
- Rakefile
|
@@ -71,8 +112,8 @@ homepage: http://github.com/paulca/realex
|
|
71
112
|
licenses: []
|
72
113
|
|
73
114
|
post_install_message:
|
74
|
-
rdoc_options:
|
75
|
-
|
115
|
+
rdoc_options: []
|
116
|
+
|
76
117
|
require_paths:
|
77
118
|
- lib
|
78
119
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -96,7 +137,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
96
137
|
requirements: []
|
97
138
|
|
98
139
|
rubyforge_project:
|
99
|
-
rubygems_version: 1.
|
140
|
+
rubygems_version: 1.4.2
|
100
141
|
signing_key:
|
101
142
|
specification_version: 3
|
102
143
|
summary: Ruby interface to http://realexpayments.com
|
data/.gitignore
DELETED