cozaepp 0.0.2 → 0.0.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.
- data/CHANGELOG +4 -0
- data/Gemfile +1 -0
- data/README.md +8 -9
- data/cozaepp.gemspec +0 -1
- data/lib/cozaepp/version.rb +1 -1
- metadata +2 -18
data/CHANGELOG
CHANGED
@@ -1,5 +1,9 @@
|
|
1
|
+
Version 0.0.3
|
2
|
+
*Removed dependency on epp gem from rubygems.org since it lacks SSL features (see README for installing SSL-capable gem)
|
3
|
+
|
1
4
|
Version 0.0.2
|
2
5
|
* Added SSL functionality (required by the production EPP service)
|
6
|
+
Depends on an SSL-patched version of the EPP gem which can be found at https://github.com/tgenov/epp
|
3
7
|
|
4
8
|
Version 0.0.1
|
5
9
|
* Initial version (built while testing accreditation against the test EPP environment)
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -6,19 +6,18 @@ EPP extensions as per https://www.registry.net.za/content.php?wiki=1&contentid=1
|
|
6
6
|
|
7
7
|
TODO: Some of the "Transfer" operations are yet to be implemented
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
Add this line to your application's Gemfile:
|
9
|
+
N.B version 0.0.2+ requires an SSL-patched version of the epp gem found at https://github.com/tgenov/epp (I'll get around to publishing the gem on rubygems.org eventuall) for now pick an installation option:
|
12
10
|
|
13
|
-
|
14
|
-
|
15
|
-
And then execute:
|
11
|
+
## Installation
|
16
12
|
|
17
|
-
|
13
|
+
Option 1:
|
18
14
|
|
19
|
-
|
15
|
+
gem install cozaepp
|
16
|
+
git clone https://github.com/tgenov/epp && cd epp && rake install
|
20
17
|
|
21
|
-
|
18
|
+
Option 2:
|
19
|
+
|
20
|
+
git clone https://github.com/tgenov/cozaepp && cd cozaepp && bundle install && rake install
|
22
21
|
|
23
22
|
## Usage
|
24
23
|
|
data/cozaepp.gemspec
CHANGED
data/lib/cozaepp/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cozaepp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,23 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
date: 2012-11-22 00:00:00.000000000 Z
|
13
|
-
dependencies:
|
14
|
-
- !ruby/object:Gem::Dependency
|
15
|
-
name: epp
|
16
|
-
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
|
-
requirements:
|
19
|
-
- - ! '>='
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
version: 1.4.0
|
22
|
-
type: :runtime
|
23
|
-
prerelease: false
|
24
|
-
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
|
-
requirements:
|
27
|
-
- - ! '>='
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: 1.4.0
|
13
|
+
dependencies: []
|
30
14
|
description: API to Uniforum's EPP service
|
31
15
|
email:
|
32
16
|
- todor@subnet.co.za
|