Skip to content

Commit

Permalink
Merge branch 'master' into pr/443 (references GH-443)
Browse files Browse the repository at this point in the history
  • Loading branch information
weppos committed Nov 20, 2015
2 parents 844b991 + d45a785 commit 0464346
Show file tree
Hide file tree
Showing 35 changed files with 764 additions and 854 deletions.
1 change: 1 addition & 0 deletions .travis.yml
@@ -1,3 +1,4 @@
sudo: false
language: ruby
rvm:
- 1.9.3
Expand Down
12 changes: 10 additions & 2 deletions CHANGELOG.markdown
@@ -1,9 +1,17 @@
# Changelog


#### master

- SERVER: Add .ACO, .AAA, .GEA, .STCGROUP, .VIVA
- Removed option to /usr/bin/env as not supported on all platforms (GH-453). [Thanks @martin-schmidt]


#### Release 3.6.3

- SERVER: Add .ACO, .AAA, .GEA, .STCGROUP, .VIVA, .GROUP, .CEB, .FAGE, .MOM, .AMICA, .STC, .CIPRIANI, .KINDER, .XN--11B4C3D, .XN--3PXU8K, .XN--42C2D9A, .XN--9DBQ2A, .XN--C2BR7G, .XN--FHBEI, .XN--J1AEF, .XN--MK1BU44C, .XN--PSSY2U, .XN--T60B56A, .XN--TCKWE, .XN--EFVY88H, .CSC, .CAR, .PROTECTION, .STADA, .THEATRE, .LINDE, .SECURITY, .BMS, .LTD, .OBI, .BOM, .FINAL, .HYUNDAI, .KIA, .SEVEN, .STOCKHOLM, .CLUBMED, .DELL, .ARAMCO, .XN--MGBA3A3EJT, .MOI, .MTR, .VIRGIN, .YAMAXUN, .GUCCI, .JAGUAR, .LANDROVER, .RWE, .ZARA, .MEO, .PING, .SAPO, .SBS, .AARP, .APPLE, .BEATS, .XN--MGBTX2B, .XN--QXAM

- SERVER: Update .XN--SES554G, .INK

- SERVER: Disabled whois.edu.cn as it has not been working for the last 6 years (GH-59).

- NEW: Added whois.nic.tech parser

Expand Down
39 changes: 39 additions & 0 deletions CONTRIBUTING.md
@@ -0,0 +1,39 @@
# Contributing

We love pull requests from everyone. By participating in this project, you agree to abide by the contribution [code of conduct](http://contributor-covenant.org/version/1/2/0/).

## Workflow

Fork, then clone the repo:

$ git clone git@github.com:your-username/whois.git

Set up your machine:

$ bundle

Make sure the tests pass:

$ bundle exec rake

To propose a change/feature/patch, create your feature branch:

$ git checkout -b my-new-feature

Make your change. Add tests for your change. Make the tests pass:

$ bundle exec rake

Commit your changes:

$ git commit -am 'Add some feature'

Push to your fork and [submit a pull request](https://github.com/weppos/whois/compare/).


## Tests

To increase the chance that your pull request is accepted please **make sure to write tests**. Changes without corresponding tests will likely not be included as they will produce fragile code that can easily break whenever the registry changes the response format.

Some examples: [84dbdde320f31c20184bcfe5e544e8fd3cd32862](https://github.com/weppos/whois/commit/84dbdde320f31c20184bcfe5e544e8fd3cd32862), [3b6688b95e6fadcf720cc777ef4bbd2cd644e62b](https://github.com/weppos/whois/commit/3b6688b95e6fadcf720cc777ef4bbd2cd644e62b)

2 changes: 1 addition & 1 deletion README.markdown
Expand Up @@ -4,7 +4,7 @@

This library was extracted from [RoboWhois](https://www.robowhois.com/) and [RoboDomain](http://robodomain.com/). It has been performing queries in production since July 2009.

[![Build Status](https://secure.travis-ci.org/weppos/whois.png)](http://travis-ci.org/weppos/whois)
[![Build Status](https://travis-ci.org/weppos/whois.svg?branch=master)](https://travis-ci.org/weppos/whois)


## Donate a coffee
Expand Down
2 changes: 1 addition & 1 deletion bin/whoisrb
@@ -1,4 +1,4 @@
#!/usr/bin/env ruby -w
#!/usr/bin/env ruby

$:.unshift(File.expand_path("../../lib", __FILE__))

Expand Down
36 changes: 36 additions & 0 deletions data/CONTRIBUTING.md
@@ -0,0 +1,36 @@
# Contributing

We love pull requests from everyone. By participating in this project, you agree to abide by the contribution [code of conduct](http://contributor-covenant.org/version/1/2/0/).

## Workflow

Fork, then clone the repo:

$ git clone git@github.com:your-username/whois.git

Set up your machine:

$ bundle

Make sure the tests pass:

$ bundle exec rake

To propose a change/feature/patch, create your feature branch:

$ git checkout -b my-new-feature

Make your change. Add tests for your change. Make the tests pass:

$ bundle exec rake

Commit your changes:

$ git commit -am 'Add some feature'

Push to your fork and [submit a pull request](https://github.com/weppos/whois/compare/).


## Tests

To increase the chance that your pull request is accepted please **make sure to write tests**. Changes without corresponding tests will likely not be included as they will produce fragile code that can easily break whenever the registry changes the response format.

0 comments on commit 0464346

Please sign in to comment.