payone_connect 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -1,4 +1,5 @@
1
1
  *.sw?
2
+ *.tmproj
2
3
  .DS_Store
3
4
  coverage
4
5
  rdoc
data/LICENSE CHANGED
@@ -1,3 +1,4 @@
1
+ (The MIT License)
1
2
  Copyright (c) 2009 Patrick Huesler
2
3
 
3
4
  Permission is hereby granted, free of charge, to any person obtaining
data/README.rdoc CHANGED
@@ -1,6 +1,21 @@
1
1
  = payone_connect
2
2
 
3
- Description goes here.
3
+ This is a super simple wrapper around the API for the payment service provider payone (http://www.payone.de)
4
+
5
+ == Installation
6
+ === Via github
7
+ gem install phuesler-payone_connect
8
+ === Via gem cutter (http://www.gemcutter.org)
9
+ gem install gemcutter
10
+ gem tumble
11
+ gem install payone_connect
12
+
13
+ == Usage
14
+
15
+ require 'payone_connect'
16
+
17
+ payone = PayoneConnect.new(api_key,params_hash)
18
+ puts payone.request[:status]
4
19
 
5
20
  == Note on Patches/Pull Requests
6
21
 
@@ -9,8 +24,6 @@ Description goes here.
9
24
  * Add tests for it. This is important so I don't break it in a
10
25
  future version unintentionally.
11
26
  * Commit, do not mess with rakefile, version, or history.
12
- (if you want to have your own version, that is fine but
13
- bump version in a commit by itself I can ignore when I pull)
14
27
  * Send me a pull request. Bonus points for topic branches.
15
28
 
16
29
  == Copyright
data/Rakefile CHANGED
@@ -5,7 +5,7 @@ begin
5
5
  require 'jeweler'
6
6
  Jeweler::Tasks.new do |gem|
7
7
  gem.name = "payone_connect"
8
- gem.summary = %Q{Simple http clinet for the psp payone api (http://www.payone.de/)}
8
+ gem.summary = %Q{Simple http client for the psp payone api (http://www.payone.de/)}
9
9
  gem.description = %Q{Connects to the payone gateway and passes the parameters}
10
10
  gem.email = "patrick.huesler@gmail.com"
11
11
  gem.homepage = "http://github.com/phuesler/payone_connect"
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -1,7 +1,7 @@
1
1
  require 'net/http'
2
2
  require 'net/https'
3
3
  require 'uri'
4
- require 'core_ext'
4
+ require 'payone_connect/core_ext'
5
5
 
6
6
  class PayoneConnect
7
7
  attr_reader :request_data, :request_header
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{payone_connect}
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Patrick Huesler"]
12
- s.date = %q{2009-10-03}
12
+ s.date = %q{2009-10-04}
13
13
  s.description = %q{Connects to the payone gateway and passes the parameters}
14
14
  s.email = %q{patrick.huesler@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -23,8 +23,8 @@ Gem::Specification.new do |s|
23
23
  "README.rdoc",
24
24
  "Rakefile",
25
25
  "VERSION",
26
- "lib/core_ext.rb",
27
26
  "lib/payone_connect.rb",
27
+ "lib/payone_connect/core_ext.rb",
28
28
  "payone_connect.gemspec",
29
29
  "spec/payone_connect_spec.rb",
30
30
  "spec/spec_helper.rb"
@@ -33,7 +33,7 @@ Gem::Specification.new do |s|
33
33
  s.rdoc_options = ["--charset=UTF-8"]
34
34
  s.require_paths = ["lib"]
35
35
  s.rubygems_version = %q{1.3.5}
36
- s.summary = %q{Simple http clinet for the psp payone api (http://www.payone.de/)}
36
+ s.summary = %q{Simple http client for the psp payone api (http://www.payone.de/)}
37
37
  s.test_files = [
38
38
  "spec/payone_connect_spec.rb",
39
39
  "spec/spec_helper.rb"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: payone_connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrick Huesler
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-10-03 00:00:00 +02:00
12
+ date: 2009-10-04 00:00:00 +02:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -48,8 +48,8 @@ files:
48
48
  - README.rdoc
49
49
  - Rakefile
50
50
  - VERSION
51
- - lib/core_ext.rb
52
51
  - lib/payone_connect.rb
52
+ - lib/payone_connect/core_ext.rb
53
53
  - payone_connect.gemspec
54
54
  - spec/payone_connect_spec.rb
55
55
  - spec/spec_helper.rb
@@ -80,7 +80,7 @@ rubyforge_project:
80
80
  rubygems_version: 1.3.5
81
81
  signing_key:
82
82
  specification_version: 3
83
- summary: Simple http clinet for the psp payone api (http://www.payone.de/)
83
+ summary: Simple http client for the psp payone api (http://www.payone.de/)
84
84
  test_files:
85
85
  - spec/payone_connect_spec.rb
86
86
  - spec/spec_helper.rb
File without changes