namecheap 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +34 -0
- data/lib/namecheap/version.rb +1 -1
- metadata +4 -5
- data/README.textile +0 -20
- data/config/namecheap.yml.orig +0 -14
data/README.md
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
Overview
|
2
|
+
========
|
3
|
+
|
4
|
+
About this project
|
5
|
+
-------------
|
6
|
+
|
7
|
+
Namecheap is a ruby wrapper for the [Namecheap API](http://developer.namecheap.com/docs/doku.php?id=api-reference:index)
|
8
|
+
The code was originally forked from https://github.com/hashrocket/namecheap
|
9
|
+
|
10
|
+
License
|
11
|
+
-------
|
12
|
+
|
13
|
+
Copyright (c) 2011 Tristan V. Gomez
|
14
|
+
|
15
|
+
This program is free software: you can redistribute it and/or modify
|
16
|
+
it under the terms of the GNU General Public License as published by
|
17
|
+
the Free Software Foundation, either version 3 of the License, or
|
18
|
+
(at your option) any later version.
|
19
|
+
|
20
|
+
This program is distributed in the hope that it will be useful,
|
21
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
22
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
23
|
+
GNU General Public License for more details.
|
24
|
+
|
25
|
+
You should have received a copy of the GNU General Public License
|
26
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
27
|
+
|
28
|
+
|
29
|
+
Credits
|
30
|
+
-------
|
31
|
+
|
32
|
+
Tristan V. Gomez: tristan dot gomez at gmail dot com
|
33
|
+
[Hashrocket](http://www.hashrocket.com/) from where the original code was forked from
|
34
|
+
[Mongoid](http://www.mongoid.org) from where the configuration code was modified from
|
data/lib/namecheap/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: namecheap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 1
|
10
|
+
version: 0.1.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- parasquid
|
@@ -58,9 +58,8 @@ files:
|
|
58
58
|
- .gitignore
|
59
59
|
- .rvmrc
|
60
60
|
- Gemfile
|
61
|
-
- README.
|
61
|
+
- README.md
|
62
62
|
- Rakefile
|
63
|
-
- config/namecheap.yml.orig
|
64
63
|
- lib/monkey_patch.rb
|
65
64
|
- lib/namecheap.rb
|
66
65
|
- lib/namecheap/api.rb
|
data/README.textile
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
h1. Ruby Wrapper for Namecheap.com API
|
2
|
-
|
3
|
-
Allow the ability to check domain availability through namecheap.com API.
|
4
|
-
|
5
|
-
h2. Usage
|
6
|
-
|
7
|
-
<pre>
|
8
|
-
<code>
|
9
|
-
require 'lib/namecheap'
|
10
|
-
|
11
|
-
namecheap = Namecheap.new
|
12
|
-
namecheap.is_domain_availble? 'hashrocket.com' # => false
|
13
|
-
</code>
|
14
|
-
</pre>
|
15
|
-
|
16
|
-
h2. Contributors
|
17
|
-
|
18
|
-
* "Hashrocket":http://www.hashrocket.com
|
19
|
-
* "Corey Grusden":http://coreygrusden.com
|
20
|
-
* "Big Tiger":http://bigtiger.github.com
|
data/config/namecheap.yml.orig
DELETED