activetiger 0.1.0 → 0.1.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/README.rdoc +2 -2
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/lib/activetiger.rb +1 -1
- metadata +40 -17
- data/.gitignore +0 -7
data/README.rdoc
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
activetiger is a ruby library that allows interaction with Tiger Payment Processing.
|
|
6
6
|
Using simple commands you can charge, authorize, capture, void, refund and update
|
|
7
7
|
credit card transactions. Some simple examples are below, see
|
|
8
|
-
http://
|
|
8
|
+
http://rdoc.info/projects/inventables/activetiger for complete documentation.
|
|
9
9
|
|
|
10
10
|
==Simple example
|
|
11
11
|
|
|
@@ -58,4 +58,4 @@ the sandbox account while run production with your account. Very handy for testi
|
|
|
58
58
|
|
|
59
59
|
==Copyright
|
|
60
60
|
|
|
61
|
-
Copyright (c)
|
|
61
|
+
Copyright (c) 2011 Inventables. See LICENSE for details.
|
data/Rakefile
CHANGED
|
@@ -10,9 +10,9 @@ begin
|
|
|
10
10
|
gem.description = %Q{ActiveTiger allows you to simply add payment processing to your application using Tiger Payment Solutions}
|
|
11
11
|
gem.email = "development@inventables.com"
|
|
12
12
|
gem.homepage = "http://github.com/inventables/activetiger"
|
|
13
|
-
gem.authors = ["Drew Olson"]
|
|
13
|
+
gem.authors = ["Drew Olson", "Matt Gornick", "Kurt Preston"]
|
|
14
14
|
gem.add_development_dependency "rspec"
|
|
15
|
-
gem.add_dependency "
|
|
15
|
+
gem.add_dependency "rest-client", ">=1.0.4"
|
|
16
16
|
end
|
|
17
17
|
rescue LoadError
|
|
18
18
|
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/lib/activetiger.rb
CHANGED
metadata
CHANGED
|
@@ -1,37 +1,55 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: activetiger
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
4
|
+
hash: 25
|
|
5
|
+
prerelease: false
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 1
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
5
11
|
platform: ruby
|
|
6
12
|
authors:
|
|
7
13
|
- Drew Olson
|
|
14
|
+
- Matt Gornick
|
|
15
|
+
- Kurt Preston
|
|
8
16
|
autorequire:
|
|
9
17
|
bindir: bin
|
|
10
18
|
cert_chain: []
|
|
11
19
|
|
|
12
|
-
date:
|
|
20
|
+
date: 2011-03-16 00:00:00 -05:00
|
|
13
21
|
default_executable:
|
|
14
22
|
dependencies:
|
|
15
23
|
- !ruby/object:Gem::Dependency
|
|
16
24
|
name: rspec
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
25
|
+
prerelease: false
|
|
26
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
27
|
+
none: false
|
|
20
28
|
requirements:
|
|
21
29
|
- - ">="
|
|
22
30
|
- !ruby/object:Gem::Version
|
|
31
|
+
hash: 3
|
|
32
|
+
segments:
|
|
33
|
+
- 0
|
|
23
34
|
version: "0"
|
|
24
|
-
|
|
35
|
+
type: :development
|
|
36
|
+
version_requirements: *id001
|
|
25
37
|
- !ruby/object:Gem::Dependency
|
|
26
|
-
name:
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
38
|
+
name: rest-client
|
|
39
|
+
prerelease: false
|
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
30
42
|
requirements:
|
|
31
43
|
- - ">="
|
|
32
44
|
- !ruby/object:Gem::Version
|
|
45
|
+
hash: 31
|
|
46
|
+
segments:
|
|
47
|
+
- 1
|
|
48
|
+
- 0
|
|
49
|
+
- 4
|
|
33
50
|
version: 1.0.4
|
|
34
|
-
|
|
51
|
+
type: :runtime
|
|
52
|
+
version_requirements: *id002
|
|
35
53
|
description: ActiveTiger allows you to simply add payment processing to your application using Tiger Payment Solutions
|
|
36
54
|
email: development@inventables.com
|
|
37
55
|
executables: []
|
|
@@ -43,7 +61,6 @@ extra_rdoc_files:
|
|
|
43
61
|
- README.rdoc
|
|
44
62
|
files:
|
|
45
63
|
- .document
|
|
46
|
-
- .gitignore
|
|
47
64
|
- LICENSE
|
|
48
65
|
- README.rdoc
|
|
49
66
|
- Rakefile
|
|
@@ -61,26 +78,32 @@ homepage: http://github.com/inventables/activetiger
|
|
|
61
78
|
licenses: []
|
|
62
79
|
|
|
63
80
|
post_install_message:
|
|
64
|
-
rdoc_options:
|
|
65
|
-
|
|
81
|
+
rdoc_options: []
|
|
82
|
+
|
|
66
83
|
require_paths:
|
|
67
84
|
- lib
|
|
68
85
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
86
|
+
none: false
|
|
69
87
|
requirements:
|
|
70
88
|
- - ">="
|
|
71
89
|
- !ruby/object:Gem::Version
|
|
90
|
+
hash: 3
|
|
91
|
+
segments:
|
|
92
|
+
- 0
|
|
72
93
|
version: "0"
|
|
73
|
-
version:
|
|
74
94
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
95
|
+
none: false
|
|
75
96
|
requirements:
|
|
76
97
|
- - ">="
|
|
77
98
|
- !ruby/object:Gem::Version
|
|
99
|
+
hash: 3
|
|
100
|
+
segments:
|
|
101
|
+
- 0
|
|
78
102
|
version: "0"
|
|
79
|
-
version:
|
|
80
103
|
requirements: []
|
|
81
104
|
|
|
82
105
|
rubyforge_project:
|
|
83
|
-
rubygems_version: 1.3.
|
|
106
|
+
rubygems_version: 1.3.7
|
|
84
107
|
signing_key:
|
|
85
108
|
specification_version: 3
|
|
86
109
|
summary: ruby integration with Tiger Payment Solutions
|