epp 1.0.9 → 1.0.10
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 +12 -28
- data/Rakefile +1 -1
- data/VERSION +1 -1
- metadata +2 -2
data/README.rdoc
CHANGED
@@ -7,10 +7,15 @@ The EPP gem provides basic functionality for connecting and making requests on E
|
|
7
7
|
|
8
8
|
== Installation
|
9
9
|
|
10
|
-
|
10
|
+
If you already have {Gemcutter}[http://gemcutter.org] installed, you can install this gem with:
|
11
11
|
|
12
|
-
$
|
13
|
-
|
12
|
+
$ gem install epp
|
13
|
+
|
14
|
+
Otherwise, a few more steps are involved:
|
15
|
+
|
16
|
+
$ gem install gemcutter
|
17
|
+
$ gem tumble
|
18
|
+
$ gem install epp
|
14
19
|
|
15
20
|
Then, you can require it in your Ruby app:
|
16
21
|
|
@@ -18,7 +23,7 @@ Then, you can require it in your Ruby app:
|
|
18
23
|
|
19
24
|
If you're using Rails, add the following line to your Rails <tt>config/environment.rb</tt>:
|
20
25
|
|
21
|
-
config.gem "
|
26
|
+
config.gem "epp", :source => "http://gemcutter.org"
|
22
27
|
|
23
28
|
Once you do that, you can install the gem by typing <tt>sudo rake gems:install</tt>.
|
24
29
|
|
@@ -59,30 +64,9 @@ http://github.com/ultraspeed/epp/issues
|
|
59
64
|
|
60
65
|
== Credit
|
61
66
|
|
62
|
-
Author
|
63
|
-
Inspired from
|
67
|
+
Author: Josh Delsman at Ultraspeed (http://twitter.com/voxxit)
|
68
|
+
Inspired from: http://labs.centralnic.com/Net_EPP_Client.php
|
64
69
|
|
65
70
|
== License
|
66
71
|
|
67
|
-
|
68
|
-
|
69
|
-
Copyright (c) 2009 Josh Delsman (Ultraspeed)
|
70
|
-
|
71
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
72
|
-
a copy of this software and associated documentation files (the
|
73
|
-
'Software'), to deal in the Software without restriction, including
|
74
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
75
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
76
|
-
permit persons to whom the Software is furnished to do so, subject to
|
77
|
-
the following conditions:
|
78
|
-
|
79
|
-
The above copyright notice and this permission notice shall be
|
80
|
-
included in all copies or substantial portions of the Software.
|
81
|
-
|
82
|
-
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
83
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
84
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
85
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
86
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
87
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
88
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
72
|
+
See the LICENSE file.
|
data/Rakefile
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.10
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: epp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josh Delsman
|
@@ -13,7 +13,7 @@ date: 2009-10-18 00:00:00 +01:00
|
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
|
-
name:
|
16
|
+
name: shoulda
|
17
17
|
type: :development
|
18
18
|
version_requirement:
|
19
19
|
version_requirements: !ruby/object:Gem::Requirement
|