Skip to content

Commit

Permalink
Merge pull request #20 from slogsdon/master
Browse files Browse the repository at this point in the history
bump version to 1.5.0
  • Loading branch information
securesubmit-buildmaster authored Nov 14, 2019
2 parents da8ba42 + 67d3168 commit e0a1c9c
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- RXPiOS (1.4.0)
- RXPiOS (1.5.0)

DEPENDENCIES:
- RXPiOS (from `../`)
Expand All @@ -9,7 +9,7 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
RXPiOS: 01e473b39d1126e53e8ba22f5ad32b6927e57a03
RXPiOS: 462d0d013741b1e3a537308ff21332b115fbc4af

PODFILE CHECKSUM: 52c366f98357bafca21816643cc3089ddafc46d1

Expand Down
4 changes: 2 additions & 2 deletions Example/Pods/Local Podspecs/RXPiOS.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Example/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Example/Pods/Target Support Files/RXPiOS/RXPiOS-Info.plist

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You can find more information on how to use this library and sign up for a free
1. To integrate the Realex Payments iOS Library into your Xcode project using CocoaPods, specify it in your podfile:

```
pod 'RXPiOS', '~> 1.4.0'
pod 'RXPiOS', '~> 1.5.0'
```

2. Then, run the following command:
Expand Down Expand Up @@ -70,7 +70,7 @@ Next you set the object which will act as the delegate for the HPPManager. The d

```
hppManager.delegate = self
```
```

### Delegate Callbacks

Expand All @@ -88,7 +88,7 @@ The HPP Manager's delegate should implement the following three functions to rec
func HPPManagerCompletedWithResult(result: Dictionary <String, String>)
func HPPManagerFailedWithError(error: NSError?)
func HPPManagerCancelled()
```
```

### Present Payment Form

Expand Down Expand Up @@ -120,22 +120,22 @@ hppManager.amount = "100"
hppManager.currency = "EUR"
```

These will be sent to the *Request Producer URL*, your server-side code must be setup to take in these values and pass them to the HPP server-side SDK for them to be included in the request.
These will be sent to the *Request Producer URL*, your server-side code must be setup to take in these values and pass them to the HPP server-side SDK for them to be included in the request.

Note, in addition to the predefined properties, you can add any amount of additional arbitrary properties as follows:

```
hppManager.supplementaryData["UNKNOWN_1"] = "Unknown value 1"
hppManager.supplementaryData["UNKNOWN_2"] = "Unknown value 2"
```
```

### Testing
### Testing

Realex Payments maintain separate endpoints for live and test transactions. You’ll need to override the HPP URL in the SDK to facilitate testing. Use the code below:

```
hppManager.HPPURL = NSURL(string: "https://pay.sandbox.realexpayments.com/pay")
```
```

## License

Expand Down
4 changes: 2 additions & 2 deletions RXPiOS.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = "RXPiOS"
s.version = "1.4.0"
s.version = "1.5.0"
s.summary = "The official Realex Payments iOS SDK for HPP and Remote API."

# This description is used to generate tags and improve search results.
Expand All @@ -23,7 +23,7 @@ Pod::Spec.new do |s|
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Damian Sullivan" => "damian@brightstarsoftware.com", "Realex Payments" => "developers@realexpayments.com" }
s.source = { :git => "https://github.com/realexpayments/rxp-ios.git", :tag => "1.4.0" }
s.source = { :git => "https://github.com/realexpayments/rxp-ios.git", :tag => "1.5.0" }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'

s.platform = :ios, '8.0'
Expand Down

0 comments on commit e0a1c9c

Please sign in to comment.