README.md in ipconverter-0.2.0 vs README.md in ipconverter-0.3.0
- old
+ new
@@ -2,10 +2,12 @@
Library to deal with IP Address conversions/manipulation, such as converting
a string representation like "192.168.2.1" to its integer representation
(3232236033)
+Tested with Ruby >= 1.9.3.
+
## Installation
Add this line to your application's Gemfile:
gem 'ipconverter'
@@ -27,9 +29,18 @@
```
str_to_int raises an error if the address is not valid:
```
IpConverter.str_to_int "192.168.2"
=> raises ArgumentError
+```
+
+## Running the tests
+
+Clone the repo
+```
+bundle install
+bundle exec rake compile
+bundle exec rake test
```
## Contributing
1. Fork it ( https://github.com/joshuawscott/ipconverter/fork )