Skip to content

Commit 38c1449

Browse files
committed
Reformant copyright text for better consistency.
1 parent 29552d7 commit 38c1449

32 files changed

+184
-43
lines changed

README.md

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,14 @@
1-
RubyDNS
2-
=======
3-
4-
* Released under the MIT license.
5-
* Copyright (C) 2009, 2011 [Samuel G. D. Williams](http://www.codeotaku.com/samuel-williams/).
6-
* [![Build Status](https://secure.travis-ci.org/ioquatix/rubydns.png)](http://travis-ci.org/ioquatix/rubydns)
1+
# RubyDNS
72

83
RubyDNS is a simple programmatic DSL (domain specific language) for configuring and running a DNS server. RubyDNS provides a daemon that runs a DNS server which can process DNS requests depending on specific policy. Rule selection is based on pattern matching, and results can be hard-coded, computed, fetched from a remote DNS server, fetched from a local cache, etc.
94

105
RubyDNS provides a full daemon server using RExec. You can either use the built in daemon, customize it to your needs, or specify a full daemon implementation.
116

127
RubyDNS is not designed to be high-performance and uses a thread-per-request model. This is designed to make it as easy as possible to achieve concurrent performance. This is also due to the fact that many other APIs work best this way (unfortunately).
138

14-
For examples please see the main [project page][1].
15-
16-
[1]: http://www.oriontransfer.co.nz/gems/rubydns
9+
[![Build Status](https://secure.travis-ci.org/ioquatix/rubydns.png)](http://travis-ci.org/ioquatix/rubydns)
1710

18-
Basic Example
19-
-------------
11+
## Basic Example
2012

2113
This is copied from `test/examples/test-dns-2.rb`. It has been simplified slightly.
2214

@@ -48,8 +40,11 @@ After starting this server you can test it using dig:
4840
dig @localhost dev.mydomain.org
4941
dig @localhost google.com
5042

51-
Compatibility
52-
-------------
43+
For examples and documentation please see the main [project page][1].
44+
45+
[1]: http://www.oriontransfer.co.nz/gems/rubydns
46+
47+
## Compatibility
5348

5449
### Migrating from RubyDNS 0.3.x to 0.4.x ###
5550

@@ -119,16 +114,16 @@ Once you call this, the transaction won't complete until you call either `transa
119114

120115
You can see a complete example in `test/test_slow_server.rb`.
121116

122-
Todo
123-
----
117+
## Future
124118

125119
* Support for more features of DNS such as zone transfer.
126120
* Support reverse records more easily.
127121

128-
License
129-
-------
122+
## License
123+
124+
Released under the MIT license.
130125

131-
Copyright (c) 2010, 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
126+
Copyright, 2009, 2012, by [Samuel G. D. Williams](http://www.codeotaku.com/samuel-williams).
132127

133128
Permission is hereby granted, free of charge, to any person obtaining a copy
134129
of this software and associated documentation files (the "Software"), to deal

bin/rd-dns-check

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env ruby
2-
# Copyright (c) 2009, 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
2+
# Copyright, 2009, 2012, by Samuel G. D. Williams. <http://www.codeotaku.com>
33
#
44
# Permission is hereby granted, free of charge, to any person obtaining a copy
55
# of this software and associated documentation files (the "Software"), to deal

bin/rd-resolve-test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env ruby
2-
# Copyright (c) 2009, 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
2+
# Copyright, 2009, 2012, by Samuel G. D. Williams. <http://www.codeotaku.com>
33
#
44
# Permission is hereby granted, free of charge, to any person obtaining a copy
55
# of this software and associated documentation files (the "Software"), to deal

lib/rubydns.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2009, 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
1+
# Copyright, 2009, 2012, by Samuel G. D. Williams. <http://www.codeotaku.com>
22
#
33
# Permission is hereby granted, free of charge, to any person obtaining a copy
44
# of this software and associated documentation files (the "Software"), to deal

lib/rubydns/chunked.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2009, 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
1+
# Copyright, 2009, 2012, by Samuel G. D. Williams. <http://www.codeotaku.com>
22
#
33
# Permission is hereby granted, free of charge, to any person obtaining a copy
44
# of this software and associated documentation files (the "Software"), to deal

lib/rubydns/extensions/hexdump.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2009, 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
1+
# Copyright, 2012, by Samuel G. D. Williams. <http://www.codeotaku.com>
22
#
33
# Permission is hereby granted, free of charge, to any person obtaining a copy
44
# of this software and associated documentation files (the "Software"), to deal

lib/rubydns/extensions/logger.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2009, 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
1+
# Copyright, 2009, 2012, by Samuel G. D. Williams. <http://www.codeotaku.com>
22
#
33
# Permission is hereby granted, free of charge, to any person obtaining a copy
44
# of this software and associated documentation files (the "Software"), to deal

lib/rubydns/extensions/resolv.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2009, 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
1+
# Copyright, 2009, 2012, by Samuel G. D. Williams. <http://www.codeotaku.com>
22
#
33
# Permission is hereby granted, free of charge, to any person obtaining a copy
44
# of this software and associated documentation files (the "Software"), to deal

lib/rubydns/extensions/string-1.8.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2009, 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
1+
# Copyright, 2009, 2012, by Samuel G. D. Williams. <http://www.codeotaku.com>
22
#
33
# Permission is hereby granted, free of charge, to any person obtaining a copy
44
# of this software and associated documentation files (the "Software"), to deal

lib/rubydns/extensions/string-1.9.2.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2009, 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
1+
# Copyright, 2009, 2012, by Samuel G. D. Williams. <http://www.codeotaku.com>
22
#
33
# Permission is hereby granted, free of charge, to any person obtaining a copy
44
# of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)